]> code.communitydata.science - cdsc_reddit.git/blob - pull_pushshift_submissions.sh
Bugfix
[cdsc_reddit.git] / pull_pushshift_submissions.sh
1 #!/bin/bash
2
3 user_agent='nathante teblunthuis <nathante@uw.edu>'
4 output_dir='/gscratch/comdata/raw_data/reddit_dumps/submissions'
5 base_url='https://files.pushshift.io/reddit/submissions/'
6
7 wget -r --no-parent -A 'RS_20*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url
8 wget -r --no-parent -A 'RS_20*.xz' -U $user_agent -P $output_dir -nd -nc $base_url
9 wget -r --no-parent -A 'RS_20*.zst' -U $user_agent -P $output_dir -nd -nc $base_url
10 wget -r --no-parent -A 'RS_20*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
11 wget -r --no-parent -A 'RS_20*.xz' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
12 wget -r --no-parent -A 'RS_20*.zst' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
13
14 ./check_submissions_shas.py

Community Data Science Collective || Want to submit a patch?