File size: 24,055 Bytes
06508e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
{
    "post": {
        "STR_FIELD": "id",
        "add_fetch_param": "<bound method Submission.add_fetch_param of Submission(id='1ghhzh3')>",
        "all_awardings": [],
        "allow_live_comments": false,
        "approved_at_utc": null,
        "approved_by": null,
        "archived": false,
        "author": "endlesswaltz0225",
        "author_flair_background_color": null,
        "author_flair_css_class": null,
        "author_flair_richtext": [],
        "author_flair_template_id": null,
        "author_flair_text": null,
        "author_flair_text_color": null,
        "author_flair_type": "text",
        "author_fullname": "t2_3kl8pvcr",
        "author_is_blocked": false,
        "author_patreon_flair": false,
        "author_premium": false,
        "award": "<bound method GildableMixin.award of Submission(id='1ghhzh3')>",
        "awarders": [],
        "banned_at_utc": null,
        "banned_by": null,
        "can_gild": false,
        "can_mod_post": false,
        "category": null,
        "clear_vote": "<bound method VotableMixin.clear_vote of Submission(id='1ghhzh3')>",
        "clicked": false,
        "comment_limit": 2048,
        "comment_sort": "confidence",
        "comments": "<praw.models.comment_forest.CommentForest object at 0x769a22dd5cf0>",
        "content_categories": null,
        "contest_mode": false,
        "created": 1730500855.0,
        "created_utc": 1730500855.0,
        "crosspost": "<bound method Submission.crosspost of Submission(id='1ghhzh3')>",
        "delete": "<bound method EditableMixin.delete of Submission(id='1ghhzh3')>",
        "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Submission(id='1ghhzh3')>",
        "discussion_type": null,
        "distinguished": null,
        "domain": "reddit.com",
        "downs": 0,
        "downvote": "<bound method VotableMixin.downvote of Submission(id='1ghhzh3')>",
        "duplicates": "<bound method SubmissionListingMixin.duplicates of Submission(id='1ghhzh3')>",
        "edit": "<bound method EditableMixin.edit of Submission(id='1ghhzh3')>",
        "edited": false,
        "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Submission(id='1ghhzh3')>",
        "flair": "<praw.models.reddit.submission.SubmissionFlair object at 0x769a898a89a0>",
        "fullname": "t3_1ghhzh3",
        "gallery_data": {
            "items": [
                {
                    "media_id": "jngevs8ibdyd1",
                    "id": 544485481
                },
                {
                    "media_id": "90747t8ibdyd1",
                    "id": 544485482
                },
                {
                    "media_id": "q0ptfs8ibdyd1",
                    "id": 544485483
                }
            ]
        },
        "gild": "<bound method GildableMixin.gild of Submission(id='1ghhzh3')>",
        "gilded": 0,
        "gildings": {},
        "hidden": false,
        "hide": "<bound method Submission.hide of Submission(id='1ghhzh3')>",
        "hide_score": false,
        "id": "1ghhzh3",
        "id_from_url": "<function Submission.id_from_url at 0x769a8d396680>",
        "is_created_from_ads_ui": false,
        "is_crosspostable": true,
        "is_gallery": true,
        "is_meta": false,
        "is_original_content": false,
        "is_reddit_media_domain": false,
        "is_robot_indexable": true,
        "is_self": false,
        "is_video": false,
        "likes": null,
        "link_flair_background_color": "#ff0000",
        "link_flair_css_class": "three",
        "link_flair_richtext": [
            {
                "e": "text",
                "t": "Lore"
            }
        ],
        "link_flair_template_id": "e996e03e-c100-11e8-ae45-0efbee3c936c",
        "link_flair_text": "Lore",
        "link_flair_text_color": "light",
        "link_flair_type": "richtext",
        "locked": false,
        "mark_visited": "<bound method Submission.mark_visited of Submission(id='1ghhzh3')>",
        "media": null,
        "media_embed": {},
        "media_metadata": {
            "90747t8ibdyd1": {
                "status": "valid",
                "e": "Image",
                "m": "image/jpg",
                "p": [
                    {
                        "y": 60,
                        "x": 108,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=108&crop=smart&auto=webp&s=09320c51c4f67a86a4d551a8ab0ea1bccff1bff7"
                    },
                    {
                        "y": 121,
                        "x": 216,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=216&crop=smart&auto=webp&s=9dd9bdf181c6356cc93dcad0ce5e6b0f9d0b7f00"
                    },
                    {
                        "y": 180,
                        "x": 320,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=320&crop=smart&auto=webp&s=0cc61a56a5641c5204a13ba2919c0db2b8a540ff"
                    },
                    {
                        "y": 360,
                        "x": 640,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=640&crop=smart&auto=webp&s=4945624832958c8174d31a5ac3a0bbbd579523d3"
                    },
                    {
                        "y": 540,
                        "x": 960,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=960&crop=smart&auto=webp&s=962a35c709b10103281bc52c4c220d8c137b34b1"
                    },
                    {
                        "y": 607,
                        "x": 1080,
                        "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=1080&crop=smart&auto=webp&s=b5df6e5387d9885ce9a56cb2683a3ce9c6c0a452"
                    }
                ],
                "s": {
                    "y": 2160,
                    "x": 3840,
                    "u": "https://preview.redd.it/90747t8ibdyd1.jpg?width=3840&format=pjpg&auto=webp&s=3971b8a5f8f8034650d1c93f559fc1ae5eb493b0"
                },
                "id": "90747t8ibdyd1"
            },
            "q0ptfs8ibdyd1": {
                "status": "valid",
                "e": "Image",
                "m": "image/jpg",
                "p": [
                    {
                        "y": 60,
                        "x": 108,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=108&crop=smart&auto=webp&s=99916e033c9a3f812744f9c4b3c49e1471b4d04a"
                    },
                    {
                        "y": 121,
                        "x": 216,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=216&crop=smart&auto=webp&s=ca1a39cc494f6c83e9f489241c2e810c1fc39592"
                    },
                    {
                        "y": 180,
                        "x": 320,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=320&crop=smart&auto=webp&s=c988547dd70ce5614d8ea072dcd277c302626035"
                    },
                    {
                        "y": 360,
                        "x": 640,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=640&crop=smart&auto=webp&s=1e0e97b36ea5965d846bb724c68854368b8c6cb5"
                    },
                    {
                        "y": 540,
                        "x": 960,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=960&crop=smart&auto=webp&s=40aaa19cc06af860ec11cfbd7e457ebb51dae48c"
                    },
                    {
                        "y": 607,
                        "x": 1080,
                        "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=1080&crop=smart&auto=webp&s=106c5eec1d614b33f602c7e54ff2da4f3b92cab8"
                    }
                ],
                "s": {
                    "y": 2160,
                    "x": 3840,
                    "u": "https://preview.redd.it/q0ptfs8ibdyd1.jpg?width=3840&format=pjpg&auto=webp&s=e96f036aaf0031a5e72b4909cfddfe5eb9e3cfb7"
                },
                "id": "q0ptfs8ibdyd1"
            },
            "jngevs8ibdyd1": {
                "status": "valid",
                "e": "Image",
                "m": "image/jpg",
                "p": [
                    {
                        "y": 60,
                        "x": 108,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=108&crop=smart&auto=webp&s=5184318765afd580451351737571cd8a5ed1aa69"
                    },
                    {
                        "y": 121,
                        "x": 216,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=216&crop=smart&auto=webp&s=3fca87dab78d0a50d4e14444c876c013d036077d"
                    },
                    {
                        "y": 180,
                        "x": 320,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=320&crop=smart&auto=webp&s=9a2848d2168fa735c6da2f8fc10a09d8d94b47b9"
                    },
                    {
                        "y": 360,
                        "x": 640,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=640&crop=smart&auto=webp&s=f3c46397d164f3eadc340549fd0edc8d72d35a2d"
                    },
                    {
                        "y": 540,
                        "x": 960,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=960&crop=smart&auto=webp&s=b0bd29e0dc8092587ef5a6da0f6398614c145a2c"
                    },
                    {
                        "y": 607,
                        "x": 1080,
                        "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=1080&crop=smart&auto=webp&s=e9ff576b9593e1170f1985ddf80396ed2714d632"
                    }
                ],
                "s": {
                    "y": 2160,
                    "x": 3840,
                    "u": "https://preview.redd.it/jngevs8ibdyd1.jpg?width=3840&format=pjpg&auto=webp&s=77ffc615acf8927e378951d8d165dff9c0907335"
                },
                "id": "jngevs8ibdyd1"
            }
        },
        "media_only": false,
        "mod": "<praw.models.reddit.submission.SubmissionModeration object at 0x769a898a8820>",
        "mod_note": null,
        "mod_reason_by": null,
        "mod_reason_title": null,
        "mod_reports": [],
        "name": "t3_1ghhzh3",
        "no_follow": true,
        "num_comments": 2,
        "num_crossposts": 0,
        "num_reports": null,
        "over_18": false,
        "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.submission.Submission'>>",
        "permalink": "/r/reddeadredemption/comments/1ghhzh3/uhhh_guys/",
        "pinned": false,
        "pwls": 6,
        "quarantine": false,
        "removal_reason": null,
        "removed_by": null,
        "removed_by_category": null,
        "reply": "<bound method ReplyableMixin.reply of Submission(id='1ghhzh3')>",
        "report": "<bound method ReportableMixin.report of Submission(id='1ghhzh3')>",
        "report_reasons": null,
        "save": "<bound method SavableMixin.save of Submission(id='1ghhzh3')>",
        "saved": false,
        "score": 3,
        "secure_media": null,
        "secure_media_embed": {},
        "selftext": "I\u2019m not sure.  And I don\u2019t want to get my hopes up.  But I think I found Gavin\u2026.",
        "selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>I\u2019m not sure.  And I don\u2019t want to get my hopes up.  But I think I found Gavin\u2026.</p>\n</div><!-- SC_ON -->",
        "send_replies": true,
        "shortlink": "https://redd.it/1ghhzh3",
        "spoiler": false,
        "stickied": false,
        "subreddit": "reddeadredemption",
        "subreddit_id": "t5_2rn7o",
        "subreddit_name_prefixed": "r/reddeadredemption",
        "subreddit_subscribers": 2007521,
        "subreddit_type": "public",
        "suggested_sort": "top",
        "thumbnail": "https://b.thumbs.redditmedia.com/sGSEpkb3IYGFW43IvlWO1sZ3VrtVHCxlydHfMx66WQM.jpg",
        "thumbnail_height": 78,
        "thumbnail_width": 140,
        "title": "Uhhh guys\u2026.",
        "top_awarded_type": null,
        "total_awards_received": 0,
        "treatment_tags": [],
        "unhide": "<bound method Submission.unhide of Submission(id='1ghhzh3')>",
        "unsave": "<bound method SavableMixin.unsave of Submission(id='1ghhzh3')>",
        "ups": 3,
        "upvote": "<bound method VotableMixin.upvote of Submission(id='1ghhzh3')>",
        "upvote_ratio": 0.81,
        "url": "https://www.reddit.com/gallery/1ghhzh3",
        "url_overridden_by_dest": "https://www.reddit.com/gallery/1ghhzh3",
        "user_reports": [],
        "view_count": null,
        "visited": false,
        "wls": 6,
        "created_date": "2024-11-01",
        "full_link": "https://www.reddit.com/r/reddeadredemption/comments/1ghhzh3/uhhh_guys/"
    },
    "comments": [
        {
            "MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
            "STR_FIELD": "id",
            "all_awardings": [],
            "approved_at_utc": null,
            "approved_by": null,
            "archived": false,
            "associated_award": null,
            "author": "Asobu_X",
            "author_flair_background_color": null,
            "author_flair_css_class": null,
            "author_flair_richtext": [],
            "author_flair_template_id": null,
            "author_flair_text": null,
            "author_flair_text_color": null,
            "author_flair_type": "text",
            "author_fullname": "t2_17r0481s0x",
            "author_is_blocked": false,
            "author_patreon_flair": false,
            "author_premium": false,
            "award": "<bound method GildableMixin.award of Comment(id='luy4s6u')>",
            "awarders": [],
            "banned_at_utc": null,
            "banned_by": null,
            "block": "<bound method InboxableMixin.block of Comment(id='luy4s6u')>",
            "body": "I don't want to feed you false hopes either, but I hope there is. I hope you have achieved it, it is one of the most complex milestones to achieve in this game",
            "body_html": "<div class=\"md\"><p>I don&#39;t want to feed you false hopes either, but I hope there is. I hope you have achieved it, it is one of the most complex milestones to achieve in this game</p>\n</div>",
            "can_gild": false,
            "can_mod_post": false,
            "clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='luy4s6u')>",
            "collapse": "<bound method InboxableMixin.collapse of Comment(id='luy4s6u')>",
            "collapsed": false,
            "collapsed_because_crowd_control": null,
            "collapsed_reason": null,
            "collapsed_reason_code": null,
            "comment_type": null,
            "controversiality": 0,
            "created": 1730507813.0,
            "created_utc": 1730507813.0,
            "delete": "<bound method EditableMixin.delete of Comment(id='luy4s6u')>",
            "depth": 0,
            "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='luy4s6u')>",
            "distinguished": null,
            "downs": 0,
            "downvote": "<bound method VotableMixin.downvote of Comment(id='luy4s6u')>",
            "edit": "<bound method EditableMixin.edit of Comment(id='luy4s6u')>",
            "edited": false,
            "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='luy4s6u')>",
            "fullname": "t1_luy4s6u",
            "gild": "<bound method GildableMixin.gild of Comment(id='luy4s6u')>",
            "gilded": 0,
            "gildings": {},
            "id": "luy4s6u",
            "id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
            "is_root": true,
            "is_submitter": false,
            "likes": null,
            "link_id": "t3_1ghhzh3",
            "locked": false,
            "mark_read": "<bound method InboxableMixin.mark_read of Comment(id='luy4s6u')>",
            "mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='luy4s6u')>",
            "mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a898a87c0>",
            "mod_note": null,
            "mod_reason_by": null,
            "mod_reason_title": null,
            "mod_reports": [],
            "name": "t1_luy4s6u",
            "no_follow": true,
            "num_reports": null,
            "parent": "<bound method Comment.parent of Comment(id='luy4s6u')>",
            "parent_id": "t3_1ghhzh3",
            "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
            "permalink": "/r/reddeadredemption/comments/1ghhzh3/uhhh_guys/luy4s6u/",
            "refresh": "<bound method Comment.refresh of Comment(id='luy4s6u')>",
            "removal_reason": null,
            "replies": "<praw.models.comment_forest.CommentForest object at 0x769a22dd5ff0>",
            "reply": "<bound method ReplyableMixin.reply of Comment(id='luy4s6u')>",
            "report": "<bound method ReportableMixin.report of Comment(id='luy4s6u')>",
            "report_reasons": null,
            "save": "<bound method SavableMixin.save of Comment(id='luy4s6u')>",
            "saved": false,
            "score": 3,
            "score_hidden": false,
            "send_replies": true,
            "stickied": false,
            "submission": "1ghhzh3",
            "subreddit": "reddeadredemption",
            "subreddit_id": "t5_2rn7o",
            "subreddit_name_prefixed": "r/reddeadredemption",
            "subreddit_type": "public",
            "top_awarded_type": null,
            "total_awards_received": 0,
            "treatment_tags": [],
            "unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='luy4s6u')>",
            "uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='luy4s6u')>",
            "unrepliable_reason": null,
            "unsave": "<bound method SavableMixin.unsave of Comment(id='luy4s6u')>",
            "ups": 3,
            "upvote": "<bound method VotableMixin.upvote of Comment(id='luy4s6u')>",
            "user_reports": []
        },
        {
            "MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
            "STR_FIELD": "id",
            "all_awardings": [],
            "approved_at_utc": null,
            "approved_by": null,
            "archived": false,
            "associated_award": null,
            "author": "Multiple-Bagels",
            "author_flair_background_color": "transparent",
            "author_flair_css_class": null,
            "author_flair_richtext": [
                {
                    "a": ":tilly_jackson:",
                    "u": "https://emoji.redditmedia.com/370etaowq5t11_t5_2rn7o/tilly_jackson",
                    "e": "emoji"
                },
                {
                    "e": "text",
                    "t": " Tilly Jackson"
                }
            ],
            "author_flair_template_id": "2273d072-b523-11e8-85af-0ef63ea61dac",
            "author_flair_text": ":tilly_jackson: Tilly Jackson",
            "author_flair_text_color": "dark",
            "author_flair_type": "richtext",
            "author_fullname": "t2_tufsmuszl",
            "author_is_blocked": false,
            "author_patreon_flair": false,
            "author_premium": false,
            "award": "<bound method GildableMixin.award of Comment(id='luyhql6')>",
            "awarders": [],
            "banned_at_utc": null,
            "banned_by": null,
            "block": "<bound method InboxableMixin.block of Comment(id='luyhql6')>",
            "body": "Gavin doesn\u2019t exist in the game, not even in the code.",
            "body_html": "<div class=\"md\"><p>Gavin doesn\u2019t exist in the game, not even in the code.</p>\n</div>",
            "can_gild": false,
            "can_mod_post": false,
            "clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='luyhql6')>",
            "collapse": "<bound method InboxableMixin.collapse of Comment(id='luyhql6')>",
            "collapsed": false,
            "collapsed_because_crowd_control": null,
            "collapsed_reason": null,
            "collapsed_reason_code": null,
            "comment_type": null,
            "controversiality": 0,
            "created": 1730512934.0,
            "created_utc": 1730512934.0,
            "delete": "<bound method EditableMixin.delete of Comment(id='luyhql6')>",
            "depth": 0,
            "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='luyhql6')>",
            "distinguished": null,
            "downs": 0,
            "downvote": "<bound method VotableMixin.downvote of Comment(id='luyhql6')>",
            "edit": "<bound method EditableMixin.edit of Comment(id='luyhql6')>",
            "edited": false,
            "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='luyhql6')>",
            "fullname": "t1_luyhql6",
            "gild": "<bound method GildableMixin.gild of Comment(id='luyhql6')>",
            "gilded": 0,
            "gildings": {},
            "id": "luyhql6",
            "id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
            "is_root": true,
            "is_submitter": false,
            "likes": null,
            "link_id": "t3_1ghhzh3",
            "locked": false,
            "mark_read": "<bound method InboxableMixin.mark_read of Comment(id='luyhql6')>",
            "mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='luyhql6')>",
            "mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a22dd57e0>",
            "mod_note": null,
            "mod_reason_by": null,
            "mod_reason_title": null,
            "mod_reports": [],
            "name": "t1_luyhql6",
            "no_follow": true,
            "num_reports": null,
            "parent": "<bound method Comment.parent of Comment(id='luyhql6')>",
            "parent_id": "t3_1ghhzh3",
            "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
            "permalink": "/r/reddeadredemption/comments/1ghhzh3/uhhh_guys/luyhql6/",
            "refresh": "<bound method Comment.refresh of Comment(id='luyhql6')>",
            "removal_reason": null,
            "replies": "<praw.models.comment_forest.CommentForest object at 0x769a22dd40d0>",
            "reply": "<bound method ReplyableMixin.reply of Comment(id='luyhql6')>",
            "report": "<bound method ReportableMixin.report of Comment(id='luyhql6')>",
            "report_reasons": null,
            "save": "<bound method SavableMixin.save of Comment(id='luyhql6')>",
            "saved": false,
            "score": 1,
            "score_hidden": false,
            "send_replies": true,
            "stickied": false,
            "submission": "1ghhzh3",
            "subreddit": "reddeadredemption",
            "subreddit_id": "t5_2rn7o",
            "subreddit_name_prefixed": "r/reddeadredemption",
            "subreddit_type": "public",
            "top_awarded_type": null,
            "total_awards_received": 0,
            "treatment_tags": [],
            "unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='luyhql6')>",
            "uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='luyhql6')>",
            "unrepliable_reason": null,
            "unsave": "<bound method SavableMixin.unsave of Comment(id='luyhql6')>",
            "ups": 1,
            "upvote": "<bound method VotableMixin.upvote of Comment(id='luyhql6')>",
            "user_reports": []
        }
    ]
}