1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "mode": "items",
10 "items": [{
11 "name": "LaunchDeck",
12 "productHuntUrl": "https://www.producthunt.com/posts/launchdeck",
13 "websiteUrl": "https://launchdeck.io",
14 "tagline": "AI follow-up engine for lean sales teams",
15 "topics": [
16 "Sales",
17 "Artificial Intelligence",
18 "CRM",
19 ],
20 "upvotes": 420,
21 "commentsCount": 37,
22 "makerNames": [
23 "Ada Lee",
24 "Sam Ho",
25 ],
26 "publicEmail": "hello@launchdeck.io",
27 "emailSourceUrl": "https://launchdeck.io/contact",
28 }],
29}
30
31
32run = client.actor("rotvuvo/product-hunt-crm-lead-scorer").call(run_input=run_input)
33
34
35print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
36for item in client.dataset(run["defaultDatasetId"]).iterate_items():
37 print(item)
38
39