Skip to main content

Dorothea

A simple static site generator for photo essays. Dorothea is a Python port of Jack Qiao's Exposé (expose.sh): same themes, same output, no system dependencies.

Intro

If you're into photography, you probably have folders of images and videos like this:

a bunch of images

Dorothea turns those images and videos into a photo essay similar to jack.ventures or jack.works (Jack Qiao's blogs, made with the original Exposé).

If you're not a fan of that look, a Medium-style theme is included.

Runs on Linux and macOS with Python 3.14+.

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

Everything it needs, including an ffmpeg binary, comes with the package; no system packages are required. A system ffmpeg on your PATH is used in preference to the bundled one. ImageMagick is optional: when installed it's used for colour extraction and for per-image image-options.

Before the first PyPI release, run it straight from GitHub:

uvx --from git+https://github.com/marcolussetti/dorothea dorothea

Basic usage

cd ~/folderofimages
dorothea

The command is also available as expose, for anyone coming from expose.sh.

The script operates on your current working directory, and outputs a _site directory.

Configuration

Site title, theme, jpeg quality and other config values go in a _config.json in the top level of your project, eg:

{
  "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.

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.

Adding text

The text associated with each image is read from any text file with the same filename as the image, eg:

images and text files

Sorting

Images are sorted by alphabetical order. To arbitrarily order images, add a numerical prefix

Organization

You can put images in folders to organize them. The folders can be nested any number of times, and are also sorted alphabetically. The folder structure is used to generate a nested html menu.

To arbitrarily order folders, add a numerical prefix to the folder name. Any numerical prefixes are stripped from the url.

Any folders, images or videos with an "_" prefix are ignored and excluded from the build.

folders

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
---

content dimensions

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.

content polygon

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:

image 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

image grid

This sets all image widths to form a grid. Metadata file parameters are overriden by metadata in individual posts.

Advanced usage

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

3d LUT

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.

Image sequence

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.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for dorothea 1.9.0
File Size Uploaded
dorothea-1.9.0.tar.gz 172.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for dorothea 1.9.0
File Interpreter ABI Platform
dorothea-1.9.0-py3-none-any.whl Python 3 none any Details

Total release size: 300.9 kB

Release files / dorothea-1.9.0.tar.gz

Download URL dorothea-1.9.0.tar.gz
Size 172.0 kB
Tags Source
SHA-256 checksum
How to use checksums
6700066f5a33bed777821fdd105159131f0e00ab9733b2576d67cbbfdfa9c8a7
BLAKE2b-256 checksum
How to use checksums
dc98f67d3295f7fa3f2d1111a49843ba62f416c9cf3f91189488c9a21678f1e6
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.0-py3-none-any.whl

Download URL dorothea-1.9.0-py3-none-any.whl
Size 128.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
eda19c52a799a9550511bc25549d72d28e37d134df59ced5e0be137c5d988145
BLAKE2b-256 checksum
How to use checksums
94f581050ee3af0fc9dc58f48442af8a49e9cc50b18422b998f7aa7e397a8265
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 history Release notifications | RSS feed

1.9.2

2 release files

1.9.1

2 release files

This release

1.9.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page