1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "Linkedin_Search_Keyword": "https://www.linkedin.com/search/results/people/?keywords=software%20engineer&origin=SWITCH_SEARCH_VERTICAL&searchId=1adf0dda-a510-41e0-bce6-7e486dde700d&sid=Xeg",
10 "Run_Last": False,
11 "Delay": "2",
12}
13
14
15run = client.actor("clothefobia/linkedin-people-search").call(run_input=run_input)
16
17
18print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20 print(item)
21
22