Skip to main content

rainbow

PyPI Documentation Status PyPI - Downloads

rainbow provides programmatic access to the raw data encoded in chromatography and mass spectrometry binary files. This library supports the following vendors and detectors:

Container File Data Parse with
Agilent .D .uv UV spectrum (supports incomplete files)
.ch UV, FID, CAD, and ELSD channels
.ms MS (supports incomplete files)
MSProfile.bin HRMS and ICP-MS profile spectrum hrms=True
MSPeak.bin centroid (peak-picked) spectrum centroid=True
Agilent .dx (OpenLab CDS) .UV DAD spectrum
.CH single-wavelength UV/DAD signals
.IT instrument telemetry, as analog data telemetry=True
Waters .raw CHRO CAD and ELSD, plus miscellaneous analog data
FUNC UV and MS

There is documentation for rainbow that also details the structure of each binary file format.

Installation

pip install rainbow-api

Prebuilt wheels include an optional compiled accelerator (see Performance); installation never requires a compiler, and rainbow works the same with or without it.

Usage

The easiest way to get started is to give rainbow a directory path. Assume that we have a directory mydata.D that contains a binary file DAD1.uv with UV data.

import rainbow as rb
datadir = rb.read("mydata.D")
datafile = datadir.get_file("DAD1A.uv")

Here, the datadir DataDirectory object contains a DataFile object for DAD1A.uv.

rainbow normally infers the vendor from the path suffix (.D/.dx for Agilent, .raw for Waters). A directory whose name lacks that suffix is identified from its contents instead, so renamed datasets still parse. To force a parser explicitly, pass format:

datadir = rb.read("Noscapine 3", format="waters")

The raw UV data is contained in numpy arrays that are attributes of datafile. Users may find the following particularly useful:

  • datafile.xlabels - 1D numpy array with retention times
  • datafile.ylabels - 1D numpy array with wavelengths
  • datafile.data - 2D numpy array with absorbances

There is a tutorial available. There are also example snippets for basic tasks. Or just check out the full API.

Performance

A few inherently-sequential decode loops are sped up by optional compiled (Cython) extensions: roughly 100x faster, bit-identical, with a transparent pure-Python fallback when no compiler is available (prebuilt PyPI wheels include them). See the Performance page in the documentation for the optimization strategies behind rainbow and the considerations for adding a new format.

Contents

  • rainbow/ contains the code of the Python library.
  • docs/ contains code for generating documentation. To build documentation locally, you will need to install the sphinx and sphinx-rtd-theme packages. Then, move to the docs/ directory and run make html. The docpages will be generated under docs/_build.
  • tests/ contains unit tests for the library. These can be run with pytest from the repository root (install the test dependency with pip install -e .[test]).

For development, an editable install (pip install -e .) compiles the optional accelerator in place if a C compiler and Cython are available; otherwise the pure-Python fallback is used. The parity between the two paths is checked by tests/test_accelerator.py.

Download files

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

Source Distribution

rainbow_api-1.4.0.tar.gz (93.2 kB view details)

Uploaded Source

Built Distributions

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

rainbow_api-1.4.0-cp313-cp313-win_amd64.whl (715.3 kB view details)

Uploaded CPython 3.13Windows x86-64

