first commit

This commit is contained in:
2025-06-03 23:03:08 +02:00
commit d40894b155
49 changed files with 49341 additions and 0 deletions

26
netflix/get.py Normal file
View 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())