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.0

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.0
File Size Uploaded
brisc-0.1.0.tar.gz 579.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for brisc 0.1.0
File
brisc-0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
brisc-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
brisc-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
brisc-0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
brisc-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
brisc-0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
brisc-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
brisc-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
brisc-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
brisc-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
brisc-0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
brisc-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
brisc-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
brisc-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
brisc-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
brisc-0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
brisc-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
brisc-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
brisc-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
brisc-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
brisc-0.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
brisc-0.1.0-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
brisc-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
brisc-0.1.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
brisc-0.1.0-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.0.tar.gz

Download URL brisc-0.1.0.tar.gz
Size 579.1 kB
Tags Source
SHA-256 checksum
How to use checksums
21352897b51d9b43c36b0ab10aee7ac3f2ed4561297184714235b0fe90e5dd89
BLAKE2b-256 checksum
How to use checksums
13aa3491ba6e188b0ee972e18eae08be1df88c0fdd66f7f6257c67529a97b14a
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-cp313-cp313-win_amd64.whl
Size 8.6 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
564c03165516807db93f151054b397be4099a34f8cfea3fa8382ef2cd680231a
BLAKE2b-256 checksum
How to use checksums
180736d201ced7b1551e667a8f975796779b4a400d81302d95042a0e336ca2f1
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
cb5aef9fb405b407e59ba6083501d656f811edc3d9cd319053d8e5eab4e30b06
BLAKE2b-256 checksum
How to use checksums
c1a2f6995c97273932e6c6cd64d363f724503267d11245d8d303f3bf684d14c7
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
555f31aec71a551d7698dd0717d5ebd8b8e78f8546244438ca017b2cf6b92b34
BLAKE2b-256 checksum
How to use checksums
edc7cbfdbc0b9aa4895da4c4e0b866e0024378b161037401eaf9fe55c5ea191e
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
f2ae9dce98bd72be7a54f66d44351f606fb3a601b073df98fef4aeede49bfa40
BLAKE2b-256 checksum
How to use checksums
0207167a90b4853c61f9dd126c08f0abf11b9b5ca5225f57a9b5203041eeab68
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
0bbbb8c87dad6d09d341932c11f8c8ecad9f80dae6bc2d62afcedf69a9e7113c
BLAKE2b-256 checksum
How to use checksums
1a3220d4582c7f2ac1027c06ce124f82226ece2523db8656ec90802f7a8614ca
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-cp312-cp312-win_amd64.whl
Size 8.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5a9a4511acfa1768d9a231200e651c0c605e42ab6e9cc918dd0ae1f8b8f86727
BLAKE2b-256 checksum
How to use checksums
d17aaec1724c65d60d487cfc3d0786226229a1b0347241b18fd5865296f374bd
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
fa481844c5c91c7ed2ff135ba3f65e1128aab70a003ef307d24cf5f63e19e89a
BLAKE2b-256 checksum
How to use checksums
737248882323f69fddad1ea4c3fd92351da40d83ff716c39b0f0ac0261b6b330
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
ac730b4c0346eaebae10eee0cd59b29e0eb999be725097a9c003d3c5b6111cff
BLAKE2b-256 checksum
How to use checksums
655bae7775eb30ddd601b7ec3c51048fce7c38c96023b18e12028e6f2230e653
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
42ff304e2185fb85e7db96efc82a5f84f9ba8c780ead26236cfa747f89c2f8ce
BLAKE2b-256 checksum
How to use checksums
66871be9adf6a18a8e497f22b302cc9f7a412af49185cebbf153d4b0250b1785
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
bf957ce3183ff41f029f94d5b2c40916b71d2f890295eb058bcbd8a193ea54e4
BLAKE2b-256 checksum
How to use checksums
debe2b0ebc0a781efa854e887ae369a367752f94884ac00e9f5bec429f91eecf
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-cp311-cp311-win_amd64.whl
Size 8.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d1303c5bf2a3a4e91b218f25370945aef6efcac2f9a69a06a007568a74039daa
BLAKE2b-256 checksum
How to use checksums
056f721b234cad464baea2a34224fb62abc4313610b7fff36af7515faeef20fc
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
3065b99aa6ccc762120ae9cec60284a997d2de919b12e8955b5fd89a5eca0a1d
BLAKE2b-256 checksum
How to use checksums
8e1721f62371216ce81a27d98c437082b4bdb30199c052590fe54fe4e6be9aa0
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
b32aa95f60ceb0fcd9fbd298e9b69969a370900c31f9eda2499af0c6cd352381
BLAKE2b-256 checksum
How to use checksums
25ed80288d10d08e5115ed598d77a33aa4809f77c19e27bbc8303b44675aeece
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
6a51114908064501874ff04a8d7bdab0086f2cfb6c696ad44c9bab8ad17a0bcc
BLAKE2b-256 checksum
How to use checksums
5dd01657b5724557a4559fabd389de68ecd60d68b9528ba7153fac9c7a1c9591
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
c21d2dc40286d16ae93863edc4d3b507267378ab3e9575e515b6992fa42563a9
BLAKE2b-256 checksum
How to use checksums
ce0d51a43da5ec547b3c21ca6686bf8f60674360c1f9c3181297a6fff79706b6
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-cp310-cp310-win_amd64.whl
Size 8.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
825de5d5b13469b2fc7eb681c0810e75afe0dea924278152ad97ffb9fe03bfa9
BLAKE2b-256 checksum
How to use checksums
08fc3c7b084fc13f97d8002fcca6d6ebddde0ac645a49febaef4177a25a8df6d
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
75b822715b869f8358b0711c03f667e88a2d5af13e4b17577f1d86c2c020c0f5
BLAKE2b-256 checksum
How to use checksums
fc0e3e698489d2d46e1af9c727780d650b086962f21df1616c461fa332de3621
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
92d718d1017e447b197ae27478a24bdfe567823a17f26452b97d24d44f5493d2
BLAKE2b-256 checksum
How to use checksums
b18168457732793302d428b5bd113a0c118261f3bd895dee91ad4c9be571f519
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
89ea5c9c08f9bfbd219511b247d3aa0b3822dd02bf97b5aab328cb562df74d76
BLAKE2b-256 checksum
How to use checksums
ae62c823bbc0f19139b6c60d823dcb176527102323a5f46423fde696ce999de8
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
4cc60c909cbb231cd1f3359c78b8c32d6233ea7f5c1af3fa23814eeb2eb71546
BLAKE2b-256 checksum
How to use checksums
d0f81cf43af1d829c662c649d4e2188dda59ab4ff2467b3a29ebdd83f064c0c8
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-cp39-cp39-win_amd64.whl
Size 8.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9011e648b8d53fc78bfca2b946b0aa174b438542e0a1a1af3cadb08f3b057720
BLAKE2b-256 checksum
How to use checksums
28b5263b0fad2d90355ce2ee3c52341720e915a60663dedee6a7d23082651cdf
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
303d0a78f943eb83fdd6d523b5eddf8a600a38eac9388e52eb0abcd3882be46f
BLAKE2b-256 checksum
How to use checksums
16c5c309b5647cb3cba53d4fe61a28444c5cb95a64c05f941a8afac418174dd3
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
75a557c04cb46adde20baf0e1c832c9093a2cacdc5ebf58f1ce4071eefa5485d
BLAKE2b-256 checksum
How to use checksums
4d5ddc7af30e9cffaa4237a180f34fff95ec7a1fd83c9b89d0d63408b5b75d8b
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
2fd4b2a5d1bf94f9b9d151f17201d5ebfb7b258810d61947cfbe3f75e15817a3
BLAKE2b-256 checksum
How to use checksums
318bf672893320a70aa4d1ddd6c900cfff43ac832567fb71de4d8b357d6ebec8
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 19, 2026.

Transparency log

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

Download URL brisc-0.1.0-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
d80071a5f578d0ef6dfb570ce6f760f42babc8650b4f686be371a2af09d120aa
BLAKE2b-256 checksum
How to use checksums
44589979da787dc007cd9f5e65ef13e490e81c16914ff59f53e0cbadd521b318
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 19, 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

0.1.1

26 release files

This release

0.1.0 This release

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