Skip to main content

Version PyPI GPL Docs Binder

Welcome to REBOUND

REBOUND Examples

REBOUND is an N-body integrator, i.e. a software package that can integrate the motion of particles under the influence of gravity. The particles can represent stars, planets, moons, ring or dust particles. REBOUND is very flexible and can be customized to accurately and efficiently solve many problems in astrophysics.

Features

  • No dependencies on external libraries.
  • Runs natively on Linux, MacOS, and Windows.
  • Symplectic integrators WHFast, SEI, LEAPFROG, EOS.
  • Hybrid symplectic integrators for planetary dynamics with close encounters MERCURIUS
  • Hybrid reversible integrators for planetary dynamics with arbitrary close encounters TRACE
  • High order symplectic integrators for integrating planetary systems SABA, WH Kernel methods.
  • High accuracy non-symplectic integrator with adaptive time-stepping IAS15.
  • Can integrate arbitrary user-defined ODEs that are coupled to N-body dynamics for tides, spin, etc
  • Support for collisional/granular dynamics, various collision detection routines
  • The computationally intensive parts of the code are written entirely in C, conforming to the ISO standard C99, and can be used as a thread-safe shared library
  • Easy-to-use Python module, installation in 3 words: pip install rebound
  • Real-time, 3D visualization, for both C and Python.
  • Extensive set of example problems for both C and Python. You can run examples directly from your browser without the need to download or install anything.
  • Parallelized WHFast512 integrator for super fast integrations of planetary systems with SIMD AVX512 instructions
  • Parallelized with OpenMP (for shared memory systems)
  • Parallelized with MPI is supported for some special use cases only (using an essential tree for gravity and collisions)
  • The code is 100% open-source. All features are included in the public repository on github.

Try out REBOUND

You can try out REBOUND without installing it. Simply head over to the documentation. All the C examples have been compiled with emscripten and can run directly in your browser.

One minute installation

You can install REBOUND with pip if you want to only use the python version of REBOUND:

pip install rebound

Then, you can run a simple REBOUND simulation such as

import rebound
sim = rebound.Simulation()
sim.add(m=1.0)
sim.add(m=1.0e-3, a=1.0)
sim.integrate(1000.)
sim.status()

