1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "queries": [
9 {
10 "website": "https://apify.com/",
11 "crawling_mode": "standard",
12 "language": "en",
13 "http_authentication_user": "",
14 "http_authentication_password": "",
15 },
16 {
17 "website": "https://www.scraperapi.com/",
18 "crawling_mode": "javascript",
19 "language": "en",
20 "http_authentication_user": "",
21 "http_authentication_password": "",
22 },
23 ] }
24
25
26run = client.actor("maged120/seobility-seo-checker").call(run_input=run_input)
27
28
29print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
30for item in client.dataset(run["defaultDatasetId"]).iterate_items():
31 print(item)
32
33