Skip to main content

fotolab

A console program to manipulate photos.

Installation

Stable version From PyPI using uv:

uv tool install fotolab

Upgrade to latest stable version:

uv tool upgrade fotolab

Optional extra for faster black-bar detection in the crop subcommand (falls back to pixel sampling without it):

uv tool install "fotolab[numpy]"

Usage

fotolab -h
usage: fotolab [-h] [-o] [-q] [-v] [-d] [-V] [--dry-run]
               {animate,auto,border,bw,contrast,crop,env,halftone,info,montage,resize,rotate,sharpen,watermark} ...

A console program to manipulate photos.

website: https://github.com/kianmeng/fotolab
changelog: https://github.com/kianmeng/fotolab/blob/master/CHANGELOG.md
issues: https://github.com/kianmeng/fotolab/issues

positional arguments:
  {animate,auto,border,bw,contrast,crop,env,halftone,info,montage,resize,rotate,sharpen,watermark}
                    sub-command help
    animate         animate an image
    auto            auto adjust (resize, contrast, and watermark) a photo
    border          add border to image
    bw              apply a black and white filter effect to an image
    contrast        contrast an image.
    crop            crop an image
    env             print environment information for bug reporting
    halftone        halftone an image
    info            info an image
    montage         montage a list of image
    resize          resize an image
    rotate          rotate an image
    sharpen         sharpen an image
    watermark       watermark an image

options:
  -h, --help        show this help message and exit
  -o, --overwrite   overwrite existing image
  -q, --quiet       suppress all logging
  -v, --verbose     show verbosity of debugging log, use -vv, -vvv for more details
  -d, --debug       show debugging log and stacktrace
  -V, --version     show program's version number and exit
  --dry-run         print the output filenames without writing any files

fotolab animate

