Skip to main content

ztensor

Read any tensor format, write canonical .zt.

pip install ztensor
import ztensor, torch

with ztensor.open("model.safetensors") as src:   # or open([shard1, shard2])
    for t in src:
        print(t.name, t.shape, t.dtype)

    t = src["model.layers.0.mlp.w"]
    w = torch.from_dlpack(t)      # zero-copy
    t.location                    # (path, offset, nbytes) for your own I/O
    t["scales"]                   # parts are tensors too

Reads .zt, .safetensors, .gguf, .npz, PyTorch .pt, HDF5 and ONNX, detected by magic. Writes exactly one format: canonical .zt, where every tensor starts on a 64 KiB page and carries an XXH3 digest.

No framework modules

Tensors export DLPack and the buffer protocol, so numpy, torch and jax read them zero-copy without this package knowing any of them exist:

numpy.from_dlpack(t)
torch.from_dlpack(t)
memoryview(t)

DLPack also carries bfloat16, which the numpy dtype table cannot, so the dtype most checkpoints are actually in survives the trip.

A zero-copy export keeps the mapping alive on its own: an array stays valid after the source it came from is closed.

It tells you what it can do

t.caps.map       # a zero-copy export will work
t.caps.locate    # .location gives the exact byte range
t.caps.evict     # its pages are its own
t.caps.verify    # there is a digest to check

Each is the precondition of the operation it names, so the report cannot disagree with the behaviour. When only metadata is wanted, ztensor.index() opens without mapping: names, shapes and addresses, for the cost of a header read.

Converting

ztensor.convert("model.safetensors", "model.zt")
ztensor.verify("model.zt", deep=True)      # (digest_verified, without_digests)

Conversion is the upgrade path: the foreign file has no digests and arbitrary alignment; the result has both.

The numpy shim

ztensor.numpy.load_file / save_file are a safetensors-shaped convenience layer, kept for code written against that API. New code should use the tensor handles above, which can say things a dict of arrays cannot.

Linux and macOS. MIT licensed. The format, the Rust crates and the specification live at github.com/pie-project/ztensor.

Download files

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

Source Distribution

ztensor-2.1.0.tar.gz (156.2 kB view details)

Uploaded Source

Built Distributions

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

