Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Flatrtree - Python

Flatrtree is a serialization format and set of libraries for reading and writing R-trees. It's directly inspired by Flatbush and FlatGeobuf, and aims to make tiny, portable R-trees accessible in new contexts.

  • Store R-trees to disk or transport them over a network.
  • Build R-trees in one language and query them in another.
  • Query R-trees before reading the data they index.

Installation

$ pip install flatrtree

Flatrtree requires Python 3.9 or newer. Prebuilt Linux wheels target glibc 2.28+ (manylinux_2_28) or musl 1.2+ and are published for x86-64 and ARM64 only. Windows wheels are 64-bit only, and PyPy wheels are built for PyPy 3.11 only. On other systems, pip builds Flatrtree from source, which requires a C and C++ compiler and the Python development headers (commonly packaged as python3-dev or python3-devel).

Usage

Flatrtree separates building and querying behavior. The builder doesn’t know how to query an index and the index doesn’t know how it was built. This is inspired by FlatBuffers.

import flatrtree

# Add items to a builder object
builder = flatrtree.HilbertBuilder() # or OMTBuilder or your own
for i, item in enumerate(items):
    # The first argument is an integer reference to the item being indexed
    builder.add(i, item.minx, item.miny, item.maxx, item.maxy)

degree = 10 # node capacity

# Create an R-tree object from the builder
rtree = builder.finish(degree)

# Search for items that intersect a bounding box
for i in rtree.search(minx, miny, maxx, maxy):
    item = items[i]
    # ...

# Supply a function for calculating the distance between bounding boxes
# Planar and geodetic functions are included in the library
box_dist = flatrtree.planar_box_dist

# Find the nearest neighbors with a custom halt condition
for i, dist in rtree.neighbors(x, y, box_dist):
    if dist > maxDist:
        break
    item = item[i]
    dist # units match the given box distance function

Serialization

Flatrtree uses protocol buffers for serialization, taking advantage of varint encoding to reduce the output size in bytes. There are many tradeoffs to explore for serialization and this seems like a good place to start. It wouldn’t be hard to roll your own format with something like FlatBuffers if that better fit your needs.

# Specify the level of decimal precision you need.
# The output size will decrease as precision decreases.
precision = 7

# Serialize to bytes for storage and/or transport.
data = flatrtree.serialize(rtree, precision)

# Load the R-tree from bytes.
rtree = flatrtree.deserialize(data)

Example Usage

This example builds an R-tree from a newline-delimited GeoJSON file and stores it to disk. The R-tree holds the offset of each feature from the beginning of the file.

import json
import flatrtree
from shapely.geometry import shape

builder = flatrtree.HilbertBuilder()

with open("us-block-groups.json") as f:
    pos = f.tell()
    line = f.readline()

    while line:
        feature = json.loads(line)
        geom = shape(feature["geometry"])
        minx, miny, maxx, maxy = geom.bounds

        builder.add(pos, minx, miny, maxx, maxy)

        pos = f.tell()
        line = f.readline()


rtree = builder.finish(flatrtree.DEFAULT_DEGREE)

with open("us-block-groups.json.idx", "wb") as f:
    f.write(flatrtree.serialize(rtree, precision=6))

The next example reads the R-tree from disk and searches by a bounding box to find the relevant features. By seeking directly to the GeoJSON features returned by the search, we only read and parse the required data.

import json
import flatrtree

with open("us-block-groups.json.idx", "rb") as f:
    rtree = flatrtree.deserialize(f.read())

results = []
with open("tests/us-block-groups.json") as f:
    minx, miny, maxx, maxy = -96.985931, 32.630123, -96.571198, 32.914180
    for pos in rtree.search(minx, miny, maxx, maxy):
        f.seek(pos)
        feature = json.loads(f.readline())
        results.append(feature)

The next example finds all neighbors with bounds intersecting a radius of the given point.

import json
import flatrtree

with open("us-block-groups.json.idx", "rb") as f:
    rtree = flatrtree.deserialize(f.read())

neighbors = []
with open("us-block-groups.json") as f:
    x, y = -96.985931, 32.630123
    for pos, meters in rtree.neighbors(x, y, flatrtree.geodetic_box_dist):
        if meters > 500:
            break
        f.seek(pos)
        feature = json.loads(f.readline())
        neighbors.append(feature)

Release files for flatrtree 1.0.0rc3

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

Source distribution (sdist)

