1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "target_job_titles": [
10 "Senior Software Engineer",
11 "Staff Engineer",
12 ],
13 "locations": [
14 "San Francisco",
15 "Remote",
16 ],
17 "preferred_skills": [
18 "Python",
19 "Go",
20 "AWS",
21 ],
22 "undesirable_skills": [],
23 "preferred_industries": [
24 "Technology",
25 "Fintech",
26 ],
27 "undesirable_industries": [],
28 "experience_levels": [
29 "Senior",
30 "Lead",
31 ],
32 "additional_requirements": "Prefer companies with <500 employees. Looking for startup or scale-up environment with good work-life balance. Not interested in consulting, agencies, or defense contractors.",
33}
34
35
36run = client.actor("jobo.world/ai-deep-job-search").call(run_input=run_input)
37
38
39print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
40for item in client.dataset(run["defaultDatasetId"]).iterate_items():
41 print(item)
42
43