Skip to main content

Circe: Package for building co-accessibility networks from ATAC-seq data.

Project description

Circe logo


CIRCE: Cis-regulatory interactions between chromatin regions

Unit_Tests Wheels codecov PyPI version Downloads

Description

This repository contains a Python package for inferring co-accessibility networks from single-cell ATAC-seq data, using skggm for the graphical lasso and scanpy for data processing.

You can check our Bioinformatics paper here for more details! 😊
https://doi.org/10.1093/bioinformatics/btag092

While updating the pre-processing, CIRCE's algorithm is based on the pipeline and hypotheses presented in the manuscript "Cicero Predicts cis-Regulatory DNA Interactions from Single-Cell Chromatin Accessibility Data" by Pliner et al. (2018). This original R package Cicero is available here.

Installation

The package can be installed using pip:

pip install circe-py

and from GitHub

pip install "git+https://github.com/cantinilab/circe.git"

Minimal example

import anndata as ad
import circe as ci

# Load the data
atac = ad.read_h5ad('atac_data.h5ad')
atac = ci.add_region_infos(atac)

# Compute the co-accessibility network
ci.compute_atac_network(atac)

# Extract the network and find CCANs modules
circe_network = ci.extract_atac_links(atac)
ccans_module = ci.find_ccans(atac)

Visualisation

fig, ax = plt.subplots(1, figsize = (20, 6))
genes_df = ci.downloads.download_genes()

ci.draw.plot_connections_genes(
    connections=atac,  # Main parameters
    genes=genes_df,
    chromosome="chr1",
    start=50_000,
    end=300_000,
    gene_spacing=30_000,
    abs_threshold=0.0,
    y_lim_top=-0.01,   # Visual parameters
    track_spacing=0.01,
    track_width=0.01,
    ax=ax
)

Usage

You can go check out our documentation for more examples!
https://circe.readthedocs.io/
The documentation is still in building, so don't hesitate to open any issues or requests you might have in this repo. 😊

Benchmark & Comparison to Cicero R package


Metacalls computation might create differences, but scores will be identical when applied to the same metacalls (cf comparison plots below). It should run significantly faster than Cicero (e.g., running time of 5 sec instead of 17 min for the dataset 2).
On the same metacells obtained from the Cicero code.

All tests run in the paper can be found in the circe benchmark repo.

Real dataset 2 - subsample of 10x PBMC (2021)

  • Pearson correlation coefficient: 0.999958
  • Spearman correlation coefficient: 0.999911

Performance on real dataset 2:

  • Runtime: ~100x faster
  • Memory usage: ~5x less

Coming:

  • Gene activity calculation

Citation

Rémi Trimbour, Julio Saez-Rodriguez, Laura Cantini, CIRCE: a scalable Python package to predict cis-regulatory DNA interactions from single-cell chromatin accessibility data, Bioinformatics, Volume 42, Issue 3, March 2026, btag092, https://doi.org/10.1093/bioinformatics/btag092

Project details


Download files

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

Source Distribution

circe_py-0.4.0.tar.gz (131.0 kB view details)

Uploaded Source

Built Distributions

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

circe_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

circe_py-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

