1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "idealKeywords": [
10 "remote",
11 "engineer",
12 "developer",
13 "data",
14 "ai",
15 ],
16 "excludeKeywords": [
17 "commission only",
18 "unpaid",
19 "recruiter",
20 ],
21 "locations": ["remote"],
22}
23
24
25run = client.actor("knotted_tussock/job-posting-deduper-scorer").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