Skip to main content

DOI

Rust Python
Build status Build status
Crates.io PyPI - Version
Docs.rs readthedocs.org

rebop

rebop is a fast stochastic simulator for well-mixed chemical reaction networks.

Performance and ergonomics are taken very seriously. For this reason, two independent APIs are provided to describe and simulate reaction networks:

  • a macro-based DSL implemented by [define_system], usually the most efficient, but that requires to compile a rust program;
  • a function-based API implemented by the module [gillespie], also available through Python bindings. This one does not require a rust compilation and allows the system to be defined at run time. It is typically 2 or 3 times slower than the macro DSL, but still faster than all other software tried.

The macro DSL

It currently only supports reaction rates defined by the law of mass action. The following macro defines a dimerization reaction network naturally:

use rebop::define_system;
define_system! {
    r_tx r_tl r_dim r_decay_mRNA r_decay_prot;
    Dimers { gene, mRNA, protein, dimer }
    transcription   : gene      => gene + mRNA      @ r_tx
    translation     : mRNA      => mRNA + protein   @ r_tl
    dimerization    : 2 protein => dimer            @ r_dim
    decay_mRNA      : mRNA      =>                  @ r_decay_mRNA
    decay_protein   : protein   =>                  @ r_decay_prot
}

To simulate the system, put this definition in a rust code file and instantiate the problem, set the parameters, the initial values, and launch the simulation:

let mut problem = Dimers::new();
problem.r_tx = 25.0;
problem.r_tl = 1000.0;
problem.r_dim = 0.001;
problem.r_decay_mRNA = 0.1;
problem.r_decay_prot = 1.0;
problem.gene = 1;
problem.advance_until(1.0);
println!("t = {}: dimer = {}", problem.t, problem.dimer);

Or for the classic SIR example:

use rebop::define_system;

define_system! {
    r_inf r_heal;
    SIR { S, I, R }
    infection   : S + I => 2 I  @ r_inf
    healing     : I     => R    @ r_heal
}

fn main() {
    let mut problem = SIR::new();
    problem.r_inf = 1e-4;
    problem.r_heal = 0.01;
    problem.S = 999;
    problem.I = 1;
    println!("time,S,I,R");
    for t in 0..250 {
        problem.advance_until(t as f64);
        println!("{},{},{},{}", problem.t, problem.S, problem.I, problem.R);
    }
}

which can produce an output similar to this one:

Typical SIR output

Python bindings

This API shines through the Python bindings which allow one to define a model easily:

import rebop

sir = rebop.Gillespie()
sir.add_reaction(1e-4, ['S', 'I'], ['I', 'I'])
sir.add_reaction(0.01, ['I'], ['R'])
print(sir)

ds = sir.run({'S': 999, 'I': 1}, tmax=250, nb_steps=250)

You can test this code by installing rebop from PyPI with pip install rebop. To build the Python bindings from source, the simplest is to clone this git repository and use maturin develop.

The traditional API

The function-based API underlying the Python package is also available from Rust, if you want to be able to define models at run time (instead of at compilation time with the macro DSL demonstrated above). The SIR model is defined as:

use rebop::gillespie::{Gillespie, Rate};

let mut sir = Gillespie::new([999, 1, 0]);
//                           [  S, I, R]
// S + I => 2 I with rate 1e-4
sir.add_reaction(Rate::lma(1e-4, [1, 1, 0]), [-1, 1, 0]);
// I => R with rate 0.01
sir.add_reaction(Rate::lma(0.01, [0, 1, 0]), [0, -1, 1]);

println!("time,S,I,R");
for t in 0..250 {
    sir.advance_until(t as f64);
    println!("{},{},{},{}", sir.get_time(), sir.get_species(0), sir.get_species(1), sir.get_species(2));
}

Performance

Performance is taken very seriously, and as a result, rebop outperforms every other package and programming language that we tried.

Disclaimer: Most of this software currently contains much more features than rebop (e.g. spatial models, custom reaction rates, etc.). Some of these features might have required them to make compromises on speed. Moreover, as much as we tried to keep the comparison fair, some return too much or too little data, or write them on disk. The baseline that we tried to approach for all these programs is the following: the model was just modified, we want to simulate it N times and print regularly spaced measurement points. This means that we always include initialization or (re-)compilation time if applicable. We think that it is the most typical use-case of a researcher who works on the model. This benchmark methods allows to record both the initialization time (y-intercept) and the simulation time per simulation (slope).