rainbow_api-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (297.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rainbow_api-1.4.0-cp312-cp312-win_amd64.whl (715.9 kB view details)

Uploaded CPython 3.12Windows x86-64

rainbow_api-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (298.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rainbow_api-1.4.0-cp311-cp311-win_amd64.whl (714.6 kB view details)

Uploaded CPython 3.11Windows x86-64

rainbow_api-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (296.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rainbow_api-1.4.0-cp310-cp310-win_amd64.whl (714.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rainbow_api-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rainbow_api-1.4.0-cp39-cp39-win_amd64.whl (715.4 kB view details)

Uploaded CPython 3.9Windows x86-64

rainbow_api-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp39-cp39-macosx_11_0_arm64.whl (299.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rainbow_api-1.4.0-cp38-cp38-win_amd64.whl (717.8 kB view details)

Uploaded CPython 3.8Windows x86-64

rainbow_api-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rainbow_api-1.4.0-cp38-cp38-macosx_11_0_arm64.whl (304.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file rainbow_api-1.4.0.tar.gz.

File metadata

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

File hashes

Hashes for rainbow_api-1.4.0.tar.gz
Algorithm Hash digest
SHA256 f10f029c51be76d2a8b940fda98c447434ca7887bbc50b5b18aad107e2b7fde0
MD5 1eada8077becdfea9e193fb49ea200c7
BLAKE2b-256 1b833205ec2dc2123a62fef39f9ea6b5f90222b0f94c6b243a604e1fb9a9fa5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0.tar.gz:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 715.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c709710722e50382d549fe2bbb99df36164b811414f99c9a1e4934c3170a1448
MD5 ae521b1c176e9c9755a7ab5d0ec82b1a
BLAKE2b-256 297a72677ff2063517a18f5802b4e33dd791c1b714c51dff410be3caa325cf99

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 324a391b322ceb5fbc3dd7538d7a876510c6df9ff7391b7d2e5d7840740b0c8f
MD5 fc6fb0a25555543f5c6b84e02f2930aa
BLAKE2b-256 42adea19ccad3e89e7eee8b974cd479285eff6d6d7d139bf2320d7629470084f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a0b5b38b49d58776308c691b9dcb2348efe7ca94494b3e699ea5d1d62bcdf52
MD5 0df85d5c1d5e79a9fb6e4cdd0dd69500
BLAKE2b-256 6683a64404ef6c1d4ecdcab829901e4d19f12738269a2078bdfde0a07fee22ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 715.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9b34b243a45b86f9ea3ae409b6679e5235fa5c0cd2af51856b56b1cdbca69c45
MD5 8c19767752c0ee6be5344deb6b659b78
BLAKE2b-256 e09153f81c60ad40bb6ed623a8637fe99d5b4049817cb15ceeb2a54eed748e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99e9c2dc823123acd0414db2378ebe073f18ac77b07d86d510537bec9a15dc83
MD5 52d010c87b5484a664eb0948ec0dfa7b
BLAKE2b-256 aa6ad1e4243eac1557e11853f48d6d167ce808484b1a703e8b4d3e00b51ecedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85758503c9c9253e33744e140e2105486f28c48077d0de85cda0c518e3178f93
MD5 10a69fbe09177954417b77643bb75861
BLAKE2b-256 5283d7afae9c5a1dd1e4b886febe0c34cde1de51670326cb2ae5497ec571b272

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 714.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82d4e80d3b4db9aaf83a1f1612b1ceb212122b6cde5df952c144b710ec2a3cb7
MD5 38616ac0db05eca6d4b7f0ecfaac9f67
BLAKE2b-256 1ec33d1fbea3506633e077fa1193200df3c5297b63c4e5e948c1801989827a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 726cf9b29fff62d6b32d8bb4260d96b5389d63f5309f728bdbcc85763d3d08b4
MD5 5b1afa60fc0bd9889874c86884c3c8d4
BLAKE2b-256 cf059570bbc0fc173bd5d095aa79eb5fdc4718dd08a7963e435c1f46199c0e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d12673d6700fa7294a0c28a3e2cda0d455a57b217c3e622c62e09fa9eadf839
MD5 4ea43c2dee29f36f9575560ff26ee8c1
BLAKE2b-256 9641354e8a9e7287700eaa2ccb02042ca12efae5ddc3b4bfb4e640f550b42081

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 714.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9cbc64115f4f87da75ad862c7a6a7aaf6674db680ef77a442f28f980f73dac6d
MD5 fc562680f0cbf840a313ac237a254c36
BLAKE2b-256 13ebc79534c8b6b74c4b12127da143b66da1db6d99421f58e12c2285664070ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ca42efd249ca9e7f9062b425dd180fdbcd212243fddc99a21bf52f2dceeca44
MD5 817d48d1ac768c9f2d00f583afa9d168
BLAKE2b-256 26861ebc19b47793b2ef256de2c30087a2511d508991f8eb724aaf1282395bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c7dfa9c2aa5fb00a173d6737e9d55d183f2b81b5848b29a0488e71e0014ad37
MD5 9d736accd3b86a5e51715ec9a6f6396d
BLAKE2b-256 75c4280fbfe970e77f4279f9ae8639bd906693873a0fc9aac338bbeb66a4332d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 715.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93491b1843da76325e36124e7d443bbd5bda91bd5dcae80a6014ecbe3283bf73
MD5 47447c4f013ffb1644cac34bb8e09caa
BLAKE2b-256 f6fd3eba8937175ec2aed33583a444815e2d65b491a20110d71461e1aa1832c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6095e0ef7b1681543ad03e3a5839445d8b7727a3e14689ed987e40b951512f
MD5 ea236e965260f44599776612f87852ee
BLAKE2b-256 41db985e1a5b75db2e412ed763544c13fdd7fe8076667c478423987da4cb8bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39383bbb87f60ea359a0bc0fa05e603955cc3784471e728dd308c34b3f866797
MD5 c89fc6ae1de2588401b49fc7d1e03aa6
BLAKE2b-256 f3ae273497c0f04ffc1b76cf2e8fb0c0cf10080d8f0ae94a71e1843ffc2c476b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rainbow_api-1.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 717.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rainbow_api-1.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 42753c202b14de9904c629d1530935243643ea056af9b8bac15c42b24cb0d50e
MD5 a641a9a4be61506f9d3dea675c4715c3
BLAKE2b-256 b237f5286de33e5fc7502cb4106468a69c89e611f56f84d9c52ec02c51671761

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp38-cp38-win_amd64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c56ad35f1527c7a256be36d0d90249954756f1df2c7bd1ea0577c02e461fa5a0
MD5 d43d8fdae7a259ba0225084ff86310d1
BLAKE2b-256 42b415dab2b450cb5ef9852fbd79c71ae34d19c4aeb42e1058fb1305c60b6108

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

File details

Details for the file rainbow_api-1.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rainbow_api-1.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052644480f2955dd771879f185119cb8aeb1d02b631337284061a62ba401ee1d
MD5 8da46fa8fae2db44745bc9ddf9764cd3
BLAKE2b-256 2227aa5dfa2edda8cff5e32a176c41b5a6d3bd3b787e8c90e0a0d04ecbd50d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rainbow_api-1.4.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yml on evanyeyeye/rainbow

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

Release history Release notifications | RSS feed

1.5.1

19 files

1.5.0

19 files

This release

1.4.0 This release

19 files

1.3.1

19 files

1.3.0

19 files

1.2.0

19 files

1.1.0

19 files

1.0.16

19 files

1.0.15

19 files

1.0.14

19 files

1.0.13

19 files

1.0.12

2 files

1.0.11

2 files

1.0.10

2 files

1.0.9

2 files

1.0.8

2 files

1.0.7

2 files

1.0.6

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

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