1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "searchKeywords": "python developer",
10 "platforms": [
11 "arbeitnow",
12 "jobicy",
13 "himalayas",
14 "remoteok",
15 "remotive",
16 "workingnomads",
17 ],
18 "maxTotalJobs": 10,
19 "excludeKeywords": [],
20 "companyKeywords": [],
21 "locationKeywords": [],
22}
23
24
25run = client.actor("benthepythondev/remote-jobs-aggregator").call(run_input=run_input)
26
27
28print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
29for item in client.dataset(run.default_dataset_id).iterate_items():
30 print(item)
31
32