1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "urls": [
9 "https://blog.google/products-and-platforms/products/photos/new-touch-up-tools-google-photos/",
10 "https://blog.google/products-and-platforms/products/search/summer-travel-tips-google-search-ai/",
11 "https://blog.google/products-and-platforms/products/travel/2026-travel-trends/",
12 ] }
13
14
15run = client.actor("taroyamada/article-content-extractor").call(run_input=run_input)
16
17
18print("πΎ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20 print(item)
21
22