1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "feeds": [
9 {
10 "id": "21-cfr-11",
11 "name": "21 CFR Part 11",
12 "cfrTitle": 21,
13 "part": "11",
14 "keywords": "electronic records,electronic signatures",
15 },
16 {
17 "id": "40-cfr-60",
18 "name": "40 CFR Part 60",
19 "cfrTitle": 40,
20 "part": "60",
21 "keywords": "emissions,standards",
22 },
23 {
24 "id": "29-cfr-1910-1200",
25 "name": "29 CFR 1910.1200",
26 "cfrTitle": 29,
27 "part": "1910",
28 "section": "1200",
29 "keywords": "hazard communication",
30 },
31 ] }
32
33
34run = client.actor("taroyamada/ecfr-cfr-section-change-watch-scraper").call(run_input=run_input)
35
36
37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
38for item in client.dataset(run["defaultDatasetId"]).iterate_items():
39 print(item)
40
41