1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "watchlist": [
10 {
11 "name": "Aculife Healthcare Private Limited",
12 "country": "India",
13 },
14 {
15 "name": "Avlab S.r.l.",
16 "country": "Italy",
17 },
18 {
19 "name": "Laboratorios Eurisko S.L.",
20 "country": "Spain",
21 },
22 ],
23 "mode": "full",
24 "euWindowDays": 120,
25 "includeEuDetails": True,
26 "maxDrilldowns": 6,
27 "fdaWindowDays": 120,
28 "fdaMaxPages": 1,
29 "minMatchScore": 0.8,
30 "includeUnmatchedEvents": True,
31 "ddapiAuthorizationUser": "",
32 "ddapiAuthorizationKey": "",
33 "ddapiMaxRows": 500,
34 "maxItems": 100,
35 "minRequestIntervalMs": 800,
36}
37
38
39run = client.actor("atlas-data/gmp-enforcement-watch").call(run_input=run_input)
40
41
42print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
43for item in client.dataset(run.default_dataset_id).iterate_items():
44 print(item)
45
46