1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [
9 { "url": "https://luxuretv.com/videos/contribution-amateur-d---une-jeune-arabe-qui-se-fait-sodomiser-par-son-cousin-521.html" },
10 { "url": "https://luxuretv.com/videos/porno-amateur-avec-une-etudiante-qui-se-tape-son-voisin-522.html" },
11 { "url": "https://luxuretv.com/videos/une-jeune-russe-aux-gros-seins-baisee-en-missionnaire-523.html" },
12 { "url": "https://luxuretv.com/videos/jeune-amatrice-se-fait-prendre-en-levrette-par-le-pote-de-son-grand-frere-524.html" },
13 ] }
14
15
16run = client.actor("maximedupre/luxuretv-downloader").call(run_input=run_input)
17
18
19print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
20for item in client.dataset(run.default_dataset_id).iterate_items():
21 print(item)
22
23