Many small benchmarks on toy examples are tracked to guide the development. To compare the performance with other software, we used a real-world model of low-medium size (9 species and 16 reactions): the Vilar oscillator (Mechanisms of noise-resistance in genetic oscillators, Vilar et al., PNAS 2002). Here, we simulate this model from t=0 to t=200, reporting the state at time intervals of 1 time unit.

Vilar oscillator benchmark

We can see that rebop's macro DSL is the fastest of all, both in time per simulation, and with compilation time included. The second fastest is rebop's traditional API invoked by convenience through the Python bindings.

Features to come

  • compartment volumes
  • arbitrary reaction rates
  • other SSA algorithms
  • tau-leaping
  • adaptive tau-leaping
  • hybrid models (continuous and discrete)
  • SBML
  • CLI interface
  • parameter estimation
  • local sensitivity analysis
  • parallelization

Features probably not to come

  • events
  • space (reaction-diffusion systems)
  • rule modelling

Benchmark ideas

  • DSMTS
  • purely decoupled exponentials
  • ring
  • Toggle switch
  • LacZ, LacY/LacZ (from STOCKS)
  • Lotka Volterra, Michaelis--Menten, Network (from StochSim)
  • G protein (from SimBiology)
  • Brusselator / Oregonator (from Cellware)
  • GAL, repressilator (from Dizzy)

Similar software

Maintained

Seem unmaintained

License: MIT

Download files

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

Source Distribution

rebop-0.10.0.tar.gz (153.8 kB view details)

Uploaded Source

Built Distributions

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

