1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [
9 { "url": "https://followmyleadnyc.com/" },
10 { "url": "https://thegymithaca.com/" },
11 { "url": "https://14streety.org/" },
12 { "url": "https://web.uri.edu/" },
13 { "url": "https://animalbehaviorcollege.com/" },
14 { "url": "https://maikwiedenbach.com/" },
15 { "url": "https://positiveexperience.org/" },
16 { "url": "https://disguise.one/" },
17 { "url": "https://northshorehypnosis.com/" },
18 { "url": "https://andihq.com/" },
19 { "url": "https://unchase.com/" },
20 { "url": "https://yahoo.uservoice.com/" },
21 { "url": "https://nurturingfathers.com/" },
22 { "url": "https://kateperrydogtraining.com/" },
23 { "url": "https://acpe.edu/" },
24 { "url": "https://pcit.org/" },
25 { "url": "https://kinectededu.com/" },
26 { "url": "https://ccpdt.org/" },
27 ] }
28
29
30run = client.actor("moving_beacon-owner1/my-actor-12").call(run_input=run_input)
31
32
33print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
34for item in client.dataset(run["defaultDatasetId"]).iterate_items():
35 print(item)
36
37