1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "schemaVersion": "nomad-agent-job-search-input-v1",
10 "maxItems": 5,
11 "postedWithin": "any",
12 "workArrangements": [],
13 "includeRaw": True,
14 "dedupe": {
15 "enabled": False,
16 "key": "",
17 },
18 "dynamitejobs": {
19 "schemaVersion": "nomad-dynamitejobs-search-v1",
20 "startUrls": ["https://dynamitejobs.com/remote-jobs?text=software"],
21 },
22}
23
24
25run = client.actor("nomad-agent/normalized-dynamitejobs-jobs-scraper").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