1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "urls": [
9 { "url": "https://www.tumblr.com/yesornopolls/827411833045532672/look-at-the-last-text-message-you-sent-if-you?source=share" },
10 { "url": "https://www.tumblr.com/hotvampireadjacent/827368576765820928?source=share" },
11 { "url": "https://www.tumblr.com/robdogdraws/827339744287522816/my-dogs-are-hongrayyy?source=share" },
12 { "url": "https://www.tumblr.com/iwritefanficx/827377541684822016/my-spidey-brendon-park?source=share" },
13 { "url": "https://www.tumblr.com/robs-your-robins/827494904578097152/dick-thanks-for-the-hoodie-jay-jason-its?source=share" },
14 { "url": "https://www.tumblr.com/linusx/827372768006914048/hehe-anyone-into-wkm-and-endacopia-markiplier?source=share" },
15 { "url": "https://www.tumblr.com/artyphex/827339896099405824/hows-the-writing-going?source=share" },
16 { "url": "https://www.tumblr.com/tiktoksthataregood-ish/827375802491584512?source=share" },
17 { "url": "https://www.tumblr.com/audiojunkyard/809712185709346816/mitski-in-a-lake?source=share" },
18 ] }
19
20
21run = client.actor("codenest/tumblr-scraper").call(run_input=run_input)
22
23
24print(f"๐พ Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
25for item in client.dataset(run.default_dataset_id).iterate_items():
26 print(item)
27
28