├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── delete_entries.py ├── download.py ├── geddit.py ├── patch_imgur_removed.py ├── requirements.txt ├── sources.json ├── user_template.json └── utils.py /.dockerignore: -------------------------------------------------------------------------------- 1 | /data -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/README.md -------------------------------------------------------------------------------- /delete_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/delete_entries.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/download.py -------------------------------------------------------------------------------- /geddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/geddit.py -------------------------------------------------------------------------------- /patch_imgur_removed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/patch_imgur_removed.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | praw==7.7.0 2 | requests==2.28.2 3 | yt-dlp==2023.3.4 -------------------------------------------------------------------------------- /sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/sources.json -------------------------------------------------------------------------------- /user_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/user_template.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeluro1/geddit/HEAD/utils.py --------------------------------------------------------------------------------