ztensor-2.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ztensor-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ztensor-2.1.0-cp313-cp313-macosx_11_0_arm64.whl (930.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ztensor-2.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ztensor-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ztensor-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ztensor-2.1.0-cp312-cp312-macosx_11_0_arm64.whl (930.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ztensor-2.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ztensor-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ztensor-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ztensor-2.1.0-cp311-cp311-macosx_11_0_arm64.whl (931.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ztensor-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ztensor-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ztensor-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ztensor-2.1.0-cp310-cp310-macosx_11_0_arm64.whl (931.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ztensor-2.1.0-cp310-cp310-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ztensor-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ztensor-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ztensor-2.1.0-cp39-cp39-macosx_11_0_arm64.whl (933.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ztensor-2.1.0-cp39-cp39-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file ztensor-2.1.0.tar.gz.

File metadata

  • Download URL: ztensor-2.1.0.tar.gz
  • Upload date:
  • Size: 156.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ztensor-2.1.0.tar.gz
Algorithm Hash digest
SHA256 1e168f684a97e36b34fc352cc2006b9db7797f702fb959814791fa3484605468
MD5 dfdfd5cbbda4f09b92488bbdd143cdbd
BLAKE2b-256 7ea81ec0c6b13c60680bc2a3dbcfff853fcd708d4085875686ca267d143aea43

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0.tar.gz:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f4dc85ef008bbf6c0962b723bb8012cff63242b04828fb862040c4c428f55da
MD5 3c638f51fd2ead5d5b31d0c600765d07
BLAKE2b-256 df1ba01572371e905225cddb452697c7758b731320d072bcf9fb461542b9f898

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b63e04f51043b3928750bdf80ef54a3735ac077072328f00f1d75254cc9a6f5f
MD5 c3ac0926c7625263db5abcc6e2465c91
BLAKE2b-256 961e02d5275129d34478c2b030b5cce59b33c1f96a6fa08401316597b381ce3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c18e1d1e15ebe6f2460318c7dae233769afc2c9f4079bac2d075877873a429e
MD5 37f12e9ff55286ba258c67358e6f7a94
BLAKE2b-256 8df2f4418b3b9f99cbfd8441f41380ef3236d1b57fbc8c4aa921a806897cc267

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7a70eca8cfec705453e9f3a29245042bab6a87db39ebac9016bca2d9ab283a5
MD5 03ad5e83a7868090d90c48d784f46ea5
BLAKE2b-256 270dded086f15a5426eb4c8393207688c17da5b120bfea5d28d0d34c41f20e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64674cdf2d7be6a245addcc677aa03feb53a8b7d87fe2d45d61775f178690f90
MD5 da0c4dbbe03d5eb7cc9c553b7c2a2739
BLAKE2b-256 d785cfae572ea6afe24e6ada50fc3d44315f5a48f227d7ad74630e56b0250291

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7331e36dff880529a8975201f26fd868efb69310bd65da81e08907a19dc778e0
MD5 d0eee079705fbc49e2eddbfd3464f56f
BLAKE2b-256 68eeb33db4c61a0e2a4493ce17ba9d04d28364c52c02591d90f6d1c15bd63120

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f753751ee13fb2978435fbd620cb74e2d1e6787de965bc22a7abfd71fcdc8f4d
MD5 8899582e0b72e85142355fc191056c8d
BLAKE2b-256 875b4e6ffa20c8e1adee8f1fe9de42417b1b416faab03b6d1602b2b7bce3a4eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4045fa543fffb0abb0b4442cb8ec9290cdb78a2cdd06bef12857cd3011186eb
MD5 edc47d02c662a409b8fec8ed946bf2a3
BLAKE2b-256 f84c5506ac0cc92b1e7afb24633ae2ea8f91049189cf443f3a4e75f56b125a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7096c0f5f0b013712ea80bb24f80577a5ace9e66a0e651134b689b023d4b4f5d
MD5 198b9d5ee2e71bad5b9d7c8589658dd9
BLAKE2b-256 b0a54904c490bb9b4cc7f6936a72a7e6368f41ab5c3bb221c0871b92d0793d71

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1ea71dd4c138801955517a4599b9955ac9f777010f97a7ce3539225932f7e6e
MD5 2853c184aa19ee7bb4154ebf261f9fcb
BLAKE2b-256 310f07473ca014aeebec47838695620718b5b09aa358129b4d71d23a361d7760

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22ab089f880d0d109e29f5a732d9eb358e7b85d51d7134bdd3ad5ede869322a4
MD5 105406bdc1ecc3ad24fda87d76c1f872
BLAKE2b-256 40252df66c525197103cb963aea386861f53f1b279a11c87fdf2ba1eeae46301

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fe76d3dd879d81483ac92126d67aed2c4f55e8e8af4f0ec9d2d99e642ee1c95
MD5 8e48b2c281acb3f72840296c9e0b815e
BLAKE2b-256 2edfd9a22d3ccf5764d2ea210adcc1fc8fba415711376f9904b9f5f4f1feb65f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ac856739f1206ed1266e1a546825081456d5a184e09275819d21faf44c0f64
MD5 34bd88d284838e369f19e2aaa3fd2ad5
BLAKE2b-256 5f3e2f4124d82b07a5d9f2b222cc1486a262ad175efed9bcdad2341ed98d7c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65dfa8f96ade4f66b615cfcdec63c80ba0963cd6cffc18ebda29c10fc2f85d01
MD5 a09de828ad9c6accb96566c28226dd74
BLAKE2b-256 0d4fe20e5ddc1a296c16a4de67222a945442f5cec03e175eee486285c4468d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6287dc33f7e292494216f0ed0f6a96093838c68055dc2bdd67b6348246a1c3b4
MD5 52b72ece82f1dd78a92fe00956f6ad90
BLAKE2b-256 d4b0ab4872c8640825849aeafb96aa734cc5b23acf97229b41ada1a5d7547289

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 058be4b10610066c783994a0952209b8f2f775452a31af2a98dcaf8faae6cdf1
MD5 4ca07f08530e487a771bca5e35b1af30
BLAKE2b-256 e5217bb99da3f88c776ca72a55eab60a9392675d3a4ee6ad044ab7598c61a9f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 396211364b40f67669c8956b6438cfd8625f2a1340b91e9c87787fd932db21ad
MD5 b2ece657e833ae11fd0d6f5958de2c66
BLAKE2b-256 045dd1bb00f637add364b9ebcf4f8fdb50a268aee7eaeb29c77119925bcd3929

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb19ae28d55d543d74863cc60cfaab2b6fb454ae06417039cec8c6a724152e14
MD5 334050ac6ec048eed196f936fbedbd6b
BLAKE2b-256 3af4e6c749d0a6fcca1ee731fce4d48520397d7bbc096b4b9ca9d9a44e9328c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13b40f5141815173325bac5f6bfb2b9de8c70004a93b31712b04bc25a6306f2a
MD5 20a9c18c774b662e9b273bbeb03bc163
BLAKE2b-256 112a6101d0034f316de8bf07a1ab5999f76ea8dec6b7ab8e0afc18d358a76b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ztensor-2.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-2.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13e6f38a27ddd98ca65c5a4d0661534e885ded9fc4aaf524e483e32c329e8e51
MD5 52cf69e8fb8b986384b118d65259d0b0
BLAKE2b-256 f3f1216d61f4134b202e1f38a133dfb8a00e3575f94cc55c5601ef41f1e2d098

See more details on using hashes here.

Provenance

The following attestation bundles were made for ztensor-2.1.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on pie-project/ztensor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.1.2

21 files

2.1.1

21 files

This release

2.1.0 This release

21 files

2.0.0

21 files

1.2.3

34 files

1.2.2

34 files

1.2.1

34 files

1.2.0

34 files

1.1.1

14 files

1.0.2

14 files

1.0.1

14 files

1.0.0

14 files

0.1.4

15 files

0.1.2

15 files

0.1.1

15 files

0.1.0

15 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