WebXiangpianbu is a photo album organizer written in Python/Django. It can work as a dynamic web application photo gallery or as a static site generator.
- Free, self-hosted web application
- No database required
- Highly customizable (albums, templates, styles)
- Mobile friendly
- EXIF and Geotagging extracting
- Map feature (Leaflet, Mapbox)
- Language localization
Install all necessary dependencies using uv.
$ uv syncNext steps:
- Copy
webxiang/settings_sample.pytowebxiang/settings.pyand modify it to your needs. - Optionally, run
uv run manage.py compilemessages(if you havegettextinstalled). - uv run manage.py collectstatic
See https://docs.djangoproject.com/en/dev/howto/deployment/ for usual Django applications deployment.
./scripts/build-docker.sh
# [adjust files in the `run` folder]
docker-compose upgenerate.py -- generate albums from photo files.
tools/generate.py --album-dir=albums/ ~/photos/vacation/ ~/webxiang/static/data/vacation
tools/generate.py --help
# next, adjust the generated vacation.yamlconvert.py -- convert albums between different file formats (YAML, JSON).
tools/convert.py 'albums/*.yaml' tmp/tools/generate.py ~/photos/vacation/ ~/tmp/vacation
tools/staticgen.py --quick=~/tmp/vacation --copy
tools/staticgen.py --help