Skip to main content

The compiled backend for exoplanet

Project description



Tests

exoplanet-core

This repository contains the compiled components for the exoplanet project, with implementations for NumPy, JAX, and PyMC3. Most users probably won't install or interact with exoplanet-core directly, instead using it via exoplanet itself. However, there are a few reasons why you might be here:

  1. You want to evaluate a quadratically limb darkened light curve or solve Kepler's equation in numpy, JAX, or PyMC3, using fast and well-tested code.
  2. You might have found an issue with one of the compiled ops for exoplanet and want to report or fix it.
  3. You might be looking to build a better alternative to exoplanet.

All of these are excellent reasons to be here, so welcome!

Motivation

This library is developed separately from the exoplanet codebase for several reasons, but the main one is that the code in this repo needs to change at a less frequent cadence than the main exoplanet modeling code and there is some cost associated with re-compiling the backend. I'm hoping that this separation will make it easier for people to contribute to the exoplanet project without dealing with compilation issues. This also means that some users can use just the computational components here without the heavy dependencies required by the exoplanet project. This might be useful, for example, for people who just want a high performance solver for Kepler's equation or fast quadratically limb-darkened light curves.

Installation

The best way to install exoplanet-core is using pip:

python -m pip install exoplanet-core

By default this will only install the numpy ops and its dependencies (only numpy itself). So if you want to install the dependencies for the jax or pymc versions, you can run:

python -m pip install "exoplanet-core[jax]"
# or
python -m pip install "exoplanet-core[pymc]"

You can also install exoplanet-core using conda from conda-forge:

conda install -c conda-forge exoplanet-core

Usage

If you're developing new ops or fixing existing ones, you'll probably want to skip to the next section, but if you just want to solve Kepler's equation or compute a limb darkened light curve, you can use the following snippets.

To solve Kepler's equation and compute the true anomaly for an array of eccentricities:

from exoplanet_core import kepler

ecc = 0.3
M = # compute the mean anomaly as a function of time for your measurements

sinf, cosf = kepler(M, ecc)

# Use the true anomaly to evaluate your model

To compute the relative flux for a quadratically limb darkened light curve at some projected center-to-center distance b and radius ratio ror:

from exoplanet_core import quad_limbdark_light_curve

u1, u2 = 0.3, 0.2
ror = 0.05
b = # Compute the impact parameter as a function of time
flux = quad_limbdark_light_curve(u1, u2, b, ror)

where u1 and u2 are the usual limb darkening parameters and the resulting flux is in relative units where 0 is the unocculted flux. Some other implementations that you might be familiar with return this value plus one.

API Reference

exoplanet-core currently provides three ops, but only two are intended for general consumption: kepler and quad_solution_vector. The three interfaces (numpy, jax, and pymc) are designed to have the same API, so you can import them interchangeably as:

from exoplanet_core.{interface} import ops

where {interface} is numpy, jax, or pymc.

kepler

sin_true_anomaly, cos_true_anomaly = ops.kepler(mean_anomaly, eccentricity)

Solve Kepler's equation and convert to the true anomaly using a fast method (Brandt et al., in prep) that gives nearly machine precision across the full valid parameter range.

Parameter Type Description
mean_anomaly array This does not need to be range reduced.
eccentricity array Must be in the range [0, 1).
Returns Type Description
sin_true_anomaly array The sine and cosine of the true anomaly
cos_true_anomaly array evaluated at the input coordinates.

quad_solution_vector

soln = ops.quad_solution_vector(impact_parameter, radius_ratio)

Compute the "solution vector" as defined by Agol et al. (2020) for a quadratically limb darkened light curve. This can then be dotted into a vector of coefficients (a function of the usual limb darkening parameters) to compute the integrated flux.

Parameter Type Description
impact_parameter array The projected center to center distance.
radius_ratio array The radius of the occulter in units of the target.
Returns Type Description
soln array The quadratic solution vector at each impact_parameter.

Project details


Download files

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

Source Distribution

exoplanet_core-0.3.0.tar.gz (35.3 kB view details)

Uploaded Source

Built Distributions

