1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [
9 { "url": "https://www.porntrex.com/video/3241735/omg-stepdad-been-wanting-this-for-so-long" },
10 { "url": "https://www.porntrex.com/video/3241697/hey-honey-who-you-fucking-can-i-join" },
11 { "url": "https://www.porntrex.com/video/3241488/alsangels-nia-nacci-photoshoot" },
12 { "url": "https://www.porntrex.com/video/3241742/i-convinced-my-ebony-gf-for-anal-fuck-outdoors-even-after-she-called-it-too-risky" },
13 { "url": "https://www.porntrex.com/video/3241539/mila-fox-quarantine-sex-with-two-fans" },
14 ] }
15
16
17run = client.actor("maximedupre/porntrex-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