2024-11-15 13:03:35 +01:00
|
|
|
# get_youtube_videos
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
### Linux
|
|
|
|
|
2024-11-17 16:01:05 +01:00
|
|
|
To install for example in your ~/.local/bin folder:
|
|
|
|
```bash
|
|
|
|
./install.sh --destination ~/.local/bin
|
|
|
|
```
|
|
|
|
|
|
|
|
To install system-wide:
|
|
|
|
```bash
|
|
|
|
sudo ./install.sh --destination /usr/local/bin
|
2024-11-15 13:03:35 +01:00
|
|
|
```
|
|
|
|
|
2024-11-17 16:01:05 +01:00
|
|
|
Change your configuration file in "${HOME}/.config/get_youtube_videos.conf" (see the example in the config folder).
|
|
|
|
|
2024-11-15 13:03:35 +01:00
|
|
|
### Windows (from PowerShell)
|
|
|
|
|
|
|
|
Ensure you have "C:\Users\${env:USERNAME}\AppData\Roaming\Python\Python${python_version}\Scripts\" in your Path environment variable.
|
|
|
|
|
|
|
|
```powershell
|
|
|
|
& $(where.exe pip).split()[0] install .
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```bash
|
|
|
|
get_youtube_videos.py [--debug-level|-d CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET] # Other parameters
|
|
|
|
```
|