├── .dockerignore ├── .gitignore ├── .sample-env ├── Dockerfile ├── LICENSE ├── README.md ├── docker-entrypoint.sh ├── reddit_fetch ├── __init__.py ├── api.py ├── auth.py ├── config.py ├── generate_tokens.py └── main.py ├── requirements.txt ├── sample-docker-compose.yml ├── setup.py └── validate_credentials.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /.sample-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/.sample-env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/README.md -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /reddit_fetch/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import fetch_saved_posts -------------------------------------------------------------------------------- /reddit_fetch/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/reddit_fetch/api.py -------------------------------------------------------------------------------- /reddit_fetch/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/reddit_fetch/auth.py -------------------------------------------------------------------------------- /reddit_fetch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/reddit_fetch/config.py -------------------------------------------------------------------------------- /reddit_fetch/generate_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/reddit_fetch/generate_tokens.py -------------------------------------------------------------------------------- /reddit_fetch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/reddit_fetch/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-dotenv 3 | rich -------------------------------------------------------------------------------- /sample-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/sample-docker-compose.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/setup.py -------------------------------------------------------------------------------- /validate_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashpandey/Reddit-Fetch/HEAD/validate_credentials.py --------------------------------------------------------------------------------