exoplanet_core-0.3.0-cp312-cp312-win_amd64.whl (157.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

exoplanet_core-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (149.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

exoplanet_core-0.3.0-cp312-cp312-macosx_10_9_x86_64.whl (156.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp311-cp311-win_amd64.whl (158.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

exoplanet_core-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (154.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

exoplanet_core-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (161.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp310-cp310-win_amd64.whl (156.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

exoplanet_core-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (151.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

exoplanet_core-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (158.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp39-cp39-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

exoplanet_core-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (151.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

exoplanet_core-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp38-cp38-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

exoplanet_core-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (151.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

exoplanet_core-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (158.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp37-cp37m-win_amd64.whl (158.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

exoplanet_core-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (158.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

exoplanet_core-0.3.0-cp36-cp36m-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

exoplanet_core-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

exoplanet_core-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file exoplanet_core-0.3.0.tar.gz.

File metadata

  • Download URL: exoplanet_core-0.3.0.tar.gz
  • Upload date:
  • Size: 35.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for exoplanet_core-0.3.0.tar.gz
Algorithm Hash digest
SHA256 4a738d690179133f581b5db86ab942f0f76118dc987eeaa48f7fc044ca6c4d55
MD5 5111fa35bbace21009687e44606a34f5
BLAKE2b-256 1fb144f38823d257abae0bca10f2925e2d702e51f6a0e443e9788e27e9997550

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb0f71d80004271a8e9b19a3de01b8dfb06933014e2f8bf343244ef4077ea5a9
MD5 e2d5b3a6b47b65c403ef30f3fb6aaf44
BLAKE2b-256 576baa94a814a0ee72c2e164624c8e06855593affec21f501105f488c703b35d

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55111d2ddf65b8c587cac5f75d80e4dd866821175e5882c1193208893addcd60
MD5 2ba156d548eec6a1dc11c6ec6ab45ab4
BLAKE2b-256 40f6acc806de4607b905564189d7f4988eaf6498f245ebf31b0a28439694fa30

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc9de3243f467630b962a240bb03d07780aceb94106345acae3e5662e34beee
MD5 81dadf3d2b50151807c10b311ec5f805
BLAKE2b-256 47b3d4b0cdd2d5419624226fa58424adedef1c7dd0831d8d9d8264bf080e6ffa

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b37ec591072b4b6eb8b274c13489ceecb9dfa4463747d5a930da4dfb196a477
MD5 06d60dcf6a6792f9c08675ea4cdaba6e
BLAKE2b-256 31d62ffd206dbb8f38a189760fba8d516c8d0ac17851fb65e3f52a250b425269

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31768303200eae338c146a5cc5b7ffd0e3a5494ff2298308104f43219450395f
MD5 8c4c6784365fc1707010bdb2301cc31e
BLAKE2b-256 18d69fed87bdfa163e4b39f363a6ae65525d6c1f8aaae36b2cc3c70fa8261f79

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3db1c311adfd3447c71314450c5d158c06b01ec285a5fb64cda6adf96bc64f5
MD5 6d18e793d53660b9ae179db32f61b60f
BLAKE2b-256 ab5727a6a8e92ad6661398673fd809c2e8fa5693a1f95df503f928a073da2d6a

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15df56df921d92b059d6fee4b198f41d2f9246728e41f410733cc8e6b22a590f
MD5 1777d7b98e4951f7f0c3396e89221594
BLAKE2b-256 55ce11d3d320bfb5d1674963b243754242fce66900c88b99329f66eaca66244a

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8969918e073e0a1114b918798701830259207c1c66983423f8adb89a5e32e94
MD5 c061c8bf9005b603bf2f557929f919fd
BLAKE2b-256 757dbe697de1b1cbfacc2bfda8c45d30ea1b56a9dbc9b2c9b95878cd2e455b06

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e55b083f54b2c17aea91688aae80a9e3f65cbc35a3667a4bb6fc59f256c0120
MD5 460ec1ebe423ca2ccaf32829f46d40a2
BLAKE2b-256 bf256ef067486e427fc3e05f6fcbdab97e96ad910f6b1903fe44511bd61681cc

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e31930c52ae7096123c302ca8853691c7e5ac291590a9463067f2890a06b2642
MD5 cc8d73606b70282d6d04ce32b0832fe2
BLAKE2b-256 42e4f5c0228ae83e742f53a90c46d1644bebe160c6b68d39e2633da265b56bc6

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a93eef023b41727e0f503de7151444a859a87c81fbda4d835a8ff9d435c44e0
MD5 8e06666c7946e2005ddf7059999d40a6
BLAKE2b-256 6a0b572a325e264d62ab9e8648cb33b5e1c067ef327753e49e4dde3264663252

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cdbdebdc16126a28c597796ac4bada6fa58ec81a461aef27597a792327359ef
MD5 efd1af8710bdc38b77fe1fcaa259b417
BLAKE2b-256 98739881931417e3d2b231f0ec6b27e57f2dc543d4711df6429bea43054f022e

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aadd862689e668f2c8e52f194cac434cb97864e7097c599ea9ff18e6e3cfecc3
MD5 c7a5a57eec3ce8a101955cc43b547f03
BLAKE2b-256 b61d108eeaa245651ce97741256e7043ecc0e2d7dded2a5c8663ad920f595e60

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1c070e8a43c090f2753d03d6a98830e93f2ea297f6bf21a9bdb771ee1b722a4
MD5 f14b8f42651778ae4fb8455ea4afd69a
BLAKE2b-256 1d410b3f1a339815aefb2b524d777678672cc0e2e79726b69e051f8e96560e28

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 177bb98d3284cdb53ad9f078f94bfee44d5635a7bc2fe8d8598291308b1a972c
MD5 7967a067a6708eea8113512e35740be4
BLAKE2b-256 cdc67d66de667a8400e212c2327a4042fae9dfb205db27ce3f3dad0ebdc8da3d

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7aa44cb1cda15626bb252cf1337404f549c9cc23cd8282bb2c1b90857e80b7d
MD5 abd9884a1a306592264a8820a9bd7dbe
BLAKE2b-256 1bf0721d6158f12d0bbc8df0967ae2d39dc38a047a50a813e084a6a040b24596

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 949cb7aa8d8d05111fd16387045ee9c9a9e92ee036463a1683bdc12a880c26f1
MD5 ae1614ff774e6405c6c6ac02ed18217d
BLAKE2b-256 d87bb3ef6d0b579bebfb957c6ee7da16692e25303b15783ccbef7628626cae95

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0deab384a6964c097c2de99dc208b6049fa555d6d6fbf5ac694c6c2333f07ac0
MD5 67f4fb24f298120c0bd1d24d34b6611c
BLAKE2b-256 ec977f71d257626d2c468ef4f5b2c412b2cce8adc9b3df3b450a7627ebf9540e

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b8b65758c3f3edf1bd1586ad0abdf5c1d1aba922079c040de5a645cb9924a6
MD5 87dc5e965a2473676d8d4e3356b4e362
BLAKE2b-256 81a4b0f8645a8b50d8301e68ee888f1857c055e6f026fc1861b368fcebe0b6db

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b233f17cdcadef4d8b2095d6fa10bc7b25ebb780c49dee9fd631f8cfb37036b2
MD5 0277c2ddf98d8c38fbd8f27bd87322eb
BLAKE2b-256 67c043ec76f3b1baa6a9c8c7a676687a9ee6c3e20be4f19385d6cf450f6b0100

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4617bd2e762fc9a917c8a6dea2539b597ccdbb8fba46062a7cc6a4d8a9011446
MD5 59912ca8b517ef36b4ddfe8a1f0b8bbc
BLAKE2b-256 b0c71cfad987d87084582806b7e41fe6bf82de7464454f3685b1cf7e3fb6a4c9

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e45b53299eb8010982e0e509d39ccdedc123d5b49d31cb77c3186f1038352c0
MD5 905589630472224d99e304f3d4659bea
BLAKE2b-256 a1f6b040b392bd63720bfa3209ed27b4ad1b7cb155293c627ce9db534010a132

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44f0c3c434f4e0e0c8c0b777a8690f27926ce0fd73466a5592b48d5cf2a7439c
MD5 593e4a902be0c1384d12ff43aa7c552a
BLAKE2b-256 991ffd59eb17d9f78d500346e1efb51dba8fb45e103fa87a7db1ee050f3011a5

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 01d109bf74fad68fdc5bd7ad0699bdec061eb3480a90f6b8bf66bf989a290eeb
MD5 645d98edd9f0e19f001ed9ca31687cc6
BLAKE2b-256 927b8abcafcd94424c1e53592098b289de22414959e3e8c30c2983eb0a2ec985

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c59cf7aab7d474863ad76bed051cc1cf68d753a5926c3b83cb84343c96477aa8
MD5 7ee4399b9f00e3490d114e61e3cd9cb3
BLAKE2b-256 4eae7af0b3e7f8354af0684cdcc0f305cf49edc3fb73c879b23e100cbfc454a0

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0912b78edd2e4393628f5750feb591f9d2359ebd308bb238647c361a99dbfdac
MD5 45df8eed141403325f26f6b727b90436
BLAKE2b-256 d0082cf87e177ee60d04dca6db43b79fe23a26af346f94f78a7df613cf06e970

See more details on using hashes here.

Supported by

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