1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [
9 { "url": "https://compleoplus.com/impressum/" },
10 { "url": "https://www.handelsregister.de/rp_web/erweitertesuche/welcome.xhtml" },
11 { "url": "https://www.unternehmensregister.de/de/suche/rechnungslegung" },
12 ] }
13
14
15run = client.actor("mujahid-alkausari/automation-scraper").call(run_input=run_input)
16
17
18print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20 print(item)
21
22