1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "feeds": [
10 "https://www.qbitai.com/feed",
11 "https://www.ithome.com/rss/",
12 ],
13 "keywords": [],
14 "topics": [],
15 "sinceHours": 24,
16 "maxItems": 10,
17 "onlyNew": False,
18 "stateStoreName": "china-tech-news",
19 "summarize": False,
20 "summaryLanguage": "en",
21 "baseUrl": "https://openrouter.ai/api/v1",
22 "model": "deepseek/deepseek-v4-flash",
23}
24
25
26run = client.actor("zinin/china-tech-ai-news-monitor").call(run_input=run_input)
27
28
29print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
30for item in client.dataset(run.default_dataset_id).iterate_items():
31 print(item)
32
33