Skip to main content

Bioscrape — Biological Modeling, Simulation, and Parameter Estimation

A Python toolbox to simulate, analyze, and learn biological system models

Build Status PyPI version status

  • Getting started with Bioscrape: Bioscrape Core

  • Bioscrape analysis features: Bioscrape Sensitivity Analysis

  • Parameter inference with Bioscrape: Bioscrape Inference

Bioscrape is a Systems Biology Markup Language (SBML) simulator written in Cython for speed and Python compatibility. It can be used for deterministic, stochastic, or single cell simulation and also has parameter inference capabilities.

Example 1: Simulating an SBML

Bioscrape allows for deterministic and stochastic simulation of SBML models:

from bioscrape.types import Model
# Load an SBML file repressilator.xml 
# (you can find this file in `examples/models` directory)
M = Model(sbml_filename = 'repressilator_sbml.xml')
# Simulate the model
from bioscrape.simulator import py_simulate_model
import numpy as np
tp = np.linspace(0,256,100)
result = py_simulate_model(timepoints=tp, Model=M, stochastic=True)
# Plot the simulation result (the result is a Pandas dataframe)
import matplotlib.pyplot as plt
plt.plot(tp, result['X'])

Example 2: Run Bayesian inference with Bioscrape

Bioscrape can be used to identify model parameters using experimental data. In the example below, we show the user-friendly plug-and-play nature of bioscrape inference. We load the data as a Pandas dataframe and the model as an SBML file. The Bayesian inference is implemented as a wrapper for Python emcee that implements Markov Chain Monte Carlo (MCMC) sampler. Bioscrape inference provides various features such as: multiple data conditions, multiple data trajectories, deterministic inference, automatic visualization of posteriors, convergence checking tools, built-in and customizable priors, and lots more!

from bioscrape.types import Model
import pandas as pd
from bioscrape.inference import py_inference

# Load an SBML model 
# (you can get this file in `inference examples/models/` directory)
M = Model(sbml_filename='toy_sbml_model.xml')

# Load experimental data 
# (you can find test data in `inference examples/data/` directory)
df = pd.read_csv('test_data.csv', delimiter = '\t', 
                 names = ['X','time'], skiprows = 1)

# Use built-in priors, 
# For 'd1': a Gaussian distribution of mean 0.2 and standard deviation of 20,
# while ensuring the parameter remains positive
# For 'k1': a Uniform distribution with minimum value 0 and maximum value 100

prior = {'d1' : ['gaussian', 0.2, 20, 'positive'], 'k1' : ['uniform', 0, 100]}

# Run Bayesian inference
sampler, pid = py_inference(Model = M, exp_data = df, measurements = ['X'], 
                            time_column = ['time'], nwalkers = 20, nsteps = 5500,
                            params_to_estimate = ['d1', 'k1'], prior = prior)
# A sampler object containing all samples is returned.
# The pid object consists of various utilities for further analysis.
# This will plot the resulting posterior parameter distributions as well.

All examples can be found in the examples, the inference examples, and the lineage examples folders. If you prefer to run the package without installing the package, please use the Google Colab links above. If you want a local installation for bioscrape (recommended for faster speeds), follow the steps below:

Documentation

Read more about the package, the tutorial-style examples, and the Bioscrape API in the Bioscrape ReadTheDocs.

Installation

Install the latest version of Bioscrape::

$ pip install bioscrape

Please note that Bioscrape is a Cython extension module and requires a C++ compiler to be set up on your computer for installation. With the PyPi distribution, you can only install the core Bioscrape without the additional lineages package. To install lineages, clone the GitHub repository and run python setup.py install lineage from the bioscrape directory.

Try online without installing, open self-explanatory jupyter notebooks with Google Colab (linked at the top of this README).

Further details about the installation process can be found in the Bioscrape docs.

Bugs and Contributing to Bioscrape

Please report any bugs that you find here. Or, even better, fork the repository on GitHub, and create a pull request (PR). We welcome all changes, big or small, and we will help you make the PR if you are new to git (just ask on the issue). The CONTRIBUTING.md file has more detailed set of instructions on contributing to the software.

Versions

Bioscrape versions:

  • 1.4.1 (latest release): To install run pip install bioscrape
  • 1.2.2 (tagged stable release): To install run pip install bioscrape==1.2.2
  • 1.0.4 (beta release): To install run pip install bioscrape==1.0.4

License

Released under the MIT License (see LICENSE)

Copyright (c) 2022, Biocircuits, California Institute of Technology. All rights reserved.

Download files

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

Source Distribution

bioscrape-1.4.1.tar.gz (16.3 MB view details)