rebop-0.10.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (346.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

rebop-0.10.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (348.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

rebop-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl (533.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rebop-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl (563.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rebop-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl (492.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rebop-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rebop-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (346.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rebop-0.10.0-cp314-cp314-win_arm64.whl (196.2 kB view details)

Uploaded CPython 3.14Windows ARM64

rebop-0.10.0-cp314-cp314-win_amd64.whl (207.1 kB view details)

Uploaded CPython 3.14Windows x86-64

rebop-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl (535.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rebop-0.10.0-cp314-cp314-musllinux_1_2_i686.whl (565.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rebop-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rebop-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rebop-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (348.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rebop-0.10.0-cp314-cp314-macosx_11_0_arm64.whl (292.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rebop-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl (307.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rebop-0.10.0-cp313-cp313-win_arm64.whl (196.2 kB view details)

Uploaded CPython 3.13Windows ARM64

rebop-0.10.0-cp313-cp313-win_amd64.whl (207.1 kB view details)

Uploaded CPython 3.13Windows x86-64

rebop-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (535.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rebop-0.10.0-cp313-cp313-musllinux_1_2_i686.whl (565.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rebop-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (494.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rebop-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rebop-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (347.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rebop-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (292.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rebop-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl (306.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rebop-0.10.0-cp312-cp312-win_arm64.whl (196.3 kB view details)

Uploaded CPython 3.12Windows ARM64

rebop-0.10.0-cp312-cp312-win_amd64.whl (207.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rebop-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (535.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rebop-0.10.0-cp312-cp312-musllinux_1_2_i686.whl (565.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rebop-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rebop-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebop-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rebop-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (348.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rebop-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (292.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebop-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (306.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file rebop-0.10.0.tar.gz.

File metadata

  • Download URL: rebop-0.10.0.tar.gz
  • Upload date:
  • Size: 153.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0.tar.gz
Algorithm Hash digest
SHA256 7fb8f97ad6b4de057caaa7f1442f8b09f8dc533b002f6b3eb117f95c9d8866be
MD5 959de450875d8cc049f09b52e0c23002
BLAKE2b-256 08dde13853837b7f879a6083b33d488eb290733d621800e0f0f87a68e3d9c525

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 322.7 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 946b77ce64df2caaadb5c064b77e3fec606d408c2d9c738190b3eb674f3a90b4
MD5 08d680ab282b28b7704f38c4ba783631
BLAKE2b-256 6fff6298311ce4733387c13607b3ba38e92beb7813577f724f6aed0543ae3217

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 346.8 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c30475f08b0ee1de54917fae7055b43b81a42f94f9213798418a43d3262d697
MD5 eeedfbebf7301c73234841fa92435d73
BLAKE2b-256 10696a770d23e503311d6c7168d2dc4b42d521d15ec8e746e2c6d8446e9a527e

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 324.5 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3d5803dbb184bce7093eda9a5467950bac7af5773ff1e532e3ecb9338c2e63f
MD5 f3da2cf575cc7ee35a3d5d406a5a9f9c
BLAKE2b-256 bc0a0ad887e6950c4929d6b337777358eabdfbb3d8f97ef6e02aa52b965f693f

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 348.6 kB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2875e84998af18e85c2784c64a04e6550f25692a632a32918749b7443c590ed4
MD5 b5dac963cbc05709b943541e96dc287d
BLAKE2b-256 e18f44f156317e58dfaeaab31b538f5d6d78e763292a34b7f41f91782c6ea920

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 533.7 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 924cbcf4537b66c032c5b62a6d9132c8bbd8b26465ddf53cfb2b577a3e124a4f
MD5 b92bf04d6f4ca3cba070ffde5861bb6d
BLAKE2b-256 6244d1e3da35dd73001d045a2bdf9c967debf6dc66607f67a5c442cccd1ee455

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 563.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b546298deb9db991159069011b83bd7409d19e35b42d323622cec8ab6924ce3
MD5 a383a705dfe974885b1eac44d89ba940
BLAKE2b-256 714a8758c30f400caebea2a5f78f67cff40ce5bd93dadaecfe011b5920d399df

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 492.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52847bee9be0459f38edd1ef332e7d0e8dc5bce1b818e2dae6d6f130ea8c07cd
MD5 f0335f5fe2d531bbfa993fc6ea1d6d21
BLAKE2b-256 9aa068f07dbeb5a01e688bb208ab046a4ba4f27e7f9d33e0ef0be5f9dfdcc2fc

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 323.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f88dd974860890eb5fed09da499aae951ee8b630600ed9285d51088b3a758b
MD5 a3c0696570f14b4e4d957957844323b6
BLAKE2b-256 8c9df13fe841eb5b15d29e19936e53530123602746e3ff7770d8041a568f7750

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 315.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2651e90b8ed6a51934245ad87e42a2d8066c85389ff8d4bc688200c0e6bcd44
MD5 d703adf7e2f46e2404dae89d99055bdc
BLAKE2b-256 2df304af13a150316707edf4145801aedefff0cfa45c1bf3a2c2c7997d9b64b1

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 346.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dd66bed652bf7db381ce2eff4b0efafd0f0d370ccf2fcf0fa615e7ad10bd0a3
MD5 65bfc971de6068ccd7628929dc802e79
BLAKE2b-256 e9be496dd92c452fd7e01330a23e30c2ed577c509c244e0e41e82a3062a0abab

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 946a5406b0eb9bb5b38779e6c7070bd8ac651743701db8a5fef0a4fdb8045999
MD5 76eede30c4cb03fdd16dbb5727912f70
BLAKE2b-256 1c90aea537670becc6e6f7b070728221c1fb8675afbe73dbfba5f03f3355b6dd

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 207.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5dd570bae6ada8a239f9cef2acf12366f3c961776352f6596abc266ca6d74c1e
MD5 0d61679b75707e77dc0643ee1c7e9e14
BLAKE2b-256 3f4a9605c54761f349e4f776a37d68bee82661c893976711735143fd21ba568e

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 535.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4294759fea528e3e51c7d472b2bddf9c42da790e7647c5e193f9b99abca2cef7
MD5 507279462e4a390ee5e574bd1badadc8
BLAKE2b-256 58a08c89be1be19d734d4ac30b71a0fe047f9c8d9a0097d9f55045ed5dd3bf08

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 565.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 092eed5038b27107eba24ca2f68079c7d8fa36c4baab981e80c0933b677e97c5
MD5 abe62d4d54a32a8e9dd10403d4bdd5c0
BLAKE2b-256 5562250922caca5c5ea44d5983cd02937f66822cf89ff047ab63d90dde3fad62

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 495.1 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f701cc89e7b6cc4d0a2bb2ae8f13fcfa381e0f89a8b41c9996e53538f5c67a1
MD5 b62fa7bb2a02f14181bdbab9702138ea
BLAKE2b-256 d915758dbf797d7f8322b7323df71a1dabc8d07774315836ae060bcac18f52a7

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 324.6 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b42bdc61b6352831ecb3fd8f9d57133736cdb6401e1aaac1ef5bdb2f6b90a93c
MD5 6bec0d076d6f5d399fd6c6dbd9ee8d23
BLAKE2b-256 4fdc6a74d4ba83989f4624677f2310d90a11e2e8a024519fdcec03192f6d91c9

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 318.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7696c70d32ed522596dd7b0e2996a373d410a0b36ed9cb372dccefd3d9877de2
MD5 e5997e5370804a93b8421e00f62a1bde
BLAKE2b-256 8bc066dd3bebcb24a5d81822974351c122f972860a15e350482b365efd696fd0

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 348.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e061f1d7922d9d06771f8f662e814e2a2fd327d87e299b22aaf1c9f8fa3d223
MD5 0504302afe77c7c31a38907c18d41ac4
BLAKE2b-256 2d2777d1c724e1084adcf266df04607314d25891eb51da733d7cdd53f57d410e

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 292.9 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ac9dc6425c44aa35b0d3dc756780548b9c26de9cf3587a95ce6ecaa8823be48
MD5 6d1ec880d8f6fd39efbc0e6945f3bd2d
BLAKE2b-256 8229f48de76c0e6a71c266aa0d7be30f8b2ea4c85175fd89ec1e7209e5048123

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 307.0 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb40ccc52b8a49d53795fb668d388c2bc5f1c6c66c5e5b4710c594c313f56538
MD5 a69eb2676d4d5c26431e23dbd6173d5a
BLAKE2b-256 2d4df4421364f301735795af09781d4911d6ccb782f9b4a9fc8c07ccb0bcc0ff

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4037c1468097423eab4ed8f5105bbec90adb03e87d976cc787ac238c09ac71b9
MD5 1ef1500fed1daf839c60ea462f1372ef
BLAKE2b-256 0c1df5ce4babdcfbe6d1be57a5379aa430e391dce520b6d1ace8615b20075408

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 207.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 83c48e3fb7d6be2068d7cd9d66e842c1a6766be872fa6c733fc855774ce174ac
MD5 0c6baf75a1fd91cd166a3cdf78fd98ed
BLAKE2b-256 5d4709343adeef99e127ab1d9f15cd8dfaaf7340b31a6604f644c71b0c485c6c

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 535.4 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a12462261c1fce77e735a8ce142b30fb1f5270fb20317503b860e10ff0ff9d7
MD5 cb989fbcbcc86954dc78dacf30eba05e
BLAKE2b-256 39d0e5b6e71c54065a87ac95ab03eee95bdb475697ddaf04f3088699440a01a0

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 565.3 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 084b94b6f867b84908c27c8c122b158a4b3767991bfe90e378b271ed04634179
MD5 5d87faa38a0d2333dd3efe92b3e97929
BLAKE2b-256 fb66dc58a104876fde59045f66c75e2db9330d8f6e9d276bcdb9dc2476407393

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 494.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee66a69daf434a8f9d5a54692e4bc96e49527723fb9c587d6ce561cefd12b7d2
MD5 53886c916d697cc94939dfbd66f5f7e1
BLAKE2b-256 833e120b4e418be7a8b6289c4de9fe7bf109c79aae7ea3226e55c84dded37507

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 324.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0640848aa5ce900ab552e263d7d1e10b8eb3094232122b10b1eab3e087927e17
MD5 8feb26802e2473e82c2beb807d5d2796
BLAKE2b-256 5e0a65f44f733f5bd40575ef87a3ca5c1e97fb393ddee23fb9a92ed85ae5cfed

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 317.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1d53684f5dd15289c7894b644b1fe44b5cd663310f19766786386d6c10c53ca
MD5 4cf403930670b751f83b5d288984722a
BLAKE2b-256 73782906f500f7f2a6601a435eb7215d97c06c3dfce29ca014075adc03594d48

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 347.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0865a3ae0482aab5c057e35d4d6941df59a5d054b85bb13162a3941544476280
MD5 bbe2b7d0a2f5fe2d0499c8a3fca254b5
BLAKE2b-256 6b5e245ba736bc2606ee6480d6ff0265cc6100b189ccd9c470b18d5ace752140

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 292.8 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf2ccbcd4dde8c8b168e3f1f260422b7dfb28fcc29ac32f7ed5a91c9e689c08
MD5 8a2f4b3163d02d4f0195826f6d69d0e4
BLAKE2b-256 4bfa015e306060476a39b6d23ef9d03229f25ea31b9094470b35bd9f1f56178b

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 306.6 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f4ef84de2eefa36071e17ecc06142e771cc22d2198bc93c8895333a409a6602
MD5 3ce9b6602ccd1d554f48a8ec76f4858c
BLAKE2b-256 ac43c003a8b98ebc33dbad05b3643f14dd8ccd0bec21daccd6c93a0c27063b83

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9ffc4173c67271decb081618bc47d4d9a674bff509b7051dc5ac6eede1a137cb
MD5 6dbddfd9357a5c62522be7b15a6d8e04
BLAKE2b-256 f246bcad629c637b65f90a8b06dbbdd87a545e943e2c75bc40df5626eba7118a

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 207.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bfbb8ec8530dfa0824725eae84bd2e68552ced9fe0149d48ff579668615abf5c
MD5 5f24f6e41b714a97ff540f1d951522d6
BLAKE2b-256 10ef79dbd71bf2538229bce767daf99feb2769c9ea8c1711fe3c2890371ba4ac

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 535.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2673297c9aadd8542354f591e1021b3bea9b983c487e7c1c2f784f1dbc86d4b3
MD5 e911a304604bf308d3d17745badc6146
BLAKE2b-256 3865fbee1e644525448f7319c74658a27dab843f630ce7538b7a1ad7e26c1b71

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 565.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 825c543a7ef9a36fe4b6778e463642055302ac4bb5ba6b0ad57cdbaee837cbd3
MD5 97f6053c39964c427b769ec62986b774
BLAKE2b-256 ad5e0a818d2ae52452565b747c963a2068bcc55c8c4f6e1017d43af64332af76

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 495.1 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19c8af1502ec84b3d272d67854f96cc5a32e4472b8a0b85d917bb967104c5742
MD5 f8ad9030c795883538dc934b570c523a
BLAKE2b-256 709fff321aed58b462ece9564dc672475b930bf080d6e7490f62eb2c3f02802e

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 324.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9399a1d0d5458b37d9963b8e4060a1f68de442627a1b6c3c3fcb2adc08b557ef
MD5 f55028379174537974c9bccabc5a0877
BLAKE2b-256 f875b0a0f0559189215fd1013f99147d298cf4fa3729f441f24c1e319c66d93d

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 317.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b96744facc2ea4ffeede065146ddcab1918b62cc64dd2496821fe18980c95269
MD5 5b247a9b90c5bcfc5be73c53013ac152
BLAKE2b-256 e6e0725375ee32ed46ff18874b7586588f237f667ea85aeaf24118d07a072ab7

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 348.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4de63e3246b5adbe37592df78bc8d63db9f6b29fdf6c171776f4d98591835f46
MD5 5a4ad07187117d836fad2cefe9fb25e3
BLAKE2b-256 dd0c50acff1f98c0b80f97b97af29be2c3297805b3926a805fe48f64ce47e67d

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 292.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f847292a90d8686d60764800c1e36c8e5bb5b546db15efe187579588051592
MD5 34edf65a62182a89780c676a621f1054
BLAKE2b-256 15dbfa80560f052f9393ed128399b84842c228d61692cea13027818d6470dfc6

See more details on using hashes here.

File details

Details for the file rebop-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: rebop-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 306.5 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rebop-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1872cf7c094b386246790f0590aa60f6ad80429cb3900559de4992cccc24b88
MD5 af36e8556ce9f203f9a0fa6bf827d17a
BLAKE2b-256 4c5d2bff9e47382f04270be810fb7c8237bb6b8f83bf7ed376d72c7af7525488

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.10.0 This release

41 files

0.9.7

29 files

0.9.6

54 files

0.9.4

38 files

0.9.3

38 files

0.9.2

61 files

0.9.1

71 files

0.9.0

71 files

0.8.3

52 files

0.8.2

52 files

0.8.1

52 files

0.7.0

11 files

0.6.1

11 files

0.6.0

2 files

Supported by

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