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