1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "startUrls": [
9 {
10 "url": "https://docs.ted.europa.eu/api/latest/search.html",
11 "sourceId": "TED-SEARCH",
12 "userData": { "sourceId": "TED-SEARCH" },
13 },
14 {
15 "url": "https://single-market-economy.ec.europa.eu/single-market/public-procurement/digital-procurement/common-procurement-vocabulary_en",
16 "sourceId": "TED-CPV",
17 "userData": { "sourceId": "TED-CPV" },
18 },
19 {
20 "url": "https://oeffentlichevergabe.de/ui/en/Open-Data-Richtlinie",
21 "sourceId": "OEV-OPEN",
22 "userData": { "sourceId": "OEV-OPEN" },
23 },
24 ] }
25
26
27run = client.actor("zentrafoundry/dach-cctv-security-systems-tender-feed").call(run_input=run_input)
28
29
30print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
31for item in client.dataset(run["defaultDatasetId"]).iterate_items():
32 print(item)
33
34