├── .envrc ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── download_comments_post.py ├── download_comments_user.py ├── download_posts_user.py ├── fetch_posts_subreddit.py ├── psaw ├── download_comments_terms.py ├── download_comments_user.py ├── download_posts_subreddit.py ├── download_posts_terms.py └── download_posts_user.py ├── rfrance-scripts ├── prepare_bestoffrance.py └── prepare_forumlibre.py └── shell.nix /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/README.md -------------------------------------------------------------------------------- /download_comments_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/download_comments_post.py -------------------------------------------------------------------------------- /download_comments_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/download_comments_user.py -------------------------------------------------------------------------------- /download_posts_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/download_posts_user.py -------------------------------------------------------------------------------- /fetch_posts_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/fetch_posts_subreddit.py -------------------------------------------------------------------------------- /psaw/download_comments_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/psaw/download_comments_terms.py -------------------------------------------------------------------------------- /psaw/download_comments_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/psaw/download_comments_user.py -------------------------------------------------------------------------------- /psaw/download_posts_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/psaw/download_posts_subreddit.py -------------------------------------------------------------------------------- /psaw/download_posts_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/psaw/download_posts_terms.py -------------------------------------------------------------------------------- /psaw/download_posts_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/psaw/download_posts_user.py -------------------------------------------------------------------------------- /rfrance-scripts/prepare_bestoffrance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/rfrance-scripts/prepare_bestoffrance.py -------------------------------------------------------------------------------- /rfrance-scripts/prepare_forumlibre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/rfrance-scripts/prepare_forumlibre.py -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbeley/reddit-scraper/HEAD/shell.nix --------------------------------------------------------------------------------