1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "repositories": [
9 {
10 "id": "apify-crawlee",
11 "name": "Apify Crawlee",
12 "repo": "apify/crawlee",
13 "criticality": "high",
14 "owner": "Platform",
15 "tags": [
16 "crawler",
17 "sdk",
18 ],
19 "modes": [
20 "releases",
21 "tags",
22 ],
23 },
24 {
25 "id": "axios",
26 "name": "Axios",
27 "repo": "axios/axios",
28 "criticality": "standard",
29 "owner": "Developer Experience",
30 "tags": [
31 "dependency",
32 "http-client",
33 ],
34 "modes": [
35 "releases",
36 "tags",
37 "changelog",
38 ],
39 "changelogUrl": "https://raw.githubusercontent.com/axios/axios/v1.x/CHANGELOG.md",
40 },
41 ] }
42
43
44run = client.actor("taroyamada/github-release-monitor").call(run_input=run_input)
45
46
47print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
48for item in client.dataset(run["defaultDatasetId"]).iterate_items():
49 print(item)
50
51