1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "companies": [
10 "stripe",
11 "airbnb",
12 "reddit",
13 "robinhood",
14 "discord",
15 "figma",
16 "anthropic",
17 "openai",
18 "scale",
19 "ramp",
20 ],
21 "keywords": [
22 "engineer",
23 "developer",
24 ],
25}
26
27
28run = client.actor("satish5813/greenhouse-jobs-scraper").call(run_input=run_input)
29
30
31print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
32for item in client.dataset(run["defaultDatasetId"]).iterate_items():
33 print(item)
34
35