Skip to main content

An open-source multi-purpose N-body code

Project description

Version PyPI GPL Paper Paper Paper Paper Paper Paper Paper Paper Docs Binder REBOUND (C) REBOUND (python)

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.

REBOUND 24 Meeting

REBOUND 24 Virtual Meeting

Join us for the first virtual 2-day REBOUND meeting, aimed to bring REBOUND developers and users together. 1 day of science talks, 1 day of technical/hands-on talks, discussions on REBOUND's future + social events!

Abstract submission and registration are now open at https://hannorein.github.io/rebound24/.

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 readthedocs.org. 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.readthedocs.org

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 .

Related projects

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/

Acknowledgments

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

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

Contributors

REBOUND is open source and you are invited to contribute to this project!

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

Project details


Release history Release notifications | RSS feed

This version

4.4.1

Download files

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

Source Distribution

rebound-4.4.1.tar.gz (320.4 kB view details)

Uploaded Source

Built Distributions

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

rebound-4.4.1-pp310-pypy310_pp73-win_amd64.whl (294.6 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (300.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (262.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.1-pp39-pypy39_pp73-win_amd64.whl (294.6 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (300.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (262.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.1-pp38-pypy38_pp73-win_amd64.whl (294.6 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (300.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (262.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.1-pp37-pypy37_pp73-win_amd64.whl (294.6 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (302.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (262.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.1-cp312-cp312-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rebound-4.4.1-cp312-cp312-win32.whl (252.7 kB view details)

Uploaded CPython 3.12Windows x86

rebound-4.4.1-cp312-cp312-musllinux_1_1_x86_64.whl (729.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rebound-4.4.1-cp312-cp312-musllinux_1_1_i686.whl (655.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

rebound-4.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp312-cp312-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-4.4.1-cp312-cp312-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rebound-4.4.1-cp311-cp311-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.11Windows x86-64

rebound-4.4.1-cp311-cp311-win32.whl (252.7 kB view details)

Uploaded CPython 3.11Windows x86

rebound-4.4.1-cp311-cp311-musllinux_1_1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rebound-4.4.1-cp311-cp311-musllinux_1_1_i686.whl (655.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

rebound-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp311-cp311-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rebound-4.4.1-cp311-cp311-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rebound-4.4.1-cp310-cp310-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rebound-4.4.1-cp310-cp310-win32.whl (252.7 kB view details)

Uploaded CPython 3.10Windows x86

rebound-4.4.1-cp310-cp310-musllinux_1_1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rebound-4.4.1-cp310-cp310-musllinux_1_1_i686.whl (655.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

rebound-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp310-cp310-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rebound-4.4.1-cp310-cp310-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rebound-4.4.1-cp39-cp39-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rebound-4.4.1-cp39-cp39-win32.whl (252.7 kB view details)

Uploaded CPython 3.9Windows x86

rebound-4.4.1-cp39-cp39-musllinux_1_1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rebound-4.4.1-cp39-cp39-musllinux_1_1_i686.whl (655.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

rebound-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp39-cp39-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-4.4.1-cp39-cp39-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rebound-4.4.1-cp38-cp38-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.8Windows x86-64

rebound-4.4.1-cp38-cp38-win32.whl (252.7 kB view details)

Uploaded CPython 3.8Windows x86

rebound-4.4.1-cp38-cp38-musllinux_1_1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

rebound-4.4.1-cp38-cp38-musllinux_1_1_i686.whl (655.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

rebound-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp38-cp38-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rebound-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

rebound-4.4.1-cp37-cp37m-win_amd64.whl (294.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

rebound-4.4.1-cp37-cp37m-win32.whl (252.7 kB view details)

Uploaded CPython 3.7mWindows x86

rebound-4.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl (729.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

rebound-4.4.1-cp37-cp37m-musllinux_1_1_i686.whl (655.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

rebound-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (780.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (708.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp37-cp37m-macosx_10_9_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

rebound-4.4.1-cp36-cp36m-win_amd64.whl (300.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

rebound-4.4.1-cp36-cp36m-win32.whl (256.5 kB view details)

Uploaded CPython 3.6mWindows x86

rebound-4.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl (730.2 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

rebound-4.4.1-cp36-cp36m-musllinux_1_1_i686.whl (655.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

rebound-4.4.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (781.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

rebound-4.4.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (707.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.1-cp36-cp36m-macosx_10_9_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file rebound-4.4.1.tar.gz.

File metadata

  • Download URL: rebound-4.4.1.tar.gz
  • Upload date:
  • Size: 320.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1.tar.gz
Algorithm Hash digest
SHA256 9f0a0ed70781fc0b5e512e965d4cf48b8681956acc68d25ec3c3780d72d8d082
MD5 acd0039f697b2f8155a9174940d23e73
BLAKE2b-256 d7d2a8e9bf17458b8d045868d35ec04034f4e3937ea613583562eed6bde21ea3

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c66334068c5579668b60ceb9bbd8814f0eec90e753a1a5e5d4faf34528f3ff16
MD5 7af314a870376af2c2ab00110118d84f
BLAKE2b-256 dc039d8a10aa90963332bd0572820bb0ebd7186416bacb5b694cfc17a57a16d1

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abdd799a18978fc130a310038c796c9c2c44ef557ee85bac715c6ac1f459b215
MD5 130e66dbbafbd7c1cafe105d14ea907a
BLAKE2b-256 96bd2d34775aedd33cdbb5033a7f048da7d315df2b707396043d736236d75384

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cdd9b5ea348a0ae28c862f10fb403ce398248457d10a86e53128a08f6fd5edd
MD5 bed832087abe805fcdfc94b37923a7c2
BLAKE2b-256 df744dca610b6ab395e495eb66aad6d675c81c92a2396a58740e6c335dcd267f

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ec8b596d19e00cde636d45f5a0e3d08068df05344f16d2b08a70b466a54fa95
MD5 31e731c93e3ef806846e2719a10af694
BLAKE2b-256 bb86cd15f72aadcba5481ba89cf4e0d4eb7c41f145180ce661d38e8882d0ac1d

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aa838fe50b005c0305a5a7a0e3ccdc699648a47d67f6c72590246b1b226bbea3
MD5 403e2a2d0607abb60f840642af9f78c6
BLAKE2b-256 72d40379ef9d3356eb44dcec9a913a0dbc21d06d14c6e22c88aa481e8167162c

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73a27b3532c7624adc79dd04666e6729b6c601f987a0f78185d2b160c238f022
MD5 987d3d21e58d4a9ef1ca2a366995f4a2
BLAKE2b-256 cd6e3b9eb7575163fb5d7bf42be7789d37ad79d6f7b28dc043cba0640f329fa4

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a208c568f882e209e22ebd93bc6eefaf31a8e93daa894b94c694ae1a0e1e881a
MD5 3a8fb5ef13e2bce815be74884a82ee44
BLAKE2b-256 680fdf3752798a0715bfc7273aadd91bf96dfb29e7f8c2bc62f68e19fe7f0edc

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ef7f03af9bfb361ad65266b70cb6f71e8bb9efd8b9c9801f29ee92ef2324514
MD5 1b5223a76e911f9bb7c70b6dbf5445f1
BLAKE2b-256 d83912209573e29d08414fd8aea80d52cf45b9fc452ce65eb81c78dea327b0a8

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 edb5ebcbdc99ed120ee86812f76028a9502a79136e3ea72c4195e952aaa4c328
MD5 658d96489da1ff9f19708c5aa15c4887
BLAKE2b-256 b8cfd06528eb0720d831c5a74038528c13c64b9cdd7e537d3aa21c859458f5a9

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bcfe2c531b0a1da37b2e77ddcd2ba830ca208eea41c46d85662ad5fb6f54336
MD5 e16e01eb5c64e504b1ec9a8e9ce7d442
BLAKE2b-256 153f6fb74798377207ca8921ee0359e75d9719ffecedf799606db25662742ad0

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6124670f280cb846963178dc1890d15d46c3022d64f59df19b1547b18767295
MD5 d984bb75aac00b1bdcbaa9aa710f459b
BLAKE2b-256 705f9c088e831cdb9a97c9badb5bc3f09ca882919119d6f820c375d958ce13cc

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb938196bd2a44f94ee4e5b6ca58eb34b25273f767f78fa73be10a6bf6e3684b
MD5 51b6682a5a23cd80bb6776281b8522ff
BLAKE2b-256 980e7455e9a28d063318db3a3ff6aa65d8edbb5dee916b806eef2a72887696fb

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b6457f4be09ec1bb0a81777eb2b009b704c0990ebf19dbc1311c6f69552fedd
MD5 0de6e973841c89b0614ee583008163aa
BLAKE2b-256 da48e0e25651df9b52d9739257b772e86b76d5ed9045a2800a3961e747fde722

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a8ce02d88c0fc8d455b9908137e157ea74437d158a29e7fe2c420bb521186c
MD5 ebf01ed95650b87cc4e28c17672032f7
BLAKE2b-256 af2cb39f9eb1454e5f2529d9b6941b319acd49ab0f212ae4031caf9f14697b62

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2849739c29c4d80201f60521e420d59d30e753ff6ff8934fd854902d4a4ea2e
MD5 63634bca9bb94b4b6f6fe7ed7b9f7683
BLAKE2b-256 1509e54df787dcd4c0dc656c8af6136794a7eae845d6e5036dc52c324446d4ee

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 429d6a0f9d1920cea8d684b087fc6a96ffba2eee31337f8c0bfb75d1384f6fcf
MD5 3b9baf5957490235ef493658433423bb
BLAKE2b-256 a3f53e50ba680a89f960df2876158920f4df45a4c5953a4b4058971ec1a2042a

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5868a740f3806699a12e8ead504d6118fc5574bb1e0077728732f043e41ec63
MD5 0852c0876d837d8ee9a8a96af6a1ec63
BLAKE2b-256 ceece21c01e307c8b6ae92408727468b6d6c114bf7c51a4582c15f38883cc781

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b67f316b7dbc629e1074815a5f01e9f110690a0d6909b29165d93b9bf458fd1d
MD5 22b5e56fcc6d9c655eed9e0c657ab423
BLAKE2b-256 05bd8d9f1711aa987493a83fd5732c19a39621e2b62d5c82b99a7324a091a908

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5b63d0abbfd809a7ffac9b55a1c49ccf14d33b560445e054e55d9b15a776754
MD5 4ab04ebf77354c55ea998b81761c2d47
BLAKE2b-256 6351073e95c620b372b4a5d95f948c475b0d321e979130aac197a3d90f1e8664

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 841eb0ac4fdd3caa133463a0804ebf6161d9427290a1f51c102d8b337a7bfb3e
MD5 2190aefeca7bc199398fa77484d063a3
BLAKE2b-256 03e18618ab01b75f61dd3fdad37ecede17ac9b7a3d4ff86f386b57b4e31b7cb3

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d08791591ab707a6d3032391836720ff78b372878bdc0d93aac0bcf876ad3a25
MD5 0c86b4e9d03f8baeedc0ab1fbf76a7d8
BLAKE2b-256 b5bfd94e14aac3cd00c6e30a13d0f20cc70efac5af16e8d30ce05a8c136152c1

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5e84567a2839f32a1ffc905eac6a07a6f037a7d77f3cc430b0ac6fd4cbbd116
MD5 e0700837905f4fa676fdf506983432ba
BLAKE2b-256 dcf3bde8b264d82ba50e15f3ac820430d79b87790acddec4e8384646de7f79c6

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12dd423f65ae34190b540eca29d3e04adbccbbe20fd89be711799d4a427ed824
MD5 fb15c861e9ad309a7c201d617573cd9c
BLAKE2b-256 d2433ed2b37da6a22503c83e831b90e420d26399e39984ca90e73df58ab29c78

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 970b34c9662914d5ae5dcad717e42f09a9846347a6c7b636cf6c1973d51952f8
MD5 7d29b1dec8530a4e20c45f50d5a66028
BLAKE2b-256 a1bb36992f362253530a28493b46d85cedf47c9266bacb28fd5eff7ccb743866

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91fad4bf732963c9153dbe496ab9354eface8ef7cac392dc85f0e437fd8c656d
MD5 6867104418000b4d2ab7c2768aab24e4
BLAKE2b-256 086dfafbe9c95b73a764d0a82b0e0de721fbd4719f0bacfb8cf292cb9f85a1b7

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 85abf4930a9eea8909dff4cfd98978252dcee3c3c7b2553327243977d620dabb
MD5 2eee2ecdd77b7b6ee994ba507975dc44
BLAKE2b-256 eeddc82dc3c3f61792b6f870eb3726c5e36872c342fd3fd89a242580f926507c

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42aa38c0bc195242c10522fcfad293c35c0fe45517de2812af4c5badd2964b95
MD5 fb924b9da02883e5688a1775ee1d4c5b
BLAKE2b-256 0c9a5c78d36eab31e4173e6a1d7fd29795dc6cf48e6d0e42afe9b25a9dfe7164

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dbec558d513ad444b56ce0c5e8b2aad019fbd6230d154f30c9fb33407b1bcaa0
MD5 52eb88308af114028d69a9cf7b724908
BLAKE2b-256 e525152e36efe8c6ddfcb548597952967bc3501a2e7e07c7b461ff60c6ebfeaf

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7124453d4b11bb921aebb77a3be2f7d86009abe1bc7d79031b4081acadc92a
MD5 720ddd037d246b5ed41ce72d19316683
BLAKE2b-256 7ae12c5fd8be3270900730eb05d421aeedf22fdbc1223f03061d566da0ec4577

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbc78fa30f44e559504d30939f7c909a46397f942ecdae1d65c1a0076130cdb4
MD5 d21f89a90794e476ebd76cb894addd68
BLAKE2b-256 e3b45e00a70ddac0212422804db5b6b2f646fb386151ca536e1d18aa92454c3a

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a103c0fb424028d86133645ef616ec5959679bdb0aa1916a5288df2c8f258ba
MD5 1cde7d19ac61681177871872c1415559
BLAKE2b-256 fe017bdd713fd0c7f0c7cd4f613684fbcc177389938f3a338c88260ef201c6f1

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61bde333fe1aaffe75179bfc031d4b7cf2e2d15c064ba60660e3187f1b0c6c48
MD5 f2ee58f4d1855bd54996cbf00b2543d5
BLAKE2b-256 31ca9141dcf5be7fb488a34c8d8d24c4f95dbdec974ed2fc60ddff67e916d1ae

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a5c427317bf05998843c82c90156b4c4af59e5b2ff517ff18db13363928564e
MD5 2d405a917f6d698e3157b921c0f8f0d8
BLAKE2b-256 6c7e5c39b2402f59bedd18be507dd44a3434fbbf6acc1fc1171d09bab486bc90

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4ba71b0df7b7602124224399d127e3ee23e29afabe6699c3d5168cde91e1aa37
MD5 261c6fdae08d09737468d13170c24803
BLAKE2b-256 235f48f8360b4d638d7e176af5358049fce218b2e94b38802c7dca5a18e79a92

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2dff966b0997ed83b32e6e07962b75c33de1dd4b93585035e259a40c04ef033
MD5 df39c6aae3ee751526bf0c83330f58a2
BLAKE2b-256 fd9ba753206bc68080511ee6d71cf327a98969fedecdbdc6077f8d9033603223

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 31d9e2688e268d450e3323449cbb1d9edade742263b0ed52b602e16fea0af596
MD5 b89f633daaa668647ae6ceab1d62a3b8
BLAKE2b-256 ade83439d163118922dda4d3294d435f837aa6720747cc1bea3dc28041d8fb46

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70788577d92125974c5b55bbf45a978399b5f04e552fd0ec1c449898c146d506
MD5 68e2e91f20a826bfec30424f5a53ddef
BLAKE2b-256 86b7e17da0fbbd413a45681b1881160d9615fb305d730e198377860464930a1d

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f9f23d307fd490269793149799af28ffde696c735c116233a47f42904e95073
MD5 41b0c766158d0e995331ee806530d80d
BLAKE2b-256 b3c1af221e3e8fc61488fff39b2c2edc0546671fc375129d0b018452ae23e0bd

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb16c5180eab9b01343bf189b0008df809e73af0cc79509ca329cec5e0997401
MD5 13f7975bb1f8900106ba48eb50736c02
BLAKE2b-256 3e2c8f0ed5481f3bd773079cdd6fccf186f6b776ce059d2054587aac23715bbe

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1b3b870d12139ca085aa56283e637e42a006e44af3774dfbaea2adba6ed6c14
MD5 83a5ac8fe8ff1f28451205562aebe38c
BLAKE2b-256 be759140215f989c3aaf13ddf119261251d5555f0c0633a52670723036bb1067

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 daead018ec01c126ee768e3e23e94783e0a969bb664acdecd1311e017c2e86a3
MD5 4ba31c20e3f2b046df4e37d0e59623f3
BLAKE2b-256 32c41d09f02bb885f8dd1b9788603190f4a6c9958f37a8409449bad6f0c02c1a

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7f2d1f9c26cce29456b302d6c5f2e2f7f9a103c0d57fac22e5c67a8032ddd76
MD5 ddd8a1872ee63f23adb7f558e56489f4
BLAKE2b-256 a7cf0cae47a0a979a61aa63f36e11edb3cefc4c0d3482b6a3442f6a0b800b676

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 751fc170db215944bf91a01823174258723e552f61fa1bcbfe4aac89c33f7946
MD5 e0517d173c5c708da377ca6fa3928db0
BLAKE2b-256 76e4e2aa7ced3f9fca317a7ebb6bef8c74b02d7801a56d56cfabb1cff3d02161

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5fe0544b6cf22a8347a1786be95f02376cb41d4d86af619663f1ae3f33698d48
MD5 8490d8bbfbd4e76578a87c309f9e9ade
BLAKE2b-256 d9163916725bb778b4797c2a63a5c83736b838d6ad09c4e41c8ee8ccc82afdde

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddf170887550549c06800d63767e523fa2a6f651f3e470d46401d85378f97ad7
MD5 c700ff3b401c0d2f80f313c49d70e175
BLAKE2b-256 862c0262e5a64417b7b29ed66906283f024b836034cf7cdbd2a9ddeb0036887d

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45c91ce3e74205788319db791670012bc51bf2caaa4b5848d0cdc6c16a73296e
MD5 afa644dd20e98c5b6e608071e5d40329
BLAKE2b-256 daebe76b5ee64be779e913cb87a7db14988908fadd454219e04b8d4d8bd28641

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b47fac78368401afc9111c7aba21b1122141a0f3766885d6091e3b7e44a37235
MD5 80f6c49fe74bcad2cfa82fea8b95523c
BLAKE2b-256 eae286991d2f68f4521fd2e1871d6848b48c4675e3dd0dc3fbaba3bdbe1dcb15

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e345e840a591b6cc47b43e0cf421c8cf94887c35f3db0780ff9a486d39224c
MD5 3ea04de6655fc807e7eb848bc06ff505
BLAKE2b-256 2cddc26d411fc483c70c83e5396ce25d6ac9b707d6738e94f98442b05a60cba2

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 035e8891f074d502b4a2549be5a37d05bbf755154278e5e0828d25f748f7b67f
MD5 224bf35fcd9c28912d014b8cdd84a5b2
BLAKE2b-256 2a17774830e6c662a3e9838dd57ed52a91fef29648adc911fa350be86a54e669

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 88a5ed4b8172f1a79a4672d5325e754241a89a4f8f2d06a5bdb3386e697bf84e
MD5 6c838772ad688ab12bb21bc09f49ccca
BLAKE2b-256 0af89ba9fad13e5f183c9e6b441a0ced8a459cb0ac29e5917d4201d3a9b553a3

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8fb4041150767b3fb96cfda680a3917b8ccec47c9392ddb8111cc42c8986a9c8
MD5 8d3085123bf8f3d4dee79b21617938ca
BLAKE2b-256 d306e4e49bdebd6874139dc854f55c82d136a5573fc956590213d9b6ec0df7a6

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ff6dca5af3d257f5190c435af6ba11046139ba5ffe11eba5510d0e77a9ccb503
MD5 b63d78d8ab49b63f9e52760655c8047f
BLAKE2b-256 83d64e58d4b0bbbc162346c9f0f6f36173a999d689262e806b6a90abb8ada622

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf0ed75d1df14066d7a3e6275406ecbf6fca50adeb347f4cb46e5669c1bf6ce0
MD5 0e2b1dcee52ed2a5c731fba2c5cbbd10
BLAKE2b-256 44f3a58010e3a57b3dd4b9c29eb04e986a122620e1cd8d5759de6e8f3e527bc0

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 274a171158d9bd9c3ffaf8e1c07f8896875d7382c000959a3f4d6079de600428
MD5 bfafdf1a99b05f310b481e89d5fb1b4b
BLAKE2b-256 803a3025850d01c91a23f8f03b7d957c08ce519218fc4c7eb199e75ce3e03c59

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f413f3cfcabfa7f858a3935faae631255846e54ab7e11932767bcfc136fc0991
MD5 336c561eb3c981a6f166750202a15373
BLAKE2b-256 ad11ed9d61439ef0b3213b5239f154bc1d378ccab2c0803a260d767e75923a8e

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38daa9bd34f789d6ca7c82ce0815cf45b1b611fd883ddb35977b288d079ab229
MD5 1c3053a2b40f3b6f05357c09a14df492
BLAKE2b-256 300b745a47129c7e5a9a82fb4fdc683bf69f1b6a57dbcb978013ab3cb426a695

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 294.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a74658f06d65868f8c473ef6ef4b56f3abf65448fe10977e7edadf8edfc0771
MD5 e9a853c0ad3d43b35c8f4fc930f7749b
BLAKE2b-256 f05f22dc8768365be94d1490c5a9a72967d40c2272650e2e421e6969cd78b6ef

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 252.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a4f7a77570aaad7efa5f031c40c8a31bd2b830eca2a08ec449d585a2030d9f02
MD5 a4cb8931e8e84eb28091836d56e0c343
BLAKE2b-256 cb46e25e5b50e25ea524a57027de8eaa9202411a9f1d0b828ec614093243f0f0

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a26247ecb557d88cbefed3ee0e6c3621e03591b7a421ac7a3c1165d8dc0fae6c
MD5 ce50d8440fa404cae91027a66206c2d5
BLAKE2b-256 98fd92fd9a924fbd2961bf7d71b5e12312c9ff7aa7c6d5c849127462c5939128

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f360cc9db2a16875015b32b84638565d2498b956daeb24600a10cdba88f0745a
MD5 8a6085539d4f9715eef5c11931066205
BLAKE2b-256 4621c8da69c626188efccbb934e0476b74e6673a3452381dcc778d43199d843a

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16c72e739577f700ef258ffffdef432025f0c5430efe2c53aeeddd5b1bea06db
MD5 774b76d879e7418b4a81307253f6fbeb
BLAKE2b-256 0a2b88a029b505114c528950789c7e5ccef49a5a99a82ddd1947bab6bd6a8863

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2300232321b9dbd7a234a6af5665b6609c518ab622814cfbf234b498a4e9f53
MD5 4e1ef3e293ab8f43dfe46d3fda04ec4a
BLAKE2b-256 679f4da3de665d9c4a58d9beecfa9f35a404a390f0ffa0e26c15e2e6d3e77174

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d1d691c6fb06ed25066a53f0eef9921c9c888e6706ae311aab53a6560467ff9
MD5 597c4062cd95d50e6ff97bb7b4fdaf49
BLAKE2b-256 a72870387686d61f7a6857a36ed9db1c7603b777ecfae583354735e43b67192a

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 300.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 29a22680bbe030d6b10ef0aece44e0737ac2f30989b84f7e817aad4749e198ee
MD5 42019e8dda97e9676bf45bc5e857070c
BLAKE2b-256 c0d3e5c2a8967b24ee5685a3e60c80baa730b24f2cf6a0f5684ab19f873694ec

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: rebound-4.4.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 256.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1da751981ed9a3797ac6e049b04622c941c8afc34ecde6e981ada40d2ef34a04
MD5 a9da57e7bda601a6402e14cdc5509261
BLAKE2b-256 10cf43c304114d81b95038981bcf243bf23fa6416d47747dcf300b66d052a401

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c42d2287c2266272f9c1e138abc5db46a90093bad3aa1ae5c50fa90304d6d98e
MD5 e12c20f57fd685973cc1d203cfb1c4a1
BLAKE2b-256 6ec39536d0d4d1641821cc0ee9eaf52c04ddc6946a42299e65e111ef21e3168e

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 85122272979819cca7bf1ed1415dfb637c5b146c537e44191e0948fe652a2bdc
MD5 ef8834709db7a8b566c7c9b9b0ebce15
BLAKE2b-256 47a7273fc1304090baa0b8e82e36cefb6eac6c89bba9247351c9d090b286a861

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1031a76e10f37a9d86bd1929f50150c5da3ae785f5869198223955ec29b8a19e
MD5 1dfbc08292d448c113ca3fe0f7904fd5
BLAKE2b-256 bb188b5ff967276befd8c11c4984bdca6d2aaa35883571651ffa0e5ca4d5a807

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 564d45bb2fb7ba17297bfe1548ceb196d7f043574a5fda5f3f33aaf98a73c539
MD5 32c898f7621828565e0d0cca6027bdcb
BLAKE2b-256 643cc65c31916cb844801420177953ba90077dd90c6b52a87309e15bcbeacf94

See more details on using hashes here.

File details

Details for the file rebound-4.4.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1026e0bf07643587998072f2fc5bcdc999b47667c1a6b04211f86431560939a1
MD5 1caa12af43058fc60cfa9ef12bf96833
BLAKE2b-256 72cc48da42ed0037d0f3687f7c8a9b7984cc88a6d45cb93bddc84ac11830ee93

See more details on using hashes here.

Supported by

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