1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "urls": [
9 "https://streamable.com/o1ioj2",
10 "https://streamable.com/o1im26",
11 "https://streamable.com/o1im2s",
12 "https://streamable.com/o1im6a",
13 "https://streamable.com/o1imao",
14 "https://streamable.com/o1imc2",
15 "https://streamable.com/o1img1",
16 "https://streamable.com/o1imij",
17 "https://streamable.com/o1ims4",
18 "https://streamable.com/o1imtk",
19 "https://streamable.com/o1imxi",
20 "https://streamable.com/o1in05",
21 "https://streamable.com/o1in5i",
22 "https://streamable.com/o1inmr",
23 "https://streamable.com/o1inx4",
24 "https://streamable.com/o1iojc",
25 "https://streamable.com/o1iori",
26 "https://streamable.com/o1iov0",
27 "https://streamable.com/o1iox4",
28 "https://streamable.com/o1ioy4",
29 "https://streamable.com/o1ip5o",
30 "https://streamable.com/o1ipjq",
31 "https://streamable.com/o1iplv",
32 "https://streamable.com/o1ipn8",
33 "https://streamable.com/o1ipqb",
34 "https://streamable.com/o1ipzl",
35 "https://streamable.com/o1iq4h",
36 "https://streamable.com/o1iqmu",
37 "https://streamable.com/o1iqz7",
38 "https://streamable.com/o1ir5g",
39 ] }
40
41
42run = client.actor("maximedupre/streamable-video-downloader").call(run_input=run_input)
43
44
45print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
46for item in client.dataset(run["defaultDatasetId"]).iterate_items():
47 print(item)
48
49