Initial project structure and dependencies

This commit is contained in:
authentik Default Admin 2025-08-26 10:30:00 -03:00
commit 2cc5f01c52
3 changed files with 30 additions and 0 deletions

20
.gitignore vendored Normal file
View file

@ -0,0 +1,20 @@
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
*.egg
.eggs/
venv/
.venv/
env/
.env
*.db
*.log
downloads/
config.yaml
scheduler_config.yaml
.thumbs/
*.sqlite
.DS_Store

7
requirements.txt Normal file
View file

@ -0,0 +1,7 @@
requests>=2.31.0
pyyaml>=6.0
Pillow>=10.0.0
yt-dlp>=2024.0.0
fastapi>=0.109.0
uvicorn>=0.27.0
jinja2>=3.1.0

3
src/__init__.py Normal file
View file

@ -0,0 +1,3 @@
"""Reddit Media Collector - Collect images and videos from Reddit."""
__version__ = "1.0.0"