1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "inputMode": "REMOTE",
10 "outputMode": "jobs",
11 "urls": [
12 { "url": "https://wellfound.com/remote" },
13 { "url": "https://wellfound.com/location/new-york" },
14 ],
15 "locations": [
16 "New York",
17 "San Francisco",
18 "London",
19 ],
20 "pageLimit": 1,
21 "maxItems": 80,
22 "onlyRemoteJobs": False,
23 "maxRetries": 3,
24 "proxyConfiguration": { "useApifyProxy": False },
25}
26
27
28run = client.actor("trakk/wellfound-jobs-scraper").call(run_input=run_input)
29
30
31print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
32for item in client.dataset(run.default_dataset_id).iterate_items():
33 print(item)
34
35