Dorothea
Dorothea is a static site generator for photography websites, primarily photo essays.
It is a port to Python of Jack Qiao's wonderful Exposé project (originally in bash).
While over time bugfixes and new features will be added, it is output-compatible* with Exposé and our integration tests validate that on each commit.
*=There are small tweaks in output because native python libraries have been preferred to OS-level packages were possible, but the difference is pretty minute.
Why a Python port of Exposé
I wanted to make start addressing some of the pain points with the original package, branch out to new themes and tweaks, and found maintaining my own fork in Bash to be less work than porting it to Python, thanks to today's AI-assisted coding tools.
What is it
If you're a photographer, you probably come back home from a trip and end up with photos that look like this:
This tool (and the original Exposé) are designed to turn those folders into websites, including resizing and adjusting the files!
Two themes are currently included, though I am aiming to add more to the original ones:
theme1 example
theme2 example
This is an alternative Medium-style theme, called theme2:
How to run it
This is a Python application designed to run on Linux and macOs with Python 3.14+. It has not been currently tested on Windows, and does not support older versions of Python.
Installation
Run it without installing, or install it as a command:
uvx dorothea # or: pipx run dorothea
uv tool install dorothea # or: pipx install dorothea
If you do not have uvx/uvx, you can install it from the official uv website -- alternatively pipx is also supported.
It will bring with it everything it needs including ffmpeg. However if you have ffmpeg already installed, it will use it; and if you have ImageMagick, it may use that for some features instead of Pillow for better compatibility with the original (colour extraction and image-options).
How to use it
Navigate to the folder full of images, and run the tool:
cd ~/my-trip-to-ecuador
uvx dorothea
A folder called _site will contain the output HTML/jpeg/etc. You can take that folder and put it on any webserver that serves static HTML website (including S3 buckets, etc.).
Adding text
To add text, you simply have to create a .txt file whose name matches the image: if your image is called DSC0001.jpg, you can put the text in DSC0001.txt.
Sorting
Images are sorted by alphabetical order. If you wish to set a different order, add a numberical prefix in front of the file name (e.g. 0001_DSC0003.jpg, 0002_DSC0002.jpg, etc.).
Organization
You can put images in folder to organize them. The folder can be nester arbitrarily. This generates a nested HTML menu for navigation.
To set the order, again put a numerical prefix in front of them.
Configuration
To configure the name of the site and some basic settings, you need to create a _config.json file in the top folder:
{
"site_title": "Alternate Site Title",
"theme_dir": "theme2",
"social_button": false,
"backgroundcolor": "#ffffff"
}
An expose.sh-style _config.sh still works (and dorothea --convert-config converts it). Every
option is described in CONFIG.md.
Advanced options
This section is generated.
Text metadata
YAML in the text file is read and made available to the theme. The variables depend on the theme used.
Theme-1 specific options
---
top: 30
left: 5
width: 30
height: 20
textcolor: #ffffff
---
The units are in percentages
---
top: 12
left: 50
width: 40
height: 50
polygon:[{"x":5, "y":0},{"x":100, "y":0},{"x":100, "y":100},{"x":7, "y":55}, {"x":0, "y":16}]
textcolor: #ff9518
---
Use a polygon to wrap text around shapes. The polygon is defined by 3 or more points in a JSON blob. Units are again in percentages.
Theme-2 specific options
---
width: 32.5
---
In theme-2 the width variable acts on the image rather than the content. You can use this to tile images in a row:
Clicking on each image shows it in full screen mode.
Note that in this theme the text goes above its associated image, except the first image which is used as a masthead.
CSS classes can be passed to the template via the "class" property. eg: use class: textafter to add a CSS class that makes the text go after the image.
Metadata file
If you want certain variables to apply to an entire gallery, place a metadata.txt (this is configurable) file in the gallery directory. eg. in metadata.txt:
width: 19
This sets all image widths to form a grid. Metadata file parameters are overriden by metadata in individual posts.
Flags
dorothea -d
The -d flag enables draft mode, where only a single low resolution is encoded. This can be used for a quick preview or for layout purposes.
Other flags:
dorothea -n # dry run: list what would be built, and why
dorothea --config other.json # use a different config file than ./_config.json
dorothea --set jpeg_quality=85 --set 'resolution=[1920,640]' # override config values
dorothea -j 4 # parallel workers for images (default: one per CPU)
dorothea --convert-config # turn an expose.sh _config.sh into _config.json
dorothea --version
Re-running only rebuilds what changed: edited photos, changed settings, or changed post
metadata. There's no need to delete _site. All settings are listed in CONFIG.md;
coming from expose.sh, see MIGRATION.md.
To do a completely clean build, delete the existing _site directory first.
Video options
Since we're using FFMpeg for video, we can leverage its filter framework for quick effects. This also saves a re-encode from a video editor workflow. Not all the FFmpeg options are applicable, but here are a few I found useful:
---
video-options: -ss 10 -t 5
---
This will cut the video 10 seconds from the start, with a duration of 5 seconds.
---
video-filters: lut3d=file=fuji3510.cube
---
If you're like me and shoot video in log profile, doing post work can be a pain. I like to globally apply a film print emulation LUT for a consistent look. Note that FFmpeg will look for the LUT file in the working directory you started the script in. FFmpeg does not support .look LUTs, so you'll have to convert them to one of .cube .3dl .dat or .m3d
Here I use a nice low-contrast LUT I found online with excellent highlight rolloff for a cinematic look.
---
video-filters: deshake,unsharp=6:6:3,lutyuv="u=128:v=128"
---
Applies stabilization to the video and a slight sharpen filter, then converts to grayscale. Separate filters with commas.
A full list of FFmpeg filters can be found here
Image options
Similar to videos, we can leverage the image editing features of Imagemagick.
Things like cropping and color correction are very visual operations that are hard to do in command line. Most people would shoot in RAW and export as jpeg anyways, so a lot of ImageMagick's CLI options won't be very useful. However, it is very handy for non-destructively applying effects across an entire gallery, eg:
---
image-options: watermark.png -gravity SouthEast -geometry +50+50 -composite
---
You can use this to apply a watermark on the bottom right corner, with a 50 pixel margin from the edge.
---
image-options: -sharpen 0x1.5
---
Sharpens the image with a 1.5 pixel radius
---
image-options: -hald-clut transform.png
---
Imagemagick does not read LUTs natively, but will accept a Hald color lookup image. This image can be created in photoshop or other graphics package by applying your LUT to the Hald identity CLUT image
---
image-options: -colorspace Gray -sigmoidal-contrast 5,50%
---
Convert to a black-and-white image. Typically you would want to enhance contrast as well, which can be done by the sigmoidal contrast modifier. The first number controls contrast intensity.
A full list of Imagemagick options can be found here
Image sequences
Timelapse and stop-motion are a great way to add motion to a scene. If your folder contains the key word "imagesequence" (this is configurable), the images in the folder will be converted to a video. Video options and filters may be applied to image sequences.
By default the video is encoded at 24fps.
Templating
If the two built-in themes aren't your thing, you can create a new theme. There are only two template files in a theme:
template.html contains the global html for your page. It has access to the following built-in variables:
- {{basepath}} - a path to the top level directory of the generated site with trailing slash, relative to the current html file
- {{resourcepath}} - a path to the gallery resource directory, relative to the current html file. This will be mostly empty (since the html page is in the resource directory), except for the top level index.html file, which necessarily draws resources from a subdirectory
- {{resolution}} - a list of horizontal resolutions, as specified in the config. This is a single string with space-delimited values
- {{videoformats}} - a list of video codecs that are generated, as defined in the config. This is also a single string with space-delimited values
- {{content}} - where the text/images will go
- {{sitetitle}} - a global title for your site, as specified in the config
- {{gallerytitle}} - the title of the current gallery. This is just taken from the folder name
- {{navigation}} - a nested html menu generated from the folder structure. Does not include wrapping ul tag so you can use your own id
- {{disqus_shortname}} - your disqus shortname, as specified in the config
- {{disqus_identifier}} - the disqus_identifier, which is just the relative path of the current gallery
post-template.html contains the html fragment for each individual image. It has access to the following built-in variables:
- {{imageurl}} - url of the directory which contains the image/video resources, relative to the current html file.
- For images, this folder will contain all the scaled versions of the images, where the file name is simply the width of the image - eg. 640.jpg
- For videos, this folder will contain scaled videos for each resolution and video codec. The naming convention here is size-codec.extension - eg. 640-h264.mp4
- For videos, this folder will additionally contain scaled images in the same nomenclature (eg. 640.jpg) to be used as posters prior to video load
- {{imagewidth}} - maximum width that the source image can be downscaled to
- {{imageheight}} - maximum height, based on aspect ratio and max width
- {{type}} - the type of media to display, this is a string that can either be "image" or "video"
- {{textcolor}} - color of the text, either extracted from the source image or specified in config
- {{backgroundcolor}} - background color, either extracted from the source image or specified in config
in addition to these, any variables specified in the YAML metadata of the post will also be available to the post template, eg:
---
mycustomvar: foo
---
this will cause {{mycustomvar}} to be replaced by "foo", in this particular post
Additional notes:
Specify default values, in case of unset template variables in the form {{foo:bar}} eg:
{{width:50}}
will set width to 50 if no specific value has been assigned to it by the time page generation has finished.
Any unused {{xxx}} variables that did not have defaults are removed from the generated page.
Any non-template files (css, images, javascript) in the theme directory are simply copied into the _site directory.
To avoid additional dependencies, the YAML parser and template engine is simply a sed regex. This means that YAML metadata must take the form of simple key:value pairs, and more complex liquid template syntax are not available.
Release files for dorothea 1.9.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| dorothea-1.9.1.tar.gz | 6.1 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| dorothea-1.9.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 6.3 MB
Release files / dorothea-1.9.1.tar.gz
| Download URL | dorothea-1.9.1.tar.gz |
|---|---|
| Size | 6.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
876457b6b06db2064c42b41ef6fc17bade6c2390771810f08f93565735e11f14
|
|
BLAKE2b-256 checksum How to use checksums |
59cb47fb730dd9f6e3df7aad36745e65f32243509315796082db4077c8fcde74
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / dorothea-1.9.1-py3-none-any.whl
| Download URL | dorothea-1.9.1-py3-none-any.whl |
|---|---|
| Size | 129.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d1d7606c01e955a88bba60623fd6ae1d527761101b432a64d4aa3c86d7fb9b87
|
|
BLAKE2b-256 checksum How to use checksums |
72ee33fb1aa5129046967a2e19fe2bea5c00236ef2bda18a7b53d2152cc27432
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|