circe_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (83.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circe_py-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

circe_py-0.4.0-cp313-cp313-macosx_10_13_universal2.whl (116.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

circe_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

circe_py-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

circe_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circe_py-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

circe_py-0.4.0-cp312-cp312-macosx_10_13_universal2.whl (116.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

circe_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

circe_py-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

circe_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (83.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circe_py-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (83.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

circe_py-0.4.0-cp311-cp311-macosx_10_9_universal2.whl (115.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

circe_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

circe_py-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

circe_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (83.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

circe_py-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (83.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

circe_py-0.4.0-cp310-cp310-macosx_10_9_universal2.whl (115.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file circe_py-0.4.0.tar.gz.

File metadata

  • Download URL: circe_py-0.4.0.tar.gz
  • Upload date:
  • Size: 131.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for circe_py-0.4.0.tar.gz
Algorithm Hash digest
SHA256 f07700a9585f5feaef4c29b20d74e8edcb025b224ee66929c111a961ab270d24
MD5 32779b066f9eb74f9944b2d7f4ae884a
BLAKE2b-256 41bd914dbad1cd1bdd68936e7778b4f1f4f93216cd34cda5946e4494b2f92701

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0.tar.gz:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7842c81b279380ee0b80f8a7ac9a91d0c111e85d926f2187b23daa1a153c42e9
MD5 329df0e8628b2f84b5acbba38ade8222
BLAKE2b-256 7335f50465ce15fb7ef46209f7def3ba6d031a50e8cb53beb2ad1bafec935f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e3e54db13d6c9888cb87185daf8b10c9e4179a17da9def72b8ccf74ba9c8695
MD5 45bcbede9345e5a2e24dd8b1bdd4db76
BLAKE2b-256 278d0aa934fefc8ad34f13ebf0346f2151db66e7bfdc0f0d0fe1c1c564d236a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2de47f739c7d58c49b73aef94f6e55d892cf6615366126f0e54aefb99337433
MD5 ddd0841f442bd3770485ecfce2868c3a
BLAKE2b-256 a0cbd0ad0d9c10a6895592416de6bb9dfb625736fe5fc0ba714e404df4b10acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7fc4456e20032425796cf52ecae505aa63968cfb227555750bb95cd64e582ebc
MD5 b20600f740d285d3220ffac07a46500c
BLAKE2b-256 4672df8874b644bdd6d3194772a12f101bcd6574b65497c5496da03b944f81e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4581b9e8f197dddc7e6dc03dcf574e65d7d16537ddbeb3b19df731e6176e8ea3
MD5 78d64bb8b180466bbf4a21334e01bc50
BLAKE2b-256 f6838e127a68768feb00c2111fa6ef1c74c91e4528d74c784d8014bbb1164f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 300d32e438d205c678c49cf71d9abd46a75e6ee8ebe4927d88c987fb60123b32
MD5 fb8eb06b1c6ae82225184bd565dd05aa
BLAKE2b-256 4d6db152bdb4b68956839038a0c8a4ceeba21db8b123545a68fcf90bc0d9454a

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffe242461492c663d0f4dc419699927edc250521c879382443ffec620b3edacf
MD5 8dda6dd489e18e56a39b4a10fd83a2d5
BLAKE2b-256 9bb63f7dbbdbbecfe1a2260815ea54371d1b62123419096dbc067c02dac18cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e682cc51a061a0f4cf29d2f4b36dd9544c6277bdcdd00f111690b4590f929273
MD5 bb0bd800ee86e6779d939885e2e05312
BLAKE2b-256 e4304dfdd70ef01ba0cfba549e205ef824ce0def01a8bc7d5f18bb353b9f2dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7321fe2f4d5f25649e3acc729d90257fe15d89e0cc7db5a6eab4830eb798a544
MD5 b7fd37022818e85b55f8c35fb8a0439a
BLAKE2b-256 dd40a048012af900c33e32c36582d995593a1e9235dae6ec0ebb0854064a2a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 43edebb494aad01ce61193bdb41084ee6c1917beb6867a3d899cca6f44300884
MD5 fdf45011d484283384a701eaba3e5abf
BLAKE2b-256 f6f322208dc3cae21df800902301524dbb7d41001a718c6910ccb5a0da5039aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85c879707f16bb897474f129cbe4c527a52a099022dc14bafa3fc4de4855c135
MD5 576b35504b9ca8b34c7629ae22c4b777
BLAKE2b-256 7ee822a8b9902ef1abe66f2701d5e5885d569a5ced423ca750bc905a6c1712c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1cf04c45bdc3642f09958ca3236fb04534689eb62816e642e73787e95050db73
MD5 b915cbdd60f37f14ba677c27c5ca0fc7
BLAKE2b-256 d7dd9c8b9ee3eb2c79ca2f92f98dcc3d2a5b5c1bf981acd1a0f0fde5c2581f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd97294ae6d6c067660a1c6a7f07ad306b7cb92a5b79c66094af317812061045
MD5 5ac9b87afd2a92fc3ffb4dee3cdc16eb
BLAKE2b-256 217578986d93838425c94a4297c4575a52be67b1238d80e56f31ea5afd97b670

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9429e1c250eee9e98400dc4b49c954de00fdbae52917e5ceb4f3e03157d627a2
MD5 a07a43979fc02b65f6c6fd34e5091e1a
BLAKE2b-256 862ea4a9ff74beeb7e29f0a34f782045c4c1da8c5e3d6896d4042d37e2295111

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dcbfad7b55a74035937a0e47c8c99cec7d87fe8d7b648aae9ef0e6729db6bd9d
MD5 70a78821323fa3baa8a223d2bfe67de0
BLAKE2b-256 ccc109749b8afa88a43676368cb2acccc6ec3be2ad80daa06ef2ae69b1ca96d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6da31d370fac9fe694f047e46bdd7af9d6d17d218fa8bce2b3603be6fd17351
MD5 4f42d9ba668fb9e90ef3b59ff6b07236
BLAKE2b-256 2a14ff64c7bbdcf8cea708baff9d860d30bf49dd4ef33b286a94be8d06c9b549

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fd534fe9fa9aca87baf2fc60b60c2a4cf78cc3361f0ad300302b79b29cd6a0b
MD5 5f0498dbd3c290434c4700a311b291ce
BLAKE2b-256 4c624f81ff0a6c6378b3c3a49a27ff5bfb83ccef35832a380f959dea6a806af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b76005eae9c37d5965004357bd6d8b886a55776cf486e521dbc723515bd5ba96
MD5 95c68e8cac7d38a593533c63c4c347de
BLAKE2b-256 ccc03dc9ceed9750c2f34e9e59668c384b10ce79dff821a4e98847c0dfa05765

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0c39056bbd9a742ff5975cc03e5e0b3a45b1a792f09fe243528fff7c696e3ab
MD5 4d47e20d560eedfddb2258831418800d
BLAKE2b-256 9e1ce0d48f74ebc458855bde3e6a4c4dc9a1fe2c089e3aa7c080fb0217a8412d

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on cantinilab/Circe

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

File details

Details for the file circe_py-0.4.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for circe_py-0.4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a93eb0069897131fd4eb86375edcb41848efdf4cebfb31780a89ec323ff40277
MD5 11a46c4558f4bd8980f5ffd3c0138477
BLAKE2b-256 8d02d5c08730a4f23a9b1027857dd2df540a5aaac529f2578ee8f12b722eafad

See more details on using hashes here.

Provenance

The following attestation bundles were made for circe_py-0.4.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: wheels.yml on cantinilab/Circe

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page