Source distribution for flatrtree 1.0.0rc3
File Size Uploaded
flatrtree-1.0.0rc3.tar.gz 250.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for flatrtree 1.0.0rc3
File
flatrtree-1.0.0rc3-pp311-pypy311_pp73-win_amd64.whl PyPy 3.11 PyPy 3.11 7.3 Windows x86-64 Details
flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64 Details
flatrtree-1.0.0rc3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
flatrtree-1.0.0rc3-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
flatrtree-1.0.0rc3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
flatrtree-1.0.0rc3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
flatrtree-1.0.0rc3-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
flatrtree-1.0.0rc3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
flatrtree-1.0.0rc3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
flatrtree-1.0.0rc3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
flatrtree-1.0.0rc3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
flatrtree-1.0.0rc3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
flatrtree-1.0.0rc3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
flatrtree-1.0.0rc3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
flatrtree-1.0.0rc3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
flatrtree-1.0.0rc3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
flatrtree-1.0.0rc3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
flatrtree-1.0.0rc3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
flatrtree-1.0.0rc3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
flatrtree-1.0.0rc3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
flatrtree-1.0.0rc3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size:40.1 MB

Release files / flatrtree-1.0.0rc3.tar.gz

Download URL flatrtree-1.0.0rc3.tar.gz
Size 250.0 kB
Tags Source
SHA-256 checksum
How to use checksums
11efba5b0b189fc2d284f8badc0511717499e45124807f9389eabf221b3aef8c
BLAKE2b-256 checksum
How to use checksums
4243af9dfb3c5a668b3c8e1f52e6832a35be59d2438a124181a5773bf56633da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-pp311-pypy311_pp73-win_amd64.whl

Download URL flatrtree-1.0.0rc3-pp311-pypy311_pp73-win_amd64.whl
Size 294.9 kB
Tags PyPy 3.11 PyPy 3.11 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
d05dc680916abcfe3945c561e6ed520dd71c115d211197f4e2c6c041aaebbac1
BLAKE2b-256 checksum
How to use checksums
8e664cdd669090534c1ff935f2286982f1bf14950511c49afd5716908ce59ff0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 112.3 kB
Tags Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ee803a340fe36c6b8a4c93b2ab0ca4691392f98f6962c4e6a7db9d4b46281b09
BLAKE2b-256 checksum
How to use checksums
aa46962515cf7fcd2dcff43ed18bd3417bf063e344d5d9cfa68848d849754f7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 108.9 kB
Tags Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
3b726c5f11e6162ed9b72a3307ce53e7aa7629af91b7f18bb05801425540b0c9
BLAKE2b-256 checksum
How to use checksums
34a7205816434a1c87c9f29e46c4612c510bd29abea543150293bc9a367c6603
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 96.9 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f1761095e5ec461e94455a34b2a6371a8f3a9ef41fe591ec14fbe4c7ffa7c4fe
BLAKE2b-256 checksum
How to use checksums
62bba7c5bb908a5a8305f492b49ac9f3fa76f3c760a43994c4277c0fa7c76b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl

