1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "search_term": "software engineer",
10 "search_terms": [],
11 "location": "Remote",
12 "locations": [],
13 "posted_within_hours": 720,
14 "results_wanted_per_board": 5,
15 "max_total_results": 10,
16 "job_boards": ["linkedin"],
17 "enable_ai_scoring": False,
18 "resume_or_key_skills": "",
19 "anthropic_api_key": "",
20 "minimum_ai_score": 0,
21 "indeed_country": "USA",
22}
23
24
25run = client.actor("eternallabs/jobhunt-ai").call(run_input=run_input)
26
27
28print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
29for item in client.dataset(run["defaultDatasetId"]).iterate_items():
30 print(item)
31
32