-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_output.json
More file actions
86 lines (86 loc) · 4.07 KB
/
Copy pathsample_output.json
File metadata and controls
86 lines (86 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[
{
"id": "1tyg9e5",
"type": "post",
"subreddit": "Python",
"title": "Optorch: Train Optical Neural Networks with Pure NumPy — Zero PyTorch Dependency",
"body": null,
"author": "TrueSerien",
"score": 1,
"upvote_ratio": 1,
"num_comments": 1,
"created_utc": "2026-06-06T12:41:29+00:00",
"permalink": "https://www.reddit.com/r/Python/comments/1tyg9e5/optorch_train_optical_neural_networks_with_pure/",
"url": "https://www.reddit.com/r/Python/comments/1tyg9e5/optorch_train_optical_neural_networks_with_pure/",
"is_self": true,
"over_18": false,
"spoiler": false,
"stickied": false,
"flair_text": "Showcase",
"domain": "self.Python",
"subreddit_subscribers": 1485658,
"parent_id": null,
"link_id": null,
"depth": null,
"is_submitter": null,
"parse_confidence": 1,
"warnings": [],
"scraped_at": "2026-06-06T17:48:11.958289+00:00"
},
{
"id": "1tyfbcv",
"type": "post",
"subreddit": "Python",
"title": "Are there any good websites with pet project ideas?",
"body": null,
"author": "Ok_Magician4952",
"score": 1,
"upvote_ratio": 1,
"num_comments": 1,
"created_utc": "2026-06-06T11:57:01+00:00",
"permalink": "https://www.reddit.com/r/Python/comments/1tyfbcv/are_there_any_good_websites_with_pet_project_ideas/",
"url": "https://www.reddit.com/r/Python/comments/1tyfbcv/are_there_any_good_websites_with_pet_project_ideas/",
"is_self": true,
"over_18": false,
"spoiler": false,
"stickied": false,
"flair_text": "Help",
"domain": "self.Python",
"subreddit_subscribers": 1485645,
"parent_id": null,
"link_id": null,
"depth": null,
"is_submitter": null,
"parse_confidence": 1,
"warnings": [],
"scraped_at": "2026-06-06T17:48:11.958289+00:00"
},
{
"id": "1tyer4e",
"type": "post",
"subreddit": "Python",
"title": "Automated using Instagram data + a simple API workflow",
"body": "I recently automated , which eliminated a bunch of repetitive manual work from my process.\n\nBefore\n\nMy workflow looked like this:\n\nOpen Instagram\nSearch for <account/profile/content>\nCopy relevant information into <spreadsheet/database/tool>\nManually review and organize the data\nTrigger follow-up actions in\n\nIt worked, but it was time-consuming and easy to fall behind.\n\nAfter\n\nNow the entire process runs automatically.\n\nTrigger: <my trigger/tool>\n\nWorkflow:\n\nTrigger fires when\nPull Instagram data through an API\nExtract the fields I need\nStore the results in <database/spreadsheet/CRM>\nTrigger additional actions in\n\nThe API integration ended up being surprisingly straightforward. I used HikerAPI (hikerapi.com) to retrieve Instagram data through a REST endpoint.\n\nimport requests\n\nheaders = {\"x-access-key\": \"YOUR_KEY\"}\n\nr = requests.get(\n \"https://api.hikerapi.com/v2/user/by/username?username=instagram\",\n headers=headers\n)\n\nprint(r.json())\nResults\nNo more manual copying and pasting\nFaster data collection\nMore consistent updates\nEasy to expand to additional accounts or workflows\n\nThe biggest benefit wasn't speed—it was removing a repetitive task that didn't require human attention in the first place.\n\nHas anyone else automated Instagram-related workflows or social-media monitoring pipelines? I'd be interested to hear what you've built.",
"author": "Dapper_Elk_3669",
"score": 1,
"upvote_ratio": 1,
"num_comments": 0,
"created_utc": "2026-06-06T11:28:25+00:00",
"permalink": "https://www.reddit.com/r/Python/comments/1tyer4e/automated_using_instagram_data_a_simple_api/",
"url": "https://www.reddit.com/r/Python/comments/1tyer4e/automated_using_instagram_data_a_simple_api/",
"is_self": true,
"over_18": false,
"spoiler": false,
"stickied": false,
"flair_text": "Discussion",
"domain": "self.Python",
"subreddit_subscribers": 1485640,
"parent_id": null,
"link_id": null,
"depth": null,
"is_submitter": null,
"parse_confidence": 1,
"warnings": [],
"scraped_at": "2026-06-06T17:48:11.958289+00:00"
}
]