- Link: https://pytube-downloader.herokuapp.com/
- Description: Web environement and Telegram Bot for
youtube_dl
- Objective: Provides facility to download Youtube media
- Date: 15/02/2021
- Authors:
- Actual Features:
- Download mp4 from Youtube Link;
- Download mp3 from Youtube Link;
- Telegram Bot;
├── docker-compose.yaml
├── Dockerfile
├── docs
│ └── source
│ └── static
│ └── pytube-logo.png
├── poetry.lock
├── pyproject.toml
├── README.rst
├── requirements.txt
└── src
├── configuration
│ └── __init__.py
├── controllers
│ ├── __init__.py
│ └── routes.py
├── resources
│ ├── css
│ │ └── styles.css
│ ├── html
│ │ └── index.html
│ ├── img
│ │ └── pytube_logo.png
│ └── js
│ └── script.js
├── run.py
└── services
├── facade_yt_dl.py
├── __init__.py
├── telegram_bot.py
└── video_manager.py
Add new dependency:
poetry add DEPENDENCY
poetry export -f requirements.txt > requirements.txt
Setup environement for development
docker-compose up --build -d