1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "fullName": "Olamide Lawal",
10 "targetRoles": [
11 "Data Scientist",
12 "Machine Learning Engineer",
13 ],
14 "preferredLocations": [
15 "Remote",
16 "Nigeria",
17 "Worldwide",
18 ],
19 "cvText": "Machine learning and software engineer experienced in Python, PyTorch, predictive modeling, data pipelines, and embedded IoT architectures.",
20 "minScore": 50,
21 "maxPacks": 1,
22 "resetMemory": True,
23}
24
25
26run = client.actor("em07_adoz/workdey-career-agent").call(run_input=run_input)
27
28
29print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
30for item in client.dataset(run.default_dataset_id).iterate_items():
31 print(item)
32
33