first commit
This commit is contained in:
26
netflix/get.py
Normal file
26
netflix/get.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from flixcrack import NetflixClient
|
||||
import asyncio
|
||||
|
||||
client = NetflixClient(
|
||||
email="", # Insert your email here
|
||||
password="", # Insert your password here
|
||||
device="", # Insert your CDM folder name here
|
||||
quality=1080,
|
||||
audio_language=["English"],
|
||||
language="it-IT", # Metadata language
|
||||
video_profile="high",
|
||||
quiet=False
|
||||
)
|
||||
|
||||
async def main():
|
||||
items = client.get_viewables(81470938, episode=1)
|
||||
for item in items:
|
||||
await client.download(item["viewable_id"],
|
||||
client._file_name(
|
||||
item["title"],
|
||||
item["season"],
|
||||
item["episode"],
|
||||
"dvx"
|
||||
)
|
||||
)
|
||||
asyncio.run(main())
|
||||
Reference in New Issue
Block a user