Uploaded Source

Built Distributions

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

bioscrape-1.4.1-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

bioscrape-1.4.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bioscrape-1.4.1-cp314-cp314-macosx_10_15_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bioscrape-1.4.1-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

bioscrape-1.4.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bioscrape-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bioscrape-1.4.1-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

bioscrape-1.4.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bioscrape-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bioscrape-1.4.1-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

bioscrape-1.4.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bioscrape-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bioscrape-1.4.1-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

bioscrape-1.4.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bioscrape-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bioscrape-1.4.1-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

bioscrape-1.4.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

bioscrape-1.4.1-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bioscrape-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file bioscrape-1.4.1.tar.gz.

File metadata

  • Download URL: bioscrape-1.4.1.tar.gz
  • Upload date:
  • Size: 16.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bioscrape-1.4.1.tar.gz
Algorithm Hash digest
SHA256 8caeb232e321b91b152c15861bbdb0e73e4d19f1c0cb90879609964af2e8ef39
MD5 b66eced156d2e521d11367576c2bf3c2
BLAKE2b-256 97ffd899a6028e8fca0276688b4670c1c1d0db4c6b4d5130d8429e358eea9aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1.tar.gz:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bioscrape-1.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 565728c8c256b622f90a6afb9df1624a1023297826a53b6ab304b56ec37683bc
MD5 2b669c19ab910ccddce30e8386914658
BLAKE2b-256 b6e0cd33f04181f5c613419973a0f8a4d5735f79c754618e8b86db2b5e8dfd99

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp314-cp314-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d126a9d1bbc7844bbaddcc872f293f034fdc71d5d35a34f654e937ab85c65e36
MD5 3cab3f7bb05c03a59b692afa6dcbb732
BLAKE2b-256 13b403af202fb8cb27471fe6d5c222839be3fe0e509fc6329d62b2667386d786

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eed77b028897f85efdbecfaad5216192787905e20444328327e587d7f6d7ab8e
MD5 b4e0c4853242cf8821261b272b60bf06
BLAKE2b-256 032addd1b9ab7803009ec5a20bfc302fc39299583630bac4db1fc11e4fc3aa73

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 12fcda56247981e4d2ba8c56edba11196987a6a753e421231ad8d949241d7f56
MD5 4a213e123b6cf49570126e1c36787231
BLAKE2b-256 9e921fcf4a431012fffeafa7d8fba5851d84f7026159dda6b1eac02ee15f3d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 bioscrape-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f6af8f97473072394b0706fccf7debe55db88cfc20860cbb80982bce3765554e
MD5 348fe7d894aba93b98863a41d892c972
BLAKE2b-256 208bca34ed2de9abc934f4564bfd3cab60ea10e46629fa69b2ad84d967450987

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp313-cp313-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfd6acbd2b641ad318b4bd86c2f9c29b294455a4dac9997e67caad8464833e0b
MD5 321185eb77fc7067a9d62817143d9414
BLAKE2b-256 ae02275e1ebf3cd638ea287604651604b136547942cd69b850914be685e8c08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d3f0c16cc4fc09eeb5d02d39f851e0954c7cca5f01ae6abe6eec564fcf4b755
MD5 f9a939a5de8fa754e0271b0cd9f9468e
BLAKE2b-256 2b98d7f997ebbc726e2ebd080b2f1a459fb96bc0e61d18a788eca66221a2934c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b86690f7e6ee590f44c807faff4fc57642058236f31178bade857a459482290d
MD5 ea5ff8b1f2e2457b248223384d5b59aa
BLAKE2b-256 fbefaee63ca8fec7c22776fd58c76bb71ab79e8622ea65b380e8f8e190f2bc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 bioscrape-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cb3716447dd7efec7224640ebcac141bce3cac70206e09cfdde9cf520018069
MD5 2aa70d0cbc5c0f8e0c86ec70faae4a99
BLAKE2b-256 afe38be5528ba1ed9929d155bec0e2252a5a29adcff8876ea61645e40578f177

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp312-cp312-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ebec8e78c89a0e3644a323ad7934824f754675abcf18e14437b249f7765a4d2
MD5 2d7d315dc871ad61b9a7ce4e0466b823
BLAKE2b-256 dc86333e8781da1d8aaf8e72ed3932f639adffefa7ae4e8a085f84918a354376

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3f0efa684d11c6a48433d81cfdcb3dd3871397dbff14bb773fd00332fd8baf4
MD5 3841fa3bb893957f227fa432b91fcae7
BLAKE2b-256 dfdaf42660d53440256ba46f0006175a77ef46ec3c277e1327825084e2f28db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7728965cbd48afa8b0aaef2bc9b61bd56d915b54cec163b7f4ad20aafc76a717
MD5 9819e850174e91d37010f261e4b35a4c
BLAKE2b-256 8a97cff037bc7b93b1d378b13da44dec82a60c13d434325f6e906b0e0db93f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 bioscrape-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 440e187415d748bdd8c681712b0c8fc7b98a3bc6511c0d0a04fbcfa23e13e5c6
MD5 b03872b35c24cb00d6b42697b78480a3
BLAKE2b-256 ee22dccc14777916cf300f915882228f61c0ca7eeda8ab1765a08e22af2da82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp311-cp311-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f791e869644984bfbd5312bd3376c2aa64f2f1dedb050ee4dbdf2f45fc8c8102
MD5 01acdbdf257f6a63a0d379ff21f845fb
BLAKE2b-256 bee87fdfe84201892a01f0bf15ce98c1e031ad4c2aeb00c33c2427596c219082

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5eb91985399eecc30359061036d19f7e498eb837e140c208dd605513649d2cd9
MD5 091864f674129f5fcdb19249c7780591
BLAKE2b-256 7d9e76cd89339cd2a642b37453bba9ad32a9a53f5022d192c2a177ca79814843

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ff27de569a6fb6460b5eb8117bb129cdd95e012a0febe70f072fa8c54a983aa
MD5 cbe4c660f8fbde4b5b593d92f7688720
BLAKE2b-256 ceff231e504cc51e42a84bee3414375bf3bf31fb847e84500707d666e2782586

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 bioscrape-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1901a4c96589791829c02c83fec8c54e0b896f622c9dc4fb7d98415a51ceb10
MD5 33bc338ac08561dab307ed4b7a0f7eca
BLAKE2b-256 b7c3fa4876c7fc22d4de028a7f19a10a58a4ca29d562153ae34db3c9f2dedf69

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp310-cp310-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cb9741ecc9637a841a6691aaf896af61dcebbefad44c16fd7a00bb1f8222914
MD5 36e8909a2828003f7172dc1165b54f86
BLAKE2b-256 39649c4c5f5931834a5af0ab12383f6d43e2bfd277c8541c96eec43ffe910d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa8037e80caae96de44ed32cd467efdf705e138caa1ab5f21d2a987194f2f3c
MD5 c0dc1eb3fb0244c456197a335db7a4c1
BLAKE2b-256 b71d41060b984a84dc3e33f4e3b06af3fc1b1424a172c439f8c944f2a07b292d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32bc0bae153b9ccca39b57c40f4f7074d08223fc0fb21b318e44c2da91449e08
MD5 0291f9ac7452ffa58485c0168aa08d53
BLAKE2b-256 bb832a8533c0be6b773a9e4b32b30b7177b210fa0a07c4b960070621dfa83fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bioscrape-1.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 bioscrape-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 48f079206e5c2a52fe6cd10652582c6935f9158dac3f4fc24fb9e44141482743
MD5 d4c73d72a56bc9ac0632170b95f5facc
BLAKE2b-256 83868ddcc8984d637ee1010832eab3625bda2991402344e6396b371be4945dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp39-cp39-win_amd64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71ee5e4c7d11f21d8df3aba89f8d6c140dcea07a5edd90f6b9f0389cc4b223cf
MD5 db28caf898dedada1cb305eb775b8ecd
BLAKE2b-256 e9d5066715adca60d2f8289422af72664342168b75333d71e09683124872463f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3e5f5b3a1edb37a674521ea4c0ff871f6de275cd2bd50ba6bcf0116985de669
MD5 ae566528791e0201db02eeac69266c84
BLAKE2b-256 f3d8797f135c1603c338505d55f349fc8f41e05606939472dcab6261c31d7b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

File details

Details for the file bioscrape-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bioscrape-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e282458a71830755b4c89433b2471f7e6336b9403419bb3729fb91b701172a99
MD5 fc6dc928eafb399d65357066b0ce26b9
BLAKE2b-256 7864765ea139b44766e090efff703736b02e4318fe8448d9120afec1699cbfb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bioscrape-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: pypi_release.yml on biocircuits/bioscrape

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

Release history Release notifications | RSS feed

This release

1.4.1 This release

25 files

1.4.0

12 files

1.3.0

1 file

1.2.2

1 file

1.2.1

2 files

1.2.0

2 files

1.1.0

3 files

1.0.4

2 files

1.0.3

1 file

1.0.2.2

1 file

1.0.2.1

1 file

1.0.2

1 file

Supported by

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