2023-05-15 08:08:50 -04:00
|
|
|
# VLC_HTTP_LAUNCHER
|
|
|
|
|
|
|
|
This project is a simple python programme to travel in http repository and open all file in VLC
|
|
|
|
|
2023-05-15 16:32:41 -04:00
|
|
|
## Screenshoot
|
|
|
|
|
|
|
|
![preview](https://media.discordapp.net/attachments/576080802882781194/1107765749273083925/image.png)
|
|
|
|
![server selector](https://media.discordapp.net/attachments/501841539161522176/1107767265430089828/image.png)
|
|
|
|
|
2023-05-15 08:08:50 -04:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
1. Clone the repository:
|
|
|
|
```bash
|
|
|
|
git clone https://git.chauvet.pro/starnakin/VLC_HTTP_LAUNCHER
|
|
|
|
```
|
|
|
|
2. Navigate to the project directory:
|
|
|
|
```bash
|
|
|
|
cd VLC_HTTP_LAUNCHER
|
|
|
|
```
|
|
|
|
3. Install the dependencies:
|
|
|
|
```bash
|
|
|
|
pip install -r requirements.txt
|
2023-05-27 18:18:35 -04:00
|
|
|
pip install -r terminal_menu/requirements.txt
|
2023-05-15 08:08:50 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```bash
|
|
|
|
python3 main.py
|
|
|
|
```
|
|
|
|
|
|
|
|
## dependency
|
|
|
|
|
|
|
|
### BeautifulSoup4
|
|
|
|
To parse the html
|
|
|
|
### Requests
|
|
|
|
To get html with http requests
|
|
|
|
### [TinyDB](https://pypi.org/project/tinydb/)
|
|
|
|
To store credential data and url of the http server
|
|
|
|
### SubProcess and Os
|
2023-05-31 10:01:37 -04:00
|
|
|
To launch VLC
|
|
|
|
### Sys
|
|
|
|
To exit when a http request failed
|
2023-05-31 10:02:39 -04:00
|
|
|
### [Colorama](https://github.com/tartley/colorama)
|
2023-05-31 10:01:37 -04:00
|
|
|
To color text in terminal
|