"risals" is a web photo album generator. This software makes an HTML file which provides a list of the thumbnails of given JPEG photos. Photo albums generated by using this software are composed of only static files, i.e. you are not required to prepare running server-side programs such PHP, ASP, and CGI. You can see the sample photo albums generated with this software in https://arnip.org/photos.
和訳: 飯塚研写真集のアルバムを生成するやつ。
- Drop your JPEG files into the same directory as risals.py.
- Run
python3 risals.py "[title]"
in the above directory. - Photo album file
index.html
will be generated.
This software is implemented in Python3. Hence, you need to install Python3 (see https://www.python.org for more details).
This software also depends on the tqdm, Pillow, and Jinja2 packages. Therefore, you need to run the following commands before using this software.
sudo -H pip install tqdm
sudo -H pip install Pillow
sudo -H pip install jinja2