├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── RedditArchiver.py ├── authentication.py ├── config.yml.example ├── reddit-archive.sh └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/README.md -------------------------------------------------------------------------------- /RedditArchiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/RedditArchiver.py -------------------------------------------------------------------------------- /authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/authentication.py -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/config.yml.example -------------------------------------------------------------------------------- /reddit-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/reddit-archive.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailothaen/RedditArchiver-standalone/HEAD/requirements.txt --------------------------------------------------------------------------------