fotolab animate -h
usage: fotolab animate [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                       [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                       [-f FORMAT] [-d DURATION] [-l LOOP]
                       [--webp-quality QUALITY] [--webp-lossless]
                       [--webp-method METHOD]
                       IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -f, --format FORMAT   set the image format (default: 'gif')
  -d, --duration DURATION
                        set the duration in milliseconds (must be a positive
                        integer, default: '2500')
  -l, --loop LOOP       set the loop cycle (default: '0')
  --webp-quality QUALITY
                        set WEBP quality (0-100, default: '80')
  --webp-lossless       enable WEBP lossless compression (default: 'False')
  --webp-method METHOD  set WEBP encoding method (0=fast, 6=slow/best,
                        default: '4')

fotolab auto

fotolab auto -h
usage: fotolab auto [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                    [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                    [-t TITLE] [-w WATERMARK_TEXT]
                    IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -t, --title TITLE     set the title (default: 'None')
  -w, --watermark WATERMARK_TEXT
                        set the watermark (default: 'kianmeng.org')

fotolab border

fotolab border -h
usage: fotolab border [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                      [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                      [-c COLOR] [-w WIDTH] [-wt WIDTH] [-wr WIDTH]
                      [-wb WIDTH] [-wl WIDTH]
                      IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -c, --color COLOR     set the color of border (default: 'black')
  -w, --width WIDTH     set the width of border in pixels (default: '10')
  -wt, --width-top WIDTH
                        set the width of top border in pixels (default: '0')
  -wr, --width-right WIDTH
                        set the width of right border in pixels (default: '0')
  -wb, --width-bottom WIDTH
                        set the width of bottom border in pixels (default:
                        '0')
  -wl, --width-left WIDTH
                        set the width of left border in pixels (default: '0')

fotolab bw

fotolab bw -h
usage: fotolab bw [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                  [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                  [-f FILTER_TYPE | --all-filters] [--contrast CONTRAST]
                  [--brightness BRIGHTNESS] [--sharpen SHARPEN]
                  IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -f, --filter FILTER_TYPE
                        specify the black and white filter type to apply,
                        choices: DEEP_BLACK, TRUE_GRAY, SOFT_LIGHT, GRAIN
  --all-filters         apply all available filters to the image
  --contrast CONTRAST   apply a custom contrast factor (e.g., 1.5 for 50%
                        increase)
  --brightness BRIGHTNESS
                        apply a custom brightness factor (e.g., 1.1 for 10%
                        increase)
  --sharpen SHARPEN     apply a custom sharpen factor (e.g., 2.0 for double
                        sharpening)

fotolab contrast

fotolab contrast -h
usage: fotolab contrast [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                        [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                        [-c CUTOFF]
                        IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -c, --cutoff CUTOFF   set the percentage (0-50) of lightest or darkest
                        pixels to discard from histogram (default: '1.0')

fotolab crop

fotolab crop -h
usage: fotolab crop [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                    [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS] (-b BOX |
                    --auto-crop) [-t THRESHOLD]
                    IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -b, --box BOX         set the crop area as a 4-tuple (left, upper, right,
                        lower), e.g., '100,100,500,500'
  --auto-crop           automatically detect and crop black bars from all
                        sides
  -t, --threshold THRESHOLD
                        brightness threshold to detect black bars (default: 5)

fotolab halftone

fotolab halftone -h
usage: fotolab halftone [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                        [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS] [-ba]
                        [-c CELLS] [-g]
                        IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -ba, --before-after   generate a GIF showing before and after changes
  -c, --cells CELLS     set number of cells across the image width (default:
                        50)
  -g, --grayscale       convert image to grayscale before applying halftone

fotolab info

fotolab info -h
usage: fotolab info [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-s] [--camera]
                    [--datetime]
                    IMAGE_FILENAME

positional arguments:
  IMAGE_FILENAME   set the image filename

options:
  -h, --help       show this help message and exit
  -o, --overwrite  overwrite existing image
  -q, --quiet      suppress all logging
  -v, --verbose    show verbosity of debugging log, use -vv, -vvv for more
                   details
  --debug          show debugging log and stacktrace
  --dry-run        print the output filenames without writing any files
  -s, --sort       show image info by sorted field name
  --camera         show the camera maker details
  --datetime       show the datetime

fotolab rotate

fotolab rotate -h
usage: fotolab rotate [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                      [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                      [-r ROTATION] [-cw]
                      IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -r, --rotation ROTATION
                        Rotation angle in degrees (default: '0')
  -cw, --clockwise      Rotate clockwise (default: 'False')

fotolab montage

fotolab montage -h
usage: fotolab montage [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                       [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                       [-b BORDER] [-bc COLOR]
                       IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -b, --border BORDER   set the border width for each image (default: '0')
  -bc, --border-color COLOR
                        set the border color for each image (default: 'black')

fotolab resize

fotolab resize -h
usage: fotolab resize [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                      [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS] [-c]
                      [-l CANVAS_COLOR] [-W WIDTH] [-H HEIGHT]
                      [-ar ASPECT_RATIO]
                      IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -c, --canvas          paste image onto a larger canvas
  -l, --canvas-color CANVAS_COLOR
                        the color of the extended larger canvas(default:
                        'black')
  -W, --width WIDTH     set the width of the image
  -H, --height HEIGHT   set the height of the image
  -ar, --aspect-ratio ASPECT_RATIO
                        set the aspect ratio of the image (e.g., '16:9',
                        '4:3')

fotolab sharpen

fotolab sharpen -h
usage: fotolab sharpen [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                       [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                       [-r RADIUS] [-p PERCENT] [-t THRESHOLD] [-ba]
                       IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -r, --radius RADIUS   set the radius or size of edges (default: '1')
  -p, --percent PERCENT
                        set the amount of overall strength of sharpening
                        effect (default: '100')
  -t, --threshold THRESHOLD
                        set the minimum brightness changed to be sharpened
                        (default: '3')
  -ba, --before-after   generate a GIF showing before and after changes

fotolab watermark

fotolab watermark -h
usage: fotolab watermark [-h] [-o] [-q] [-v] [--debug] [--dry-run] [-op]
                         [-od OUTPUT_DIR] [-of OUTPUT_FILENAME] [-j JOBS]
                         [-t WATERMARK_TEXT]
                         [-p {top-left,top-center,top-right,left-center,center,right-center,bottom-left,bottom-center,bottom-right}]
                         [-pd PADDING] [--padding-x PADDING_X]
                         [--padding-y PADDING_Y] [-fs FONT_SIZE]
                         [-fc FONT_COLOR] [-ow OUTLINE_WIDTH]
                         [-oc OUTLINE_COLOR] [-a ALPHA_VALUE] [--camera]
                         [-l | --lowercase | --no-lowercase]
                         IMAGE_PATHS [IMAGE_PATHS ...]

positional arguments:
  IMAGE_PATHS           set the image filenames

options:
  -h, --help            show this help message and exit
  -o, --overwrite       overwrite existing image
  -q, --quiet           suppress all logging
  -v, --verbose         show verbosity of debugging log, use -vv, -vvv for
                        more details
  --debug               show debugging log and stacktrace
  --dry-run             print the output filenames without writing any files
  -op, --open           open the image using default program (default:
                        'False')
  -od, --output-dir OUTPUT_DIR
                        set default output folder (default: 'output')
  -of, --output-filename OUTPUT_FILENAME
                        set output filename (default: 'None')
  -j, --jobs JOBS       process images in parallel using the given number of
                        worker threads (default: '1')
  -t, --text WATERMARK_TEXT
                        set the watermark text (default: 'kianmeng.org')
  -p, --position {top-left,top-center,top-right,left-center,center,right-center,bottom-left,bottom-center,bottom-right}
                        set position of the watermark text (default: 'bottom-
                        left')
  -pd, --padding PADDING
                        set the padding of the watermark text relative to the
                        image (default: '15')
  --padding-x PADDING_X
                        set the horizontal padding of the watermark text
                        relative to the image (overrides --padding for x-axis)
  --padding-y PADDING_Y
                        set the vertical padding of the watermark text
                        relative to the image (overrides --padding for y-axis)
  -fs, --font-size FONT_SIZE
                        set the font size of watermark text (default: '12')
  -fc, --font-color FONT_COLOR
                        set the font color of watermark text (default:
                        'white')
  -ow, --outline-width OUTLINE_WIDTH
                        set the outline width of the watermark text (default:
                        '2')
  -oc, --outline-color OUTLINE_COLOR
                        set the outline color of the watermark text (default:
                        'black')
  -a, --alpha ALPHA_VALUE
                        set the transparency of the watermark text (0-255,
                        where 0 is fully transparent and 255 is fully opaque;
                        default: '128')
  --camera              use camera metadata as watermark
  -l, --lowercase, --no-lowercase
                        lowercase the watermark text

fotolab env

fotolab env -h
usage: fotolab env [-h] [-o] [-q] [-v] [--debug] [--dry-run]

options:
  -h, --help       show this help message and exit
  -o, --overwrite  overwrite existing image
  -q, --quiet      suppress all logging
  -v, --verbose    show verbosity of debugging log, use -vv, -vvv for more
                   details
  --debug          show debugging log and stacktrace
  --dry-run        print the output filenames without writing any files

Copyright and License

Copyright (C) 2024,2025,2026 Kian-Meng Ang

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.

The fish logo used in the documentation generated by Sphinx is a public domain drawing of male freshwater phase [Sockeye (red) salmon (Oncorhynchus nerka)] (https://en.wikipedia.org/w/index.php?oldid=1186575702) from https://commons.wikimedia.org/entity/M2787002.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fotolab-0.44.0.tar.gz (54.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fotolab-0.44.0-py3-none-any.whl (56.9 kB view details)

Uploaded Python 3

File details

Details for the file fotolab-0.44.0.tar.gz.

File metadata

  • Download URL: fotolab-0.44.0.tar.gz
  • Upload date:
  • Size: 54.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fotolab-0.44.0.tar.gz
Algorithm Hash digest
SHA256 7b044db5f91026767ddf5ff9daa6967963d9249115a9ab5800c9c32a0e491c44
MD5 f3680b7e1231cccc085c2aa8568abc53
BLAKE2b-256 799acdace3a37f630b7cf41819cc9228045e752bff88a61646d1fd01d7840285

See more details on using hashes here.

File details

Details for the file fotolab-0.44.0-py3-none-any.whl.

File metadata

  • Download URL: fotolab-0.44.0-py3-none-any.whl
  • Upload date:
  • Size: 56.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fotolab-0.44.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aca50018b48ac472175e9984a9d172011966e96215e4ea061c70a1690a6246fd
MD5 533a727ff40f6c9c8873be46bcdc6336
BLAKE2b-256 f175d5cfaa196be4b3e51846839c256e00d39c2d62eac4007ba261150d526b8c

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.44.0 This release

2 files

0.43.3

2 files

0.43.2

2 files

0.43.1

2 files

0.43.0

2 files

0.42.2

2 files

0.42.1

2 files

0.42.0

2 files

0.41.2

2 files

0.41.1

2 files

0.41.0

2 files

0.40.11

2 files

0.40.10

2 files

0.40.9

2 files

0.40.8

2 files

0.40.7

2 files

0.40.6

2 files

0.40.5

2 files

0.40.4

2 files

0.40.3

2 files

0.40.2

2 files

0.40.1

2 files

0.40.0

2 files

0.39.4

2 files

0.39.3

2 files

0.39.2

2 files

0.39.1

2 files

0.39.0

2 files

0.38.5

2 files

0.38.4

2 files

0.38.3

2 files

0.38.2

2 files

0.38.1

2 files

0.38.0

2 files

0.37.6

2 files

0.37.5

2 files

0.37.4

2 files

0.37.3

2 files

0.37.2

2 files

0.37.1

2 files

0.37.0

2 files

0.36.0

2 files

0.35.0

2 files

0.34.3

2 files

0.34.2

2 files

0.34.1

2 files

0.34.0

2 files

0.33.2

2 files

0.33.1

2 files

0.33.0

2 files

0.32.0

2 files

0.31.16

2 files

0.31.15

2 files

0.31.14

2 files

0.31.13

2 files

0.31.12

2 files

0.31.11

2 files

0.31.10

2 files

0.31.9

2 files

0.31.8

2 files

0.31.7

2 files

0.31.5

2 files

0.31.4

2 files

0.31.2

2 files

0.31.1

2 files

0.31.0

2 files

0.30.0

2 files

0.29.2

2 files

0.29.1

2 files

0.29.0

2 files

0.28.6

2 files

0.28.5

2 files

0.28.4

2 files

0.28.3

2 files

0.28.2

2 files

0.28.1

2 files

0.28.0

2 files

0.27.2

2 files

0.27.1

2 files

0.27.0

2 files

0.26.3

2 files

0.26.2

2 files

0.26.1

2 files

0.26.0

2 files

0.25.1

2 files

0.25.0

2 files

0.24.0

2 files

0.23.0

2 files

0.22.1

2 files

0.22.0

2 files

0.21.1

2 files

0.21.0

2 files

0.20.1

2 files

0.20.0

2 files

0.19.0

2 files

0.18.4

2 files

0.18.3

2 files

0.18.2

2 files

0.18.1

2 files

0.18.0

2 files

0.17.0

2 files

0.16.18

2 files

0.16.17

2 files

0.16.16

2 files

0.16.15

2 files

0.16.14

2 files

0.16.13

2 files

0.16.12

2 files

0.16.11

2 files

0.16.10

2 files

0.16.8

2 files

0.16.7

2 files

0.16.6

2 files

0.16.5

2 files

0.16.4

2 files

0.16.3

2 files

0.16.1

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.10.0

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 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