Skip to main content

brisc

brisc is a high-performance library for analyzing single-cell data at scale. It prioritizes running as fast as possible on multi-core CPU systems, strict reproducibility, and a clean, user-friendly interface. On datasets of 1 to 20 million cells, it cuts the runtime of common workflows from hours to minutes.

Full documentation is available at brisc.run.

Why brisc?

  • Blazing fast — ground-up optimization of core algorithms and effective parallelism.
  • Deterministic — every step gives floating-point identical results between runs, regardless of the number of threads used.
  • Complete toolkit — preprocessing, dimensionality reduction, harmonization, label transfer, clustering, embedding, pseudobulk differential expression, and plotting.
  • Interoperable — reads and writes .h5ad, .rds, .h5Seurat, and 10x files, and supports interleaving Python and R analyses via ryp without intermediate writes to disk.
  • Memory-efficient — ~2× lower peak memory than Scanpy by tabulating which cells pass QC, instead of subsetting to them.
  • User-friendly — sensible defaults, strict type-checking, and solution-focused error messages.

Installation

brisc supports Linux, macOS, and Windows on Python 3.9+.

conda (recommended)

conda install -c conda-forge brisc

pip

pip install brisc

conda is recommended because it sets up the fast MKL BLAS and some of the R packages brisc uses. With pip, you'll need to handle those yourself: see the installation guide for details, including optional R integration (for differential expression, Seurat, and SingleCellExperiment support) via ryp.

Quick start

Basic workflow

from brisc import SingleCell

sc = SingleCell('data.h5ad')\
  .qc()\
  .hvg(batch_column='donor')\
  .normalize()\
  .pca()\
  .neighbors()\
  .shared_neighbors()\
  .cluster(resolution=[0.25, 0.5, 1, 1.5, 2])\
  .pacmap()

Label transfer

from brisc import SingleCell

sc_ref = SingleCell('data_ref.h5ad').qc()
sc_query = SingleCell('data_query.h5ad').qc()
sc_ref, sc_query = sc_ref.hvg(sc_query)
sc_ref = sc_ref.normalize()
sc_query = sc_query.normalize()
sc_ref, sc_query = sc_ref.pca(sc_query)
sc_ref, sc_query = sc_ref.harmonize(sc_query)
sc_query = sc_query.label_transfer_from(
  sc_ref, 'cell_type')

Pseudobulk differential expression

from brisc import SingleCell

pb = SingleCell('data.h5ad')\
  .qc()\
  .pseudobulk('sample', 'cell_type')
de = pb\
  .qc('condition')\
  .library_size()\
  .de('~ condition + sex + pmi')

Release files for brisc 0.1.1

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

Source distribution (sdist)

Source distribution for brisc 0.1.1
File Size Uploaded
brisc-0.1.1.tar.gz 579.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for brisc 0.1.1
File
brisc-0.1.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
brisc-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
brisc-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
brisc-0.1.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
brisc-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
brisc-0.1.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
brisc-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
brisc-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
brisc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
brisc-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
brisc-0.1.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
brisc-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
brisc-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
brisc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
brisc-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
brisc-0.1.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
brisc-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
brisc-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
brisc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
brisc-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
brisc-0.1.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
brisc-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
brisc-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
brisc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
brisc-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 257.2 MB

Release files / brisc-0.1.1.tar.gz

Download URL brisc-0.1.1.tar.gz
Size 579.5 kB
Tags Source
SHA-256 checksum
How to use checksums
bfbefd4e031b408f0518ce0edc5397a3542ef3b5733451fe91cf91a245f7318e
BLAKE2b-256 checksum
How to use checksums
b7df366dd3a5bc6437f9ea45123ebfcc47d7696d68ac9a0b91a7adc100b1e9ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp313-cp313-win_amd64.whl