If you want to use the C version of REBOUND simply copy and paste this line into your terminal (it won't do anything bad, we promise):

git clone https://github.com/hannorein/rebound && cd rebound/examples/shearing_sheet && make && ./rebound

Documentation

The full documentation with many examples, changelogs and tutorials can be found at

https://rebound.hanno-rein.de

If you have trouble installing or using REBOUND, please open an issue on github and we'll try to help as much as we can.

There are also short YouTube videos describing various aspects of REBOUND available at https://www.youtube.com/channel/UCNmrCzxcmWVTBwtDPPLxkkw .

Additional physics

To easily incorporate additional physics modules such as migration forces, GR effects and spin into your REBOUND simulations, see REBOUNDx at https://github.com/dtamayo/reboundx

Analytical and semianalytical tools

If you're interested in comparing numerical simulations to analytical and semianalytical tools for celestial mechanics, see Celmech at https://github.com/shadden/celmech

Ephemeris-quality integrations of test particles

To generate ephemeris-quality integrations of test particles in the Solar System with a precision on par with JPL's small body integrator, see ASSIST at https://github.com/matthewholman/assist

Papers

There are several papers describing the functionality of REBOUND.

  1. Rein & Liu 2012 (Astronomy and Astrophysics, Volume 537, A128) describes the code structure and the main feature including the gravity and collision routines for many particle systems. http://adsabs.harvard.edu/abs/2012A%26A...537A.128R

  2. Rein & Tremaine 2011 (Monthly Notices of the Royal Astronomical Society, Volume 415, Issue 4, pp. 3168-3176) describes the Symplectic Epicycle integrator for shearing sheet simulations. https://ui.adsabs.harvard.edu/abs/2011MNRAS.415.3168R

  3. Rein & Spiegel 2015 (Monthly Notices of the Royal Astronomical Society, Volume 446, Issue 2, p.1424-1437) describes the versatile high order integrator IAS15 which is now part of REBOUND. http://adsabs.harvard.edu/abs/2015MNRAS.446.1424R

  4. Rein & Tamayo 2015 (Monthly Notices of the Royal Astronomical Society, Volume 452, Issue 1, p.376-388) describes WHFast, the fast and unbiased implementation of a symplectic Wisdom-Holman integrator for long term gravitational simulations. http://adsabs.harvard.edu/abs/2015MNRAS.452..376R

  5. Rein & Tamayo 2016 (Monthly Notices of the Royal Astronomical Society, Volume 459, Issue 3, p.2275-2285) develop the framework for second order variational equations. https://ui.adsabs.harvard.edu/abs/2016MNRAS.459.2275R

  6. Rein & Tamayo 2017 (Monthly Notices of the Royal Astronomical Society, Volume 467, Issue 2, p.2377-2383) describes the Simulationarchive for exact reproducibility of N-body simulations. https://ui.adsabs.harvard.edu/abs/2017MNRAS.467.2377R

  7. Rein & Tamayo 2018 (Monthly Notices of the Royal Astronomical Society, Volume 473, Issue 3, p.3351–3357) describes the integer based JANUS integrator. https://ui.adsabs.harvard.edu/abs/2018MNRAS.473.3351R

  8. Rein, Hernandez, Tamayo, Brown, Eckels, Holmes, Lau, Leblanc & Silburt 2019 (Monthly Notices of the Royal Astronomical Society, Volume 485, Issue 4, p.5490-5497) describes the hybrid symplectic integrator MERCURIUS. https://ui.adsabs.harvard.edu/abs/2019MNRAS.485.5490R

  9. Rein, Tamayo & Brown 2019 (Monthly Notices of the Royal Astronomical Society, Volume 489, Issue 4, November 2019, Pages 4632-4640) describes the implementation of the high order symplectic integrators SABA, SABAC, SABACL, WHCKL, WHCKM, and WHCKC. https://ui.adsabs.harvard.edu/abs/2019MNRAS.489.4632R/

Acknowledgments

If you use this code or parts of this code for results presented in a scientific publication, we would greatly appreciate a citation. The simplest way to find the citations relevant to the specific setup of your REBOUND simulation is:

sim = rebound.Simulation()
-your setup-
sim.cite()

AI/LLM policy

REBOUND is a labour of love, created by people.

Please refrain from submitting issues or pull requests that have been generated by an LLM or other fully-automated tools. Submission that are in violation of this policy will be closed, and the submitter may be blocked from this repository. You may of course use AI assistants for your own work with REBOUND. Just don't submit any AI generated code.

The rationale behind this policy is that automated contributions are a waste of the maintainers' time. Humans spend their time and brainpower reviewing every submission. Issues or pull requests generated by automation tools create an imbalance of effort between the submitter and the reviewer. Nobody learns anything when a maintainer reviews code written by an LLM.

Additionally, AI-generated code conflicts with this project's license, since you cannot truly release code for use if you didn't author it yourself.

License

REBOUND is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

REBOUND is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with REBOUND. If not, see http://www.gnu.org/licenses/.

Release files for rebound 5.2.0

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

Source distribution (sdist)

Source distribution for rebound 5.2.0
File Size Uploaded
rebound-5.2.0.tar.gz 386.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rebound 5.2.0
File
rebound-5.2.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
rebound-5.2.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
rebound-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
rebound-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
rebound-5.2.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
rebound-5.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
rebound-5.2.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
rebound-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
rebound-5.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
rebound-5.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
rebound-5.2.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
rebound-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
rebound-5.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
rebound-5.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rebound-5.2.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
rebound-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
rebound-5.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
rebound-5.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rebound-5.2.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
rebound-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
rebound-5.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
rebound-5.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rebound-5.2.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
rebound-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
rebound-5.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
rebound-5.2.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
rebound-5.2.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
rebound-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
rebound-5.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
rebound-5.2.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
rebound-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 24.6 MB

Release files / rebound-5.2.0.tar.gz

Download URL rebound-5.2.0.tar.gz
Size 386.1 kB
Tags Source
SHA-256 checksum
How to use checksums
d5396d9797a760a3ae844c122d9123e72e00754b345cf56f462c4543bbc109f7
BLAKE2b-256 checksum
How to use checksums
a5a1cc015bf8762896ae730dfe167bda022f986ef02b0a777ab06e56f0b60d61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-win_amd64.whl

Download URL rebound-5.2.0-cp314-cp314t-win_amd64.whl
Size 449.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
f7abbef18648b30ce854d37bcfc80665cd9502d939bd2e38b378d5175768ea95
BLAKE2b-256 checksum
How to use checksums
694096216e3253e86f5430e08f2cfa364b8705b9fce00d5f3135684722c27d23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-win32.whl

Download URL rebound-5.2.0-cp314-cp314t-win32.whl
Size 384.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
170efc46b933996c9932e516b0004bdb459a640c9de64c6cbb191fde3f7436ca
BLAKE2b-256 checksum
How to use checksums
102a99d7a48c781bec8c643fda8503ae21d0c56a2ac26d3dad541aa5ce5775a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 909.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fd733d9fc4b7bbeb86b05bcddc9f874d73850dce6319983223dc746bd56f6d12
BLAKE2b-256 checksum
How to use checksums
04bd038ef1242cc25314cf523a95966658a4b672db6b68b5892d2c62eb3445df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0e5ceeae95af85099ed8fc52ae3fc78f09238446248c4edfa288cdd4834f1dcd
BLAKE2b-256 checksum
How to use checksums
861447e662707d2ab1057d9e6289a338092787f7265356674522142eb02f4aba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5a498698001863d037a211bb0fe3a7993d87fd7ed1bf11715d42799c3dd9add9
BLAKE2b-256 checksum
How to use checksums
d78e171dcd9e0e0822abaf6367763f1d05dd9475c790d97e2c733e3741c03f3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 427.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ed0cddd97b3bcb45e2dddf5a2a3ae9aef24c7dc543d8c4528239b6d25237b4ef
BLAKE2b-256 checksum
How to use checksums
f890f68a06afdb3aefeeca40f570f746348e434cf354d06dd3e9d5ae0b4b3480
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-win_amd64.whl

Download URL rebound-5.2.0-cp314-cp314-win_amd64.whl
Size 449.5 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
3571920b257fcd3fdbdee880c92d668edd73590b8ad700c6fa069fb96db356ef
BLAKE2b-256 checksum
How to use checksums
a2a8a4c1ac2e6fdda10fddb70e823065f0cc675364fabb2037c13c69a3692448
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-win32.whl

Download URL rebound-5.2.0-cp314-cp314-win32.whl
Size 384.9 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c14372882e60949a247634bc27ae36298fdddee0d2c632332b06e9e5d1f5e5f0
BLAKE2b-256 checksum
How to use checksums
875a871de5f07cf5355006a9f4bf80ed5a1c831b8b52aa0d9b2d99d1341447d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 909.1 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9e1b60b0ee84a851860b57bd9ebfb3414c36124baacf14605786db6160de13a2
BLAKE2b-256 checksum
How to use checksums
2ee7cac4022e40850bba55a91692ec93c590e5d69f074fe72e56a23062e2cc01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.6 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a003775c40de7e7b2fae1740462f58897c4d971c12e1eb106184611015d3e6b0
BLAKE2b-256 checksum
How to use checksums
ee8e21e7d63da7c536a048c5e778ed196595fdd37745df713258350f411cef60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5be2687be5d0ebaae9cedad78ac8ccc25d312be08f8f85f70109cf7e91b5d5f3
BLAKE2b-256 checksum
How to use checksums
d72ded78d56dd7d9f8e15e5034f3050dc7e2a92e838de2cd9c83d84dffa2dcc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL rebound-5.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 427.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
d510992c1cae62fa06693a2b0284b2fec3ec37cd950451b3d7a1174b1ad9da62
BLAKE2b-256 checksum
How to use checksums
b5a4b298437a2bd360d24510f2bf4e7304930253e779b731c9de04a655057266
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-win_amd64.whl

Download URL rebound-5.2.0-cp313-cp313-win_amd64.whl
Size 443.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5af4e51a8953cced2fa19ef135c24b99f50e19e331809f86c0d3d1eaa2e0e22c
BLAKE2b-256 checksum
How to use checksums
af9401c8eb2956cbdaa95256e9ee897021bb6ab601f26f336b3108d721e66f11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-win32.whl

Download URL rebound-5.2.0-cp313-cp313-win32.whl
Size 382.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
0f27c946426c6643d026b2c39d152b2f26505e6ffe42657951c299f99324d93a
BLAKE2b-256 checksum
How to use checksums
2002fc21b99f2f4aeeaf5e009c1d20ccb16d3b14ea197d6ca9eceed20ecf2b43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 909.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bf292e35052259f49849d9d4fbc34cd15284d970d4a86aa76dcac6b65aafdc0f
BLAKE2b-256 checksum
How to use checksums
c87b566f5205dcb37d4970c151c64f09ca3a248e096ee9e17c371233a2bd1d8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.6 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f22135f67091c9e9b466196b127de2d5bc2afff908107deed96485631b381a1e
BLAKE2b-256 checksum
How to use checksums
68e4244ac47ed0600e09cf40a206c8951bfc931813bafaf8e20bca1981a9af8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4cacda9949f32f03d227ee24927c48a81c2d171b803c15ad2b51fe072068443f
BLAKE2b-256 checksum
How to use checksums
5b5b701b74fa81562eee0089fa411482cb716bef44e6e73d31a7d1b78659c30e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL rebound-5.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 427.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6a8359c846ea00d88f39701244c77190cf22340969f2432bd61eab8f83baf41b
BLAKE2b-256 checksum
How to use checksums
172086f7ac9db20f3a39559a5362aba33fa8d6b32b44868178301736d10dc33a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-win_amd64.whl

Download URL rebound-5.2.0-cp312-cp312-win_amd64.whl
Size 443.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
51bd0d24198ef52c10920e4a8892d2f15c55a779d7267045188100065afdc9cd
BLAKE2b-256 checksum
How to use checksums
cfc4ec90c6672e509a1717d7dbb7ebbcb4df1723428e55c0e43ead9103652bc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-win32.whl

Download URL rebound-5.2.0-cp312-cp312-win32.whl
Size 382.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
14703d82327d467b85118b9b5f0f5bf283c21f37469e0dc25e4a09bde777d17d
BLAKE2b-256 checksum
How to use checksums
26e17f9a17905794e5dab21c88c24a91b691ec344fd59200413d2939a7f0f85c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 909.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e1323a56dfee1fd15807ba9ffb4951494a099e2f3059e3c61f1cac4b88c9a1b4
BLAKE2b-256 checksum
How to use checksums
858b03eb1165f5ce26782d3acd053fff6dafe40775b1225ba2679f17eac74243
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.6 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1a9ef75af99b501dfa8e4f69df1d2381af527267d87842585234da966c0df48a
BLAKE2b-256 checksum
How to use checksums
2ce97e5b156e2459cd099e55e78e8d4fa987aa8ca3916711c620d08bb98733aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c93e10328688830e448a3e7b83115c68dcf48964d0b1258f818186c7495b614e
BLAKE2b-256 checksum
How to use checksums
75fdeab707aa93ae5f7e7347d453457f38ea090c1fea97eb3d707e686acb8ff0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL rebound-5.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 427.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
0c695579ef59ca51e6f3fd2201a21eee6fdec065fc191a9dbb02299c807e6562
BLAKE2b-256 checksum
How to use checksums
bdb411a456d0a0c87f874bf528f3ad63896446bb82b5e2a1d12cf8313207eac1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-win_amd64.whl

Download URL rebound-5.2.0-cp311-cp311-win_amd64.whl
Size 443.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
be7427cd5595d4ddfdec02c33718dff0e41089eead10ee354f2f975bcae2a4c2
BLAKE2b-256 checksum
How to use checksums
2eb0489d8cec995fd948a25e4f7871394f349ba5851cd47b1bb210477fca420b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-win32.whl

Download URL rebound-5.2.0-cp311-cp311-win32.whl
Size 382.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
7b1de982648b497c38185c095f7861d9d03adb281092a469bfd5d6064068541c
BLAKE2b-256 checksum
How to use checksums
0c77d252a5740026305f26918bbc7b8e4594596bd079e120548e430aa8f8f877
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 909.3 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
179823291a6f82c04c935203cc46554bdfa1e10a3cea6b1f8dfb838deec6a651
BLAKE2b-256 checksum
How to use checksums
b440b0be3ed54284666ab32b057a3975e2779aaeb571d0f7bc7dacf7e647a1a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.7 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
28f4d76e20dbd3c04ece1e0c8725c869bf95c1140611b7d4d33f579119bd0b3e
BLAKE2b-256 checksum
How to use checksums
8e4f820b4d491824c6cec0b71673e2119346b2a46bef796ba78f049802808f51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ffaf7f052dc033e48b7d0de3295398861499cf8c980044ee7a3e5bbc3a6a03df
BLAKE2b-256 checksum
How to use checksums
510be9975a3e7c19c41690600da1dd4dc4b7f285565dacb9a01daa14b1d95f38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL rebound-5.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 427.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ac05de2dddf981f0cddf18efdc959d26e238e1bc644af495e97e3c71b0257abd
BLAKE2b-256 checksum
How to use checksums
b1a9f3c2f114c10dc399e98d52da03ee777b12fb32f7b51412eedcdc0cd84f3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-win_amd64.whl

Download URL rebound-5.2.0-cp310-cp310-win_amd64.whl
Size 443.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
354ecdba6c70f6ae213b34da7e1d4feeb8708bf92876fdd2bce9f99a58d955aa
BLAKE2b-256 checksum
How to use checksums
cda8d026702203e0eb1af70df930e20c5125880097adf189ecccf43444bd333f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-win32.whl

Download URL rebound-5.2.0-cp310-cp310-win32.whl
Size 382.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
cb2080f88d1ae3922dc2bb30bcb9f3bdb28415e01dd7c0cccc61696d582700cd
BLAKE2b-256 checksum
How to use checksums
b32a6a246e130ae3e517145a5b2f97b1effa3617a95455d39e266b9f7dcf12b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 909.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4e034bb35a561c32b72d52ff47eee789f076cafc6827fd2e208378c0692a23cd
BLAKE2b-256 checksum
How to use checksums
dd3f84a7f917306a3bdadcde33d534735910b08c3d60e18bc7f4298a55dbb739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.7 kB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cfb2e8ed8b6ef732cc9e4f59a114eb2208d1a91b89636b9056749ef4773b9c2d
BLAKE2b-256 checksum
How to use checksums
f9b0cb440d621b2c43bff122a1b6901b80a5a545a82861427237710b1815c080
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c8824f7cf664ebb407ef6e6642e5dbcc1504245e4e456c28df048613cf76fc9b
BLAKE2b-256 checksum
How to use checksums
fcaea9df27aee3884ea8e3607ac08ceee67ba94a59ad539cab92ecabb86dd5ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL rebound-5.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 427.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1fed035af30a9c8f2709119754c4899a91b3a2848b90a73aea8cefc1e05bbade
BLAKE2b-256 checksum
How to use checksums
36b65379342a65d3cd8cce219c67b69866a7ba398455717f0be0fad3f86d86f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-win_amd64.whl

Download URL rebound-5.2.0-cp39-cp39-win_amd64.whl
Size 446.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
667af1abda138c963209b3f21261dab1c3252cbe74009b2e5a8d7b5ddfc2293f
BLAKE2b-256 checksum
How to use checksums
64b83313aec3ba802a9b739a4ec4dc2e25d43a753b45c9d21b1ca3f62b9192cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-win32.whl

Download URL rebound-5.2.0-cp39-cp39-win32.whl
Size 382.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
716cfffec44c97e7810dad71d79abdccb64ee0042719b3daa0d04278ae29efce
BLAKE2b-256 checksum
How to use checksums
efb2ec3c226f2634c58e85db0b9142b93aaca7a349374d4e6ae9b95b42c56e22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL rebound-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 909.3 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f989f25e2aab861b8a1054946cb63bcb7506322dd7c36f0c23f7d205c5759557
BLAKE2b-256 checksum
How to use checksums
1d0515a4387f547de4a5e7e0dbd91564178eeb88086e3289fcb5d2ed41e5b134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL rebound-5.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 906.7 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e33308ad6b864f5ff731def8a14418a4efa340c8e6450915092275e18fb9e7ac
BLAKE2b-256 checksum
How to use checksums
a286cd909a19d08b6850a1dc728b698885be153e8c5048d38e3c5dab15b14d7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL rebound-5.2.0-cp39-cp39-macosx_11_0_arm64.whl
Size 389.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5fb1d2909c9880f97cb25d1ccb081b4eb6e1fb8ba3631b54c63c50bb1ca1573b
BLAKE2b-256 checksum
How to use checksums
499284b5c63bf11d82481341d999505b46c686d4a2bf16bcbafd041fac4b557e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release files / rebound-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL rebound-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 427.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c3824d1cc8cd2e2380897b551c6733667b7f19ef66d6d4e6924077c1f2f4b83a
BLAKE2b-256 checksum
How to use checksums
39308f7a73b23505a7c5c8ddb4f1830e875bbd1ead1dca8cf35babd5dce3578b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

5.2.0 This release

43 release files

5.1.1

43 release files

5.1.0

43 release files

5.0.0

43 release files

4.6.0

74 release files

4.4.6

74 release files

4.4.5

74 release files

4.4.2

74 release files

4.3.2

71 release files

4.3.1

71 release files

4.3.0

71 release files

4.0.2

71 release files

4.0.1

71 release files

4.0.0

71 release files

3.27.0

1 release file

3.26.3

1 release file

3.26.2

1 release file

3.26.1

1 release file

3.26.0

1 release file

3.25.1

1 release file

3.25.0

1 release file

3.24.3

1 release file

3.24.2

1 release file

3.24.1

1 release file

3.24.0

1 release file

3.23.5

1 release file

3.23.4

1 release file

3.23.3

1 release file

3.23.2

1 release file

3.23.1

1 release file

3.23.0

1 release file

3.22.0

1 release file

3.21.0

1 release file

3.20.1

1 release file

3.20.0

1 release file

3.19.10

1 release file

3.19.9

1 release file

3.19.8

1 release file

3.19.7

1 release file

3.19.6

1 release file

3.19.5

1 release file

3.19.4

1 release file

3.19.3

1 release file

3.19.2

1 release file

3.19.1

1 release file

3.19.0

1 release file

3.18.1

1 release file

3.18.0

1 release file

3.17.5

1 release file

3.17.4

1 release file

3.17.3

1 release file

3.17.2

1 release file

3.17.1

1 release file

3.17.0

1 release file

3.16.0

1 release file

3.15.0

1 release file

3.14.0

1 release file

3.13.2

1 release file

3.13.0

1 release file

3.12.3

1 release file

3.12.2

1 release file

3.12.1

1 release file

3.12.0

1 release file

3.11.1

1 release file

3.11.0

1 release file

3.10.2

1 release file

3.10.1

1 release file

3.10.0

1 release file

3.9.0

1 release file

3.8.3

1 release file

3.8.2

1 release file

3.8.0

1 release file

3.7.2

1 release file

3.7.1

1 release file

3.7.0

1 release file

3.6.8

1 release file

3.6.7

1 release file

3.6.6

1 release file

3.6.5

1 release file

3.6.4

1 release file

3.6.3

1 release file

3.6.2

1 release file

3.6.1

1 release file

3.6.0

1 release file

3.5.13

1 release file

3.5.12

1 release file

3.5.11

1 release file

3.5.10

1 release file

3.5.8

1 release file

3.5.7

1 release file

3.5.6

1 release file

3.5.5

1 release file

3.5.4

1 release file

3.5.3

1 release file

3.5.2

1 release file

3.5.0

1 release file

3.4.0

1 release file

3.3.1

1 release file

3.2.4

1 release file

3.2.3

1 release file

3.2.2

1 release file

3.2.1

1 release file

3.2.0

1 release file

3.1.1

1 release file

3.1.0

1 release file

3.0.0

1 release file

2.20.6

1 release file

2.20.5

1 release file

2.20.4

1 release file

2.20.3

1 release file

2.20.2

1 release file

2.20.1

1 release file

2.20.0

1 release file

2.19.2

1 release file

2.19.1

1 release file

2.19.0

1 release file

2.18.9

1 release file

2.18.8

1 release file

2.18.7

1 release file

2.18.6

1 release file

2.18.5

1 release file

2.18.3

1 release file

2.18.2

1 release file

2.18.1

1 release file

2.18.0

1 release file

2.17.0

1 release file

2.16.6

1 release file

2.16.5

1 release file

2.16.4

1 release file

2.16.3

1 release file

2.16.2

1 release file

2.16.1

1 release file

2.16.0

1 release file

2.15.0

1 release file

2.14.7

1 release file

2.14.6

1 release file

2.14.5

1 release file

2.14.3

1 release file

2.14.2

1 release file

2.14.1

1 release file

2.14.0

1 release file

2.13.10

1 release file

2.13.9

1 release file

2.13.8

1 release file

2.13.7

1 release file

2.13.6

1 release file

2.13.4

1 release file

2.13.3

1 release file

2.13.2

1 release file

2.13.1

1 release file

2.13.0

1 release file

2.12.1

1 release file

2.12.0

1 release file

2.11.1

1 release file

2.11.0

1 release file

2.10.1

1 release file

2.10.0

1 release file

2.9.0

1 release file

2.8.0

1 release file

2.7.3

1 release file

2.7.2

1 release file

2.7.1

1 release file

2.7.0

1 release file

2.6.0

1 release file

2.5.0

1 release file

2.4.0

1 release file

2.3.0

1 release file

2.2.1

1 release file

2.2.0

1 release file

2.1.0

1 release file

2.0.5

1 release file

2.0.4

1 release file

2.0.3

1 release file

2.0.2

1 release file

2.0.1

1 release file

2.0.0

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4.0

1 release file

0.3.3

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3.0

1 release file

0.2.4

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.36

1 release file

0.1.35

1 release file

0.1.34

1 release file

0.1.33

1 release file

0.1.32

1 release file

0.1.31

1 release file

0.1.30

1 release file

0.1.27

1 release file

0.1.26

1 release file

0.1.25

1 release file

0.1.24

1 release file

0.1.23

1 release file

0.1.22

1 release file

0.1.21

1 release file

0.1.20

1 release file

0.1.19

1 release file

0.1.18

1 release file

0.1.17

1 release file

0.1.16

1 release file

0.1.15

1 release file

0.1.14

1 release file

0.1.13

1 release file

0.1.12

1 release file

0.1.11

1 release file

0.1.10

1 release file

0.1.9

1 release file

0.1.8

1 release file

0.1

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