Initial project structure and dependencies
This commit is contained in:
commit
2cc5f01c52
3 changed files with 30 additions and 0 deletions
20
.gitignore
vendored
Normal file
20
.gitignore
vendored
Normal 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
7
requirements.txt
Normal 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
3
src/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
"""Reddit Media Collector - Collect images and videos from Reddit."""
|
||||
|
||||
__version__ = "1.0.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue