changed progressbar to tqdm

This commit is contained in:
2024-06-27 10:24:34 +02:00
committed by Flo Greistorfer
parent 238787d721
commit 14f08acc4f
2 changed files with 17 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
# generate_html.py
`generate_html.py` is a Python script designed to generate static HTML files for hosting images on a web server. It traverses a specified root directory, creates thumbnail previews for images, and generates corresponding HTML files to display the images and subfolders in a user-friendly format.
`generate_html.py` is a Python script designed to generate static HTML files for hosting images on a web server. It traverses a specified root directory, creates thumbnail previews for images, and generates corresponding HTML files to display the images and subfolders in a user-friendly format.
## Features
@@ -14,14 +14,14 @@
- Python 3.x
- `numpy` library
- `alive_progress` library
- `tqdm` library
## Installation
Install the required libraries using pip:
```sh
pip install numpy alive_progress
pip install numpy tqdm
```
## Usage