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())