Web app to get download links of YouTube videos.
u2bdownload is a simple FastHTML-based web application designed to extract video links from a given URL.
Install uv (if not already installed):
pip install uv
OR
curl -LsSf https://astral.sh/uv/install.sh | sh
Run the application:
uv run main.py
This will set up a virtual environment and run the application automatically.
Create and activate a virtual environment:
Linux/macOS:
python3 -m venv venv
source venv/bin/activate
Windows:
python -m venv venv
venv\Scripts\activate
Install the required packages:
pip install -r requirements.txt
Run the development server:
python main.py