1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "leads": [
9 {
10 "first_name": "Arnaud",
11 "last_name": "Renoux",
12 "company_domain": "scalelist.com",
13 "company_name": "Scalelist",
14 },
15 {
16 "first_name": "Youssef",
17 "last_name": "El Kaddioui",
18 "company_domain": "scalelist.com",
19 "company_name": "Scalelist",
20 },
21 ] }
22
23
24run = client.actor("scalelist/email-finder").call(run_input=run_input)
25
26
27print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
28for item in client.dataset(run["defaultDatasetId"]).iterate_items():
29 print(item)
30
31