1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "jobDescription": """Senior Growth Rockstar
9
10We are looking for a young and energetic digital native to join our fast-paced team in London. The ideal candidate is a native English speaker who can work long hours under pressure, travel at short notice, and thrive in a work-hard-play-hard culture. Must have 10+ years of SaaS experience and be able to lift office equipment when needed. Competitive salary. Remote friendly.""" }
11
12
13run = client.actor("trovevault/jd-bias-compliance-risk-auditor").call(run_input=run_input)
14
15
16print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
17for item in client.dataset(run["defaultDatasetId"]).iterate_items():
18 print(item)
19
20