1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "targets": [
10 "https://www.loom.com/share/b82a5cea29c84bf596d2da3fc453befe",
11 "https://www.loom.com/share/4c0c4d7396a543b8a55d67bcf5c0f41c",
12 "https://www.loom.com/share/50fca6637e8e4c5e9ea2d5186baf3d21",
13 "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5",
14 "https://www.loom.com/share/56fde5f991b8490d9033dd226ebf3043",
15 "https://www.loom.com/share/4518a20bc09441779574bdd25743afe9",
16 "https://www.loom.com/share/1a7d22ab727d4154a6a95fdce4333457",
17 "https://www.loom.com/share/fff20c3413c24186952c4fa120347569",
18 "https://www.loom.com/share/74e18ac00fc04821802a7322409137a9",
19 "https://www.loom.com/share/c5ea41b490c74d899df3d5970f21e943",
20 ],
21 "maxItems": 10,
22}
23
24
25run = client.actor("maximedupre/loom-video-downloader").call(run_input=run_input)
26
27
28print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
29for item in client.dataset(run["defaultDatasetId"]).iterate_items():
30 print(item)
31
32