-
Notifications
You must be signed in to change notification settings - Fork 7
/
timesearch.py
593 lines (559 loc) · 15.8 KB
/
timesearch.py
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
'''
This is the main launch file for Timesearch.
When you run `python timesearch.py get_submissions -r subredditname` or any
other command, your arguments will go to the timesearch_modules file as
appropriate for your command.
'''
import argparse
import sys
from voussoirkit import betterhelp
from voussoirkit import vlogging
from timesearch_modules import exceptions
# NOTE: Originally I wanted the docstring for each module to be within their
# file. However, this means that composing the global helptext would require
# importing those modules, which will subsequently import PRAW and a whole lot
# of other things. This made TS very slow to load which is okay when you're
# actually using it but really terrible when you're just viewing the help text.
def breakdown_gateway(args):
from timesearch_modules import breakdown
breakdown.breakdown_argparse(args)
def get_comments_gateway(args):
from timesearch_modules import get_comments
get_comments.get_comments_argparse(args)
def get_styles_gateway(args):
from timesearch_modules import get_styles
get_styles.get_styles_argparse(args)
def get_wiki_gateway(args):
from timesearch_modules import get_wiki
get_wiki.get_wiki_argparse(args)
def ingest_jsonfile_gateway(args):
from timesearch_modules import ingest_jsonfile
ingest_jsonfile.ingest_jsonfile_argparse(args)
def livestream_gateway(args):
from timesearch_modules import livestream
livestream.livestream_argparse(args)
def merge_db_gateway(args):
from timesearch_modules import merge_db
merge_db.merge_db_argparse(args)
def offline_reading_gateway(args):
from timesearch_modules import offline_reading
offline_reading.offline_reading_argparse(args)
def index_gateway(args):
from timesearch_modules import index
index.index_argparse(args)
def get_submissions_gateway(args):
from timesearch_modules import get_submissions
get_submissions.get_submissions_argparse(args)
@vlogging.main_decorator
def main(argv):
parser = argparse.ArgumentParser(
description='''
The subreddit archiver
The basics:
1. Collect a subreddit's submissions
timesearch get_submissions -r subredditname
2. Collect the comments for those submissions
timesearch get_comments -r subredditname
3. Stay up to date
timesearch livestream -r subredditname
''',
)
subparsers = parser.add_subparsers()
# BREAKDOWN
p_breakdown = subparsers.add_parser(
'breakdown',
description='''
Generate the comment / submission counts for users in a subreddit, or
the subreddits that a user posts to.
Automatically dumps into a <database>_breakdown.json file
in the same directory as the database.
''',
)
p_breakdown.add_argument(
'--sort',
dest='sort',
type=str,
default=None,
help='''
Sort the output by one property.
Should be one of "name", "submissions", "comments", "total_posts".
''',
)
p_breakdown.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
help='''
The subreddit database to break down.
''',
)
p_breakdown.add_argument(
'-u',
'--user',
dest='username',
default=None,
help='''
The username database to break down.
''',
)
p_breakdown.set_defaults(func=breakdown_gateway)
# GET_COMMENTS
p_get_comments = subparsers.add_parser(
'get_comments',
aliases=['get-comments', 'commentaugment'],
description='''
Collect comments on a subreddit or comments made by a user.
''',
)
p_get_comments.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
)
p_get_comments.add_argument(
'-s',
'--specific',
dest='specific_submission',
default=None,
help='''
Given a submission ID like t3_xxxxxx, scan only that submission.
''',
)
p_get_comments.add_argument(
'-u',
'--user',
dest='username',
default=None,
)
p_get_comments.add_argument(
'--dont_supplement',
'--dont-supplement',
dest='do_supplement',
action='store_false',
help='''
If provided, trust the pushshift data and do not fetch live copies
from reddit.
''',
)
p_get_comments.add_argument(
'--lower',
dest='lower',
default='update',
help='''
If a number - the unix timestamp to start at.
If "update" - continue from latest comment in db.
WARNING: If at some point you collected comments for a particular
submission which was ahead of the rest of your comments, using "update"
will start from that later submission, and you will miss the stuff in
between that specific post and the past.
''',
)
p_get_comments.add_argument(
'--upper',
dest='upper',
default=None,
help='''
If a number - the unix timestamp to stop at.
If not provided - stop at current time.
''',
)
p_get_comments.set_defaults(func=get_comments_gateway)
# GET_STYLES
p_get_styles = subparsers.add_parser(
'get_styles',
aliases=['get-styles', 'getstyles'],
help='''
Collect the stylesheet, and css images.
''',
)
p_get_styles.add_argument(
'-r',
'--subreddit',
dest='subreddit',
)
p_get_styles.set_defaults(func=get_styles_gateway)
# GET_WIKI
p_get_wiki = subparsers.add_parser(
'get_wiki',
aliases=['get-wiki', 'getwiki'],
description='''
Collect all available wiki pages.
''',
)
p_get_wiki.add_argument(
'-r',
'--subreddit',
dest='subreddit',
)
p_get_wiki.set_defaults(func=get_wiki_gateway)
# INGEST_JSONFILE
p_ingest_jsonfile = subparsers.add_parser(
'ingest_jsonfile',
description='''
This module was added after reddit's June 2023 API changes which
resulted in pushshift losing API access, and pushshift's own API was
disabled. The community has made archive files available for download.
These archive files contain 1 object (a submission or a comment) per
line in a JSON format.
You can ingest these into timesearch so that you can continue to use
timesearch's offline_reading or index features.
''',
)
p_ingest_jsonfile.add_argument(
'json_file',
help='''
Path to a file containing 1 json object per line. Each object must be
either a submission or a comment.
''',
)
p_ingest_jsonfile.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
)
p_ingest_jsonfile.add_argument(
'-u',
'--user',
dest='username',
default=None,
)
p_ingest_jsonfile.set_defaults(func=ingest_jsonfile_gateway)
# LIVESTREAM
p_livestream = subparsers.add_parser(
'livestream',
description='''
Continously collect submissions and/or comments.
''',
)
p_livestream.add_argument(
'--once',
dest='once',
action='store_true',
help='''
If provided, only do a single loop. Otherwise go forever.
''',
)
p_livestream.add_argument(
'-c',
'--comments',
dest='comments',
action='store_true',
help='''
If provided, do collect comments. Otherwise don't.
If submissions and comments are BOTH left unspecified, then they will
BOTH be collected.
''',
)
p_livestream.add_argument(
'--limit',
dest='limit',
type=int,
default=None,
help='''
Number of items to fetch per request.
''',
)
p_livestream.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
help='''
The subreddit to collect from.
''',
)
p_livestream.add_argument(
'-s',
'--submissions',
dest='submissions',
action='store_true',
help='''
If provided, do collect submissions. Otherwise don't.
If submissions and comments are BOTH left unspecified, then they will
BOTH be collected.
''',
)
p_livestream.add_argument(
'-u',
'--user',
dest='username',
default=None,
help='''
The redditor to collect from.
''',
)
p_livestream.add_argument(
'-w',
'--wait',
dest='sleepy',
default=30,
help='''
The number of seconds to wait between cycles.
''',
)
p_livestream.set_defaults(func=livestream_gateway)
# MERGEDB'
p_merge_db = subparsers.add_parser(
'merge_db',
aliases=['merge-db', 'mergedb'],
description='''
Copy all new posts from one timesearch database into another.
''',
)
p_merge_db.examples = [
'--from redditdev1.db --to redditdev2.db',
]
p_merge_db.add_argument(
'--from',
dest='from_db_path',
required=True,
help='''
The database file containing the posts you wish to copy.
''',
)
p_merge_db.add_argument(
'--to',
dest='to_db_path',
required=True,
help='''
The database file to which you will copy the posts.
The database is modified in-place.
Existing posts will be ignored and not updated.
''',
)
p_merge_db.set_defaults(func=merge_db_gateway)
# OFFLINE_READING
p_offline_reading = subparsers.add_parser(
'offline_reading',
aliases=['offline-reading'],
description='''
Render submissions and comment threads to HTML via Markdown.
''',
)
p_offline_reading.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
)
p_offline_reading.add_argument(
'-s',
'--specific',
dest='specific_submission',
default=None,
type=str,
help='''
Given a submission ID like t3_xxxxxx, render only that submission.
Otherwise render every submission in the database.
''',
)
p_offline_reading.add_argument(
'-u',
'--user',
dest='username',
default=None,
)
p_offline_reading.set_defaults(func=offline_reading_gateway)
# INDEX
p_index = subparsers.add_parser(
'index',
aliases=['redmash'],
description='''
Dump submission listings to a plaintext or HTML file.
''',
)
p_index.examples = [
{
'args': '-r botwatch --date',
'comment': 'Does only the date file.'
},
{
'args': '-r botwatch --score --title',
'comment': 'Does both the score and title files.'
},
{
'args': '-r botwatch --score --score_threshold 50',
'comment': 'Only shows submissions with >= 50 points.'
},
{
'args': '-r botwatch --all',
'comment': 'Performs all of the different mashes.'
},
]
p_index.add_argument(
'-r',
'--subreddit',
dest='subreddit',
default=None,
help='''
The subreddit database to dump.
''',
)
p_index.add_argument(
'-u',
'--user',
dest='username',
default=None,
help='''
The username database to dump.
''',
)
p_index.add_argument(
'--all',
dest='do_all',
action='store_true',
help='''
Perform all of the indexes listed below.
''',
)
p_index.add_argument(
'--author',
dest='do_author',
action='store_true',
help='''
For subreddit databases only.
Perform an index sorted by author.
''',
)
p_index.add_argument(
'--date',
dest='do_date',
action='store_true',
help='''
Perform an index sorted by date.
''',
)
p_index.add_argument(
'--flair',
dest='do_flair',
action='store_true',
help='''
Perform an index sorted by flair.
''',
)
p_index.add_argument(
'--html',
dest='html',
action='store_true',
help='''
Write HTML files instead of plain text.
''',
)
p_index.add_argument(
'--score',
dest='do_score',
action='store_true',
help='''
Perform an index sorted by score.
''',
)
p_index.add_argument(
'--sub',
dest='do_subreddit',
action='store_true',
help='''
For username databases only.
Perform an index sorted by subreddit.
''',
)
p_index.add_argument(
'--title',
dest='do_title',
action='store_true',
help='''
Perform an index sorted by title.
''',
)
p_index.add_argument(
'--offline',
dest='offline',
action='store_true',
help='''
The links in the index will point to the files generated by
offline_reading. That is, `../offline_reading/fullname.html` instead
of `http://redd.it/id`. This will NOT trigger offline_reading to
generate the files now, so you must run that tool separately.
''',
)
p_index.add_argument(
'--score_threshold',
'--score-threshold',
dest='score_threshold',
type=int,
default=0,
help='''
Only index posts with at least this many points.
Applies to ALL indexes!
''',
)
p_index.set_defaults(func=index_gateway)
# GET_SUBMISSIONS
p_get_submissions = subparsers.add_parser(
'get_submissions',
aliases=['get-submissions', 'timesearch'],
description='''
Collect submissions from the subreddit across all of history, or
Collect submissions by a user (as many as possible).
''',
)
p_get_submissions.add_argument(
'--lower',
dest='lower',
default='update',
help='''
If a number - the unix timestamp to start at.
If "update" - continue from latest submission in db.
''',
)
p_get_submissions.add_argument(
'-r',
'--subreddit',
dest='subreddit',
type=str,
default=None,
help='''
The subreddit to scan. Mutually exclusive with username.
''',
)
p_get_submissions.add_argument(
'-u',
'--user',
dest='username',
type=str,
default=None,
help='''
The user to scan. Mutually exclusive with subreddit.
''',
)
p_get_submissions.add_argument(
'--upper',
dest='upper',
default=None,
help='''
If a number - the unix timestamp to stop at.
If not provided - stop at current time.
''',
)
p_get_submissions.add_argument(
'--dont_supplement',
'--dont-supplement',
dest='do_supplement',
action='store_false',
help='''
If provided, trust the pushshift data and do not fetch live copies
from reddit.
''',
)
p_get_submissions.set_defaults(func=get_submissions_gateway)
try:
return betterhelp.go(parser, argv)
except exceptions.DatabaseNotFound as exc:
message = str(exc)
message += '\nHave you used any of the other utilities to collect data?'
print(message)
return 1
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))