Download URL flatrtree-1.0.0rc3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Size 97.6 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
dda988cbafccc8bb4d07478ad1838b6b8792c0c34bd2988b2226766f8eaddc94
BLAKE2b-256 checksum
How to use checksums
14fed39df97a99d3796ee5e09393af6dba027a07773759b98b731c311579515e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-win_amd64.whl
Size 342.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
db4caf93bb21761be1c1680513a30a0d991cdd129723e941daca1e5d441f3556
BLAKE2b-256 checksum
How to use checksums
50c72407480d19801fe5f41e2b768024e02c9a166407463c07f9e9c797a6c424
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-win32.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-win32.whl
Size 331.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
12b27049c1006598dbd018b7146acc0138dc103be13609eb61c8b89a78bba989
BLAKE2b-256 checksum
How to use checksums
59d39005927ef089ef05d77e42b5ebae42024f00ebafa31f96b44c03e7654ac3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fbff27a3a8ae3e55836c0fc1714be8d8382cebd0f152bea310f24bbf8d65c96c
BLAKE2b-256 checksum
How to use checksums
4f70389d57cd0caef72ffb8c27b7fa910d4647d5820baec729dee5b9139d39ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
61e506c72d380a102d4cc55c74481f17152bfd66fb6f5edd60498179f4322875
BLAKE2b-256 checksum
How to use checksums
0cc2d1058a7aca9872ba4d2b6deb2acfde35593d905bbb588ccaac82a2a6b8c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 885.5 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e64861287e0f02d5a12cb4dbac74000c0333de45fba6544e8e3bfc281bee9dc9
BLAKE2b-256 checksum
How to use checksums
71238a8a9069f18d79b12a0ca4ae3a0a2bc388917cb57f0ed5ff69fe4a963267
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 865.6 kB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9a726f4f24808876daf5bd18f0357ef5ba6811f6117ba12dbff9394a702e6c46
BLAKE2b-256 checksum
How to use checksums
e93e7725d049daaced0c7338988c53f0af1a95b6fb4fb57010c76b2206eb686f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-macosx_11_0_arm64.whl
Size 194.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5ef544231c4a38096ba2357b953e9b4832d6baa4ff7bd4148385541be99ffe5d
BLAKE2b-256 checksum
How to use checksums
7943394b53c5f6961f6b20e5eef2dffbed656d5df1726d62fbf04efdc3072e4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp314-cp314-macosx_10_15_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp314-cp314-macosx_10_15_x86_64.whl
Size 195.9 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2e12ac43b223dda74993ed17252e9120dad1612f35f9dbc8e27646dceccd3755
BLAKE2b-256 checksum
How to use checksums
204c56a32bb949eb1618ecbcf32efc6a7fb59acdf552701798ab233b5e7d5011
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-win_amd64.whl
Size 332.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
1245a1d92906ef0234bb9c71b75c2bbb0c180ab1fcf7e86b5dadff05d6a703d5
BLAKE2b-256 checksum
How to use checksums
be29900b5ff8a4f9b6d6d024b27f4d56151944fa2506f5b56117e12258f792d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-win32.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-win32.whl
Size 322.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
55b7ee88f37dfff3a4e19e9901600d30b3a7f63b63cb8272025245c63fd1870f
BLAKE2b-256 checksum
How to use checksums
a1647267e152a38918ecf62d76566660b9ffb055a522e27e33cf20516f384b59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
294b81fa9281138989bdb31f77d63f8da1ea12a0b287076ca17d6d319e5e9ba8
BLAKE2b-256 checksum
How to use checksums
b73321566ce321a0b5b9c55ce34014107911bcd9883cc65fe9219504199a2b39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3ba9cc4ff41aee42b9a3ed38c5fb7370deb202b0e6ca63e1f4b3a250fa42500f
BLAKE2b-256 checksum
How to use checksums
e85c35694da581e32b66e9e3bfcc5a7212eb9d9a322e27876e923a1f233c83ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 891.4 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b83c1bcfc1aa8d1686b9d7fa4c2c64136121b616f0da16c2a872786b1f4e0fd7
BLAKE2b-256 checksum
How to use checksums
9fe8ec99e2de68eacc170ec742e413c868ae5b199eb473eb344391912571aa9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 866.5 kB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4d1f128bf94d4a46b210d4612225ae1d6e310ff2ab3b960a5a0242e292a5a30d
BLAKE2b-256 checksum
How to use checksums
1d57e2cf2d6fa47dcaff6ea6fcfdc41cb5f7540fee001b49631769665a494e9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-macosx_11_0_arm64.whl
Size 193.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
decc88032af187535e71fa2d301bf8b96d80cb5d4200f37cdd13dbcd491dd88c
BLAKE2b-256 checksum
How to use checksums
aeafd54e5c53dd74e02159afbaebb8c1a15c34bcc04d4267b3d69c3cc3acf534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp313-cp313-macosx_10_13_x86_64.whl
Size 195.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d4410af9bbfc011cc1c4ddef5385a7a947f957815ba51b7ed1081b60769fdfc8
BLAKE2b-256 checksum
How to use checksums
0c0ba017486b31d72c5f7fbecc92e52c0b97446dcb1f1b565c4e5fb8f7913586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-win_amd64.whl
Size 335.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f2f440e6105ecd45596d14835a29788c59ad24581ef3612c87ddfc54e60b761f
BLAKE2b-256 checksum
How to use checksums
51aed1e7bea5bf0fadac7ba861f6bcc792f4eb304db870854aaea551512baf2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-win32.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-win32.whl
Size 323.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
1e0e6830b86c6de88232486ea1c73e06dcd9d5d48769b5b1c4a3f4bb8ceb4dac
BLAKE2b-256 checksum
How to use checksums
e675b8113ccd1ca84af5c095ac648e1ed5721c33c2715301f5796759cca6a5d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
88031abb3481bd924921c7976bf996a9606f3e11b04f176df344fc2b3195f658
BLAKE2b-256 checksum
How to use checksums
d772f99f2bb015d68105bcc3039fe8163abfb438b9a3625b9a97e9b751f1e8b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b5b9582480dedaf915f0d530a83f5320432305526a1485655768843eadbecd42
BLAKE2b-256 checksum
How to use checksums
abdaace1f1efc6700f04db212cbe5a4939c18513e5dba1941bc4d89122c6c2a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 912.6 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
50b3643d3f95a83c6801ee45a50389c51b6ac98ea5981da14184d34cc8db6df1
BLAKE2b-256 checksum
How to use checksums
f2b8165fe1c4edfdbf8fb7fa7c77f0d54957b944a0e29afb79a2b8fc673c5946
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 889.8 kB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
33c447c39f8f1c81e4594c6cdc01723885c76500ed6879359f2d0f854deca3b2
BLAKE2b-256 checksum
How to use checksums
beb778d2c79dcacd74283769a54ffd75b3008c4bdf417df4bba3eff6ad647270
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-macosx_11_0_arm64.whl
Size 196.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
34d7c824133cb71e4701d782755f4c28efecacc1e76b807e77fe1199bd7849b7
BLAKE2b-256 checksum
How to use checksums
40f631ccb693680708badeb29e465351e8e2f2724f6c451ad48ca3f8097d974d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp312-cp312-macosx_10_13_x86_64.whl
Size 199.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
40c5e81ea81b4078b25fde67e5b0adc96f052815f682f7655839a690f91b230a
BLAKE2b-256 checksum
How to use checksums
25f569bbf6d5a034c324ebbfa8791f2a1ea0b36410146c164d30e47b52625e81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-win_amd64.whl
Size 333.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6e8e9589cb735274add8ed5329c7d765357140f3028e54ac9ed5e9171cc05597
BLAKE2b-256 checksum
How to use checksums
900f0064f651f2272e8ccc15402e41368d7c3d88f9ac3f88d9bc1374a04b043c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-win32.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-win32.whl
Size 322.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
9217bbea7c51a1ff135f33ffeada4a767ac47d6c3fbc3bcaaeb8704238cc32f5
BLAKE2b-256 checksum
How to use checksums
3be24b287cf03a18383a35adac2500f71654ff1fdbe511aca466badab31b774e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
efc953d3fa563ced41c2a9383261af1567c1074cb8026a1a42d78d36038bffeb
BLAKE2b-256 checksum
How to use checksums
682f366d09e79fe4341f178b87868c4c99baff9f870bb9650eb1b64d4cdbd90c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
447cd934178a9d83e969664f2bbb1822e4351237d359acd33d29fc31130f6dd5
BLAKE2b-256 checksum
How to use checksums
1384bbfb1b22dce672906e386a7c309ca559bb93ebcef6f87ca379b75c0deed6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 881.7 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
50c33716fabd062aeebde9e6cc7754c701c7784b00e62f8e775a8421a7c48171
BLAKE2b-256 checksum
How to use checksums
72b58723337f8b522af58020837049b427dadc6bb4229fb498b60279b664c6a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 865.9 kB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
03191e585b1941de430c1ba1cadda24b866e3e019baf6d57ef6c90c6cfc58aef
BLAKE2b-256 checksum
How to use checksums
27cc74be16fc4c3f922f52a3397482d8e5b3a532ccd4648172f6745ae200a44a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Size 195.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
848bbd5b023e4f024e8df66f8e17144425c8097faaead0bbff8cf101f838ca15
BLAKE2b-256 checksum
How to use checksums
27838c4be8623f630fc94bb8732d47e103552a0c52ae05ab31a20f3c2e46282a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp311-cp311-macosx_10_9_x86_64.whl
Size 196.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
04766811d5acdc39493229b88234ab6c6b910f787ee1c3a5f717190537e0b7a4
BLAKE2b-256 checksum
How to use checksums
768076a8f2bae800b2e2ba3119fc0ef107d62668c9e35ba1ecf2ffb55c6b6c4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-win_amd64.whl
Size 334.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5ac5060c53339a3e2a2e3a862170c1ffb130b52019115f3c83bdeb2520f2d8bc
BLAKE2b-256 checksum
How to use checksums
1c57b361cf0e3a241453e604992623c643cf72adf27194b7919b8e52bd5b4fe3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-win32.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-win32.whl
Size 324.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
819a26914450e458e9e50d515b507e5749f2f89b558b6d57fbd13ecd470d228e
BLAKE2b-256 checksum
How to use checksums
ea0678a4e0c5461352b03cb5f0a3e0da84ad5fe0b522d2fd2068ebd069a0c27d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
feb3bace3b6c7883aac8f2b938abbee86ea4edfe0b88f89b52995dfd7a4f9247
BLAKE2b-256 checksum
How to use checksums
9ed0e402740fbc2ccd03b1c47a143cd51f0876fc139c5a84462e107fd43705d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f4de5af846f7589c73c21f40893b0926ea32f30632099645e15755c70c7756b3
BLAKE2b-256 checksum
How to use checksums
a87eb5050081486bca7b9489bff020da0a18ce1bc4c530522f5e91e7833126af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 852.4 kB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0096e3774de3d7f175c4ab9b9fbf802b18e260f9eb4b652f8732a1d3e0dfc524
BLAKE2b-256 checksum
How to use checksums
459889e796cb0ba1e6733581f48439bb109be4d75813270aca7f15249a4f8725
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 836.6 kB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4bd4e037103d2f0d90befff46751722606013200251cc55a543854b7dcfebbfe
BLAKE2b-256 checksum
How to use checksums
2fade72b1096b9a331682be242d943541748ea47f0bcb4875bb968f6cfcafa8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-macosx_11_0_arm64.whl
Size 197.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e6ac9200443d3a9aa51ac5b37a5cd31dbc75809e130f24b5ac01590aeddb15ea
BLAKE2b-256 checksum
How to use checksums
0405205d0521cc3140e4fd72964553ddfb3b831b6826cf1326a321045cb88cd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp310-cp310-macosx_10_9_x86_64.whl
Size 198.9 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1560d76d39a79a85f1aa7772d4018e7e8c656967ccc5f3c6a8247dffeac914a3
BLAKE2b-256 checksum
How to use checksums
1b60eebd973db25d07ef92a57f245e343be48ca1a54edd33997b74503e07615f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-win_amd64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-win_amd64.whl
Size 331.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
439791a61f5c71316f871eeecff03759c2a65f9d93b2e526ade6cecb23fa6169
BLAKE2b-256 checksum
How to use checksums
702f2824ee2caf2c1be70e666c508fa4d7878e76d57815c0260857f2ef15bd27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-win32.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-win32.whl
Size 321.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
2290bb904c811e62e9add42397d9bdce92968c574264c63c7d047b5453fcd551
BLAKE2b-256 checksum
How to use checksums
c6b85c4393fe34944779454d04bae9cc985e4c3dc55fac3fa04bcfc3e3369935
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b7a98370fa059f46daa786520a36996e03a6b44bf340f91bb362705185dd66bb
BLAKE2b-256 checksum
How to use checksums
feffab002f875a372a5725ec918da3486912921a886cb48a70ee7a119f461c9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6f4cbe88d607af75e782660fe3c48a959dcacacedfaeeab933d0b4838f576dea
BLAKE2b-256 checksum
How to use checksums
2421dd43d59e812dba50bf255a79a775e68f5e6e4e6e2b22a78b238666a64933
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 834.0 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ea4b8cd4f9c40c2b0f2418d24d4a631d052d2e4a6676c06210e4a7e90648dec5
BLAKE2b-256 checksum
How to use checksums
f3d6692a8248eddfbb7f0aeffc078908a458e3e1310006e52a9479937af41fa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 819.0 kB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c6c5cd7a20ae15c4988cfe75715694be7e2ae10a34a0f4f81e5d9a142818583f
BLAKE2b-256 checksum
How to use checksums
9b7da2bd1aac418f488b96d360621b35a88ca3e39d6dab813492cef99c23023d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-macosx_11_0_arm64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-macosx_11_0_arm64.whl
Size 190.1 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8e6c8285d0539a4c52139f528fa05ef3dc6666efb438fb6a9655566da79d211f
BLAKE2b-256 checksum
How to use checksums
4a6b830b7d3dcdf796515690c71533942d55b48597e93de8910a6e21b8d3c81b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

Transparency log

Release files / flatrtree-1.0.0rc3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL flatrtree-1.0.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Size 190.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
182745d2ae52e7ded533f998bb041de79d55fc917d62ab351ec49755aea87550
BLAKE2b-256 checksum
How to use checksums
680d962510d5ee05e03a975a0c0a6cb1dacf16efbad4935fe365b2973755b3ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 1, 2026.

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