1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrls": [
10 {
11 "url": "https://clutch.co/profile/buzzvel",
12 "method": "GET",
13 },
14 {
15 "url": "https://clutch.co/profile/dengun",
16 "method": "GET",
17 },
18 {
19 "url": "https://clutch.co/profile/pecode",
20 "method": "GET",
21 },
22 {
23 "url": "https://clutch.co/profile/2v-modules",
24 "method": "GET",
25 },
26 {
27 "url": "https://clutch.co/profile/equal",
28 "method": "GET",
29 },
30 {
31 "url": "https://clutch.co/profile/share-it-0",
32 "method": "GET",
33 },
34 ],
35 "proxy": { "useApifyProxy": True },
36}
37
38
39run = client.actor("sanjeta/advanced-clutch-co-scrapper").call(run_input=run_input)
40
41
42print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
43for item in client.dataset(run["defaultDatasetId"]).iterate_items():
44 print(item)
45
46