Download URL brisc-0.1.1-cp313-cp313-win_amd64.whl
Size 8.6 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
3f9f40c13139a3369f43dc8376ebb3396e1bbbdbf262c068d31687001b8121c0
BLAKE2b-256 checksum
How to use checksums
f624e07ac4b4dc56c3dbd2368a8a2abb891d6d72c87be0bc2eac6dd7db660a05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL brisc-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Size 16.6 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2821e1223d5ce914d78cfcca89e969abadb15aad2ad7595fc0265109d4ad594b
BLAKE2b-256 checksum
How to use checksums
25ae2aeac5e2fa84fa775e794a1e518e3517746e1dcb95158dab99aef8e56cda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL brisc-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Size 10.4 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c6e7e1c000fa653386b0312e887b330339352042e244561da22516dd6d4310c3
BLAKE2b-256 checksum
How to use checksums
0cb1d995522bf4340a880fa8e145fee621ec790c514d9025cc471817c507a01e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL brisc-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Size 3.9 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
14e8f0cb80a0c0f80784f38652cc7ec7493ea0df2168b4a6aae88a03ccc735d6
BLAKE2b-256 checksum
How to use checksums
1ea8a0d955790ab8790c81bf19119d36c6eb205e2343199c77232b8decb351b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL brisc-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 12.5 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
17f660fded9758efceb5f9432e3120990f7e4f19f07f9c50e1cdaaf2b0622e3e
BLAKE2b-256 checksum
How to use checksums
72219e4cd643c2ac5557f49f6d9abf2488ae917650222c871a9f3b8d446b8d68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp312-cp312-win_amd64.whl

Download URL brisc-0.1.1-cp312-cp312-win_amd64.whl
Size 8.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
58c778ef8d07a50bcc343005498d53cd08b3c6f92a43b3d9dd03247b3b2eb126
BLAKE2b-256 checksum
How to use checksums
c99fa0c5b4daf40a94fd8f6082376583a0bb6e5d31f72407e7930eaf53785fad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL brisc-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Size 16.5 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
eddd7fee1a98934375153b5edae136fbad729815df58b7db6cdb2ee06cc02732
BLAKE2b-256 checksum
How to use checksums
257ae98f04f1109bf77dac9942811161536e43a1d06e3b52f081338556f54d4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL brisc-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Size 10.3 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
14dd48acb4250c02ab5432ba294d2f151cef88a1a7ea04762f4c9596378344e3
BLAKE2b-256 checksum
How to use checksums
dc28bcb31f9b82e82205df9b3428bc38a8bf9c27eac31b2001053ca66180a547
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL brisc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Size 3.9 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0dbef5d87cc575dfd77096b97d61398c4a1988008b2ef6dd61c7ba5c0dfa8cb2
BLAKE2b-256 checksum
How to use checksums
4943c6a8de2905e7d22dff097862fb707fba3236ca77fbc27b36c89410016d04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL brisc-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 12.5 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8a56d7d20e1fe5702105f0fe4b2c6f239c0643652b465bde5a5213baf16fd61e
BLAKE2b-256 checksum
How to use checksums
6dc5d1bfaafd4b8f214a42878ee6abcf6c1f53e46ce525b4fd93a423d338aed6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp311-cp311-win_amd64.whl

Download URL brisc-0.1.1-cp311-cp311-win_amd64.whl
Size 8.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0d307a7d61f002ac16c3f6c5055c8f378b9e73d648e753f1c36f1bb18f2bd4e8
BLAKE2b-256 checksum
How to use checksums
ea5159a036c9568176d766efef14dc4458bc2f0e1e470d98b4cc1ee1ae65fe34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL brisc-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Size 16.0 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6d6c57405a3b0a0980bc7e7495988fe5851cc52e4d7536d68c6db24077a3426f
BLAKE2b-256 checksum
How to use checksums
2611f689c74ec9cd22d13afc0880aadd16a1babaaaab93049df871ba1e3f6e80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL brisc-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Size 10.2 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d7562451197fc24a44378a2a51a84b330513880e2506440532c436c54310153f
BLAKE2b-256 checksum
How to use checksums
ec72e2f7a946a1ff73007805a6a05221f3998021ad299f730a9fb164722f1929
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL brisc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Size 3.8 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a58e46c6ccf135a13e785508075b46567b1ad0e952cbaa74046d260b6bdf2daa
BLAKE2b-256 checksum
How to use checksums
5d64579ca4c6f9710183026a839c771ab3f2c8edc668ffd2257eceab2585ac06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL brisc-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 12.5 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
469ed8806ff4dac4823593c6800d3468766d67bf75b68610f427536a0afcb71c
BLAKE2b-256 checksum
How to use checksums
cae883de5c6ba29fd06a700865cb119e3c7c71f70107f8d213c0a9936290c97f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp310-cp310-win_amd64.whl

