├── .gitignore ├── README.md ├── acquire_sub_posts_json.py ├── compressed_json_wrapper.py ├── config.sample ├── crawler.py ├── images ├── create_reddit_app.png └── reddit_app_details.png ├── json-crawler.py ├── load_files.py ├── requirements.txt ├── saved.py ├── subs.sample ├── threaded-acquire.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/README.md -------------------------------------------------------------------------------- /acquire_sub_posts_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/acquire_sub_posts_json.py -------------------------------------------------------------------------------- /compressed_json_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/compressed_json_wrapper.py -------------------------------------------------------------------------------- /config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/config.sample -------------------------------------------------------------------------------- /crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/crawler.py -------------------------------------------------------------------------------- /images/create_reddit_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/images/create_reddit_app.png -------------------------------------------------------------------------------- /images/reddit_app_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/images/reddit_app_details.png -------------------------------------------------------------------------------- /json-crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/json-crawler.py -------------------------------------------------------------------------------- /load_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/load_files.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/requirements.txt -------------------------------------------------------------------------------- /saved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/saved.py -------------------------------------------------------------------------------- /subs.sample: -------------------------------------------------------------------------------- 1 | gonewild 2 | nsfw 3 | -------------------------------------------------------------------------------- /threaded-acquire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/threaded-acquire.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSFWUTILS/RedditScrape/HEAD/utils.py --------------------------------------------------------------------------------