pytube / tests /generate_fixture.py
hbmartin's picture
black formatting for tests
82321d6
raw
history blame
584 Bytes
#!/usr/bin/env python3
# flake8: noqa: E402
from os import path
import sys
import json
currentdir = path.dirname(path.realpath(__file__))
parentdir = path.dirname(currentdir)
sys.path.append(parentdir)
from pytube import YouTube
yt = YouTube(sys.argv[1], defer_prefetch_init=True)
yt.prefetch()
output = {
"url": sys.argv[1],
"watch_html": yt.watch_html,
"video_info": yt.vid_info,
"js": yt.js,
}
outpath = path.join(currentdir, "mocks", "yt-video-" + yt.video_id + ".json")
print("Writing to: " + outpath)
with open(outpath, "w") as f:
json.dump(output, f)