Download URL brisc-0.1.1-cp310-cp310-win_amd64.whl
Size 8.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7223f9e1881f487a402bae9751f6d0e2ed526be5824bc7c9d849fde0dc677bf2
BLAKE2b-256 checksum
How to use checksums
dd5ac5afc56d27dda2337b09fcf10f14079423b9443dee17d468a077e59fd50b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL brisc-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Size 16.0 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
beb273c50e62d10c95f0eb58ccc26af6f92134da7adc5b9910779ced9c061f3c
BLAKE2b-256 checksum
How to use checksums
95ed048bca3e573557c733d5aa5131b6d1f5a66cdf46be4e91dfa3b89461e8d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL brisc-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Size 10.2 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
376050f5e4bc7a957178c5e8432bf5f35181481ab7824eee2142fb56090ea69f
BLAKE2b-256 checksum
How to use checksums
9fb7f5127f59df3c63fbe382210eb626fdea279f26cf23cf2d4ba8b2eadfaa31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL brisc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Size 3.8 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
95a64aca9bd88d6bb8118fdbffd2b848125782cd4f38c42636df576f5ca23fa7
BLAKE2b-256 checksum
How to use checksums
7cdf499fef6123615fe7648c8ae64984f316208dacdd424115bf9261cf819ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL brisc-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 12.5 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
03ab99535ad54fa1effaa2e4565a9bbe31c001761877f463deb352f1d57eb29a
BLAKE2b-256 checksum
How to use checksums
61847bf936645c331f208b4949d8cab38a57ceb3a2ccb302718603e81de9379f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp39-cp39-win_amd64.whl

Download URL brisc-0.1.1-cp39-cp39-win_amd64.whl
Size 8.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
32874b46c413635e87d01332b5a0d32041510d5faad529efd635ac06fd3df075
BLAKE2b-256 checksum
How to use checksums
4390488afd829a903f44238bf2b738d93caaf15bbb3f1221dc84081fbf3e52ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL brisc-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl
Size 16.0 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6adf607c00a0f4a3efc045ecb61952b05a54b8b82fbdce36966aa387f2bb5e9b
BLAKE2b-256 checksum
How to use checksums
9daa877a4ef1d7e8cc811ec6e7ad13cb0d36d789e5c51f13cff9ff291fae6a0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL brisc-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
Size 10.3 MB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
313b04826c19cf2c5d4245b6a2ed5ae5e51fc4d5b55a474d0ce8bb9176f978da
BLAKE2b-256 checksum
How to use checksums
bb48cf8da1814b0b77ecaf6794cd8e11ae81502ce736761014c15f9aa32f5a87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL brisc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Size 3.8 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
05bc1eaafc1c70beb32b843459d9a8cca4aa7fef96e81559a39ea7d81d54784d
BLAKE2b-256 checksum
How to use checksums
cc241f100ec388807422d92597403916b34da8cc3d5cd3f7402b293537b32f44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release files / brisc-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL brisc-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 12.4 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c9adaa2b4d507aa55f5337c6c9b1be9b12953e6ae6ad9710e598aa4e36353672
BLAKE2b-256 checksum
How to use checksums
3f9deb23789fc61d9bade3834fea07e2f5a45ba503711442ea61a20b2abbd723
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.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 Jul 20, 2026.

Transparency log

Release history Release notifications | RSS feed

0.1.6

31 release files

0.1.5

31 release files

0.1.4

31 release files

0.1.3

31 release files

0.1.2

31 release files

This release

0.1.1 This release

26 release files

0.1.0

26 release files

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