1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "includeKeyword": "software engineer",
10 "locationName": "New York, NY",
11 "countryName": "all",
12 "companyName": "",
13 "jobType": "ANY",
14 "datePosted": "month",
15 "pagesToFetch": 1,
16 "proxyConfiguration": { "useApifyProxy": False },
17}
18
19
20run = client.actor("parsebird/handshake-jobs-scraper").call(run_input=run_input)
21
22
23print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
24for item in client.dataset(run.default_dataset_id).iterate_items():
25 print(item)
26
27