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.0rc4.tar.gz (35.3 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

exoplanet_core-0.3.0rc4-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.0rc4-cp312-cp312-macosx_11_0_arm64.whl (149.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

exoplanet_core-0.3.0rc4-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.0rc4-cp39-cp39-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

exoplanet_core-0.3.0rc4-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.0rc4-cp39-cp39-macosx_11_0_arm64.whl (151.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

exoplanet_core-0.3.0rc4-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.0rc4-cp38-cp38-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

exoplanet_core-0.3.0rc4-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.0rc4-cp37-cp37m-macosx_10_9_x86_64.whl (158.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

exoplanet_core-0.3.0rc4-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.0rc4-cp36-cp36m-macosx_10_9_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: exoplanet_core-0.3.0rc4.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.0rc4.tar.gz
Algorithm Hash digest
SHA256 0fa14d7544d2481950240545bffcad2dbf318fa3be8748b80670edefd592d64e
MD5 e7d60de54cbccc4934631c453114df76
BLAKE2b-256 040807e78cb55020c620dc37b49144458c77bace9ab69d783e0b774df45f5214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31c0250dd069eeddfd21a89c05d348cfa4288d4657ed7c5799df43fba7177acb
MD5 15d81a248298d73cf791942c874985ce
BLAKE2b-256 f33e0d1e950072f468ae51f3562e236c1359bc6ac68176c6d66592fd6a529f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c878ecd12e40b3c8668ff9c723e782d075a9fa4d54d789492adcf7bf9531df9
MD5 22dab300d11f09c76bba81079c8cedc8
BLAKE2b-256 7d0c3767b59338763d424f1176b006cd1cb0c81e89b003546921ae7d2de589d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06bc0f0c291412e9b73b29906eeb8f4712ef09b42815231691fdfa91634a3655
MD5 6ed2469b000f0a14687880c6f7f2352d
BLAKE2b-256 065838ab97a90a06641963d90d622ece545b4cb3a494ff259063c586e0f050dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cd03350d5589b6578ef2fc32d2adef7ad9ce550ad629849ff43d622b0f48ba2
MD5 34b5b8c318fc2a02ed281a1536f71e37
BLAKE2b-256 0860a2ac81a086941171e488f83bba7de57a14f6b170da181cb5f55dd41c8bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 50c0c36f479fefce4b57c19e45cc3d466ebd1fd98cc0156d1e3c36186246189e
MD5 30a995f35eb0795d413bfec26f2dd158
BLAKE2b-256 ecbbe8a5f8a1526b5af31ec22f6b2bd6fd59ff4ee0953da93a3a89365b2791eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d39125dcd2aca4a32c60677ab628b2100e9930cdd4492c48ef916cb37862891
MD5 4a22f85accb0b54baed34705c7088c5f
BLAKE2b-256 17fa305f540d786d517eaa9cf926e90fd09cccc3f4cfcb5c8c3475dfa51ae798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 294ed2f9c1f43dd9d7fe9cd1506808f3af13534424f2caeb2fd27344f55054c8
MD5 b6db3f871925e4cc2fc6562576a8db47
BLAKE2b-256 0b0c4628a15cbf699fab0387cf50463e65f38d423213ffc8bca84f2f384750a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a87a639fbc4023049cc688867640f7d19db043b418a86d4f343a0e17d74e7876
MD5 dc440f55a899cddaf6a01b4024a6d8aa
BLAKE2b-256 8d850170f2ab432ee11c7efbf52acc8fec750998495329408485fbaa1dba89f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ae9042e524112ed45ca1585588eef90206da546c13b8898824161bb2efe5158
MD5 29fa250a1fed43b5c112cc38b0f00b2a
BLAKE2b-256 2485c57668b6f44c5c5c60070d483fe613bb6b5127bafc2e644a22c5e4b6914b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0f72aeacb4d59e9d85fcfda48b59f41b55d05218b51289e5fedb7cb4014856a
MD5 917c4b7308ed11637874019e2027252b
BLAKE2b-256 75d9f280697cc9c801ea0eb6a955806130bdbaa2511403c3e9242271b0e1f264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8498e2402ff2478ecbdefa1e6c0b3aec77bfcff34644d2d6fafc05767d0a413
MD5 6ab27d1e116d1dda1b44ec3a96b226dc
BLAKE2b-256 4ad96a3130d1dce9733843dfae985bf9438c634b34804034d6d41cb576e61aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e94a0fa63315776855d5c7c3a96c6e74e3dafb424d58305ee0059c103c7a1f0
MD5 575fda649c0358f73664ac65c6314b8d
BLAKE2b-256 5649bc4d73b2c931d8d3081cb378ab38e487bcb554f356c1d037c1396debde39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b5f7730f37e7ae8160b86a8d80b61d3b69efebe63d14f9199405d5e8671419d
MD5 3206fbeb36803bc6c25c1dffb4738ec8
BLAKE2b-256 71cc41745a9af7bd0e9b151e73f4048eaff6da488f58da11bdc06908a56a2167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdbe90edb29d7151b52b7ef1adb429c6bfb41087da611cea3208de821e504935
MD5 e76e4e2c2309b97f08d572470445ffc7
BLAKE2b-256 c5de80f81b504e44fd4824eab2aabb61d4d705bf1a0c263088b719f7be44b265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5b7857a3cec14d16795ba74e50f0ec75e7c537dec707aa121dbb02eb3d7959b
MD5 8558932efad87a488d7782b7ee2b7733
BLAKE2b-256 a4fc612a3002be92d86f3d3351d16db0277a142a769b831da7158d4150544621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0408b360ea35c6c24d1eb4965c59dc7c1aa8742e76abeb2a53e75d7244b2c25
MD5 f0e3bf6a1da2992b1ba06c27c8e32394
BLAKE2b-256 6c97da5d1d49c5526a4efe659f46f08f7142bea5238516340089189097f38dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8adfa4db31b08a2592dcb608c669af4a0cb0460e70788f8e457b766f360322be
MD5 ba2b5652190bf91e26e000c1ef4ab843
BLAKE2b-256 8d2bc426162614e38d2070fe84daeebe075dc55ec18bc60375da643fa1ba5687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcae619531808b964a57c98f1440b1f96b5bad0bee6a61465b1cdcc0d46d7f05
MD5 2a31706c0779af85418fd6b19ea24d0b
BLAKE2b-256 9582c85017acf04788e803da91aac75d38afcfc8d0904ffec0ef5d83819bad66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637c7bb494131c109cf57366891b090f2c1b6c9ee64cac276e48372a3a601e5a
MD5 48bcb0a86fb8e67328dff6ffe614431a
BLAKE2b-256 41849f7de6a6f49b82b9991fe39d20858cad7aa02298cdf80371efc639614b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2feac0d16244ace5b7cb6a26ea02ed8110c6438f753a3a2ae84d607a9f8cd1fd
MD5 2feb0e4fbc2d6c96b7827031dd14da8a
BLAKE2b-256 532acd8cdb22df39a094930858640968b31be1953cf8434693842d17ada81ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4c7d62f5bffa57b0d267c1cc8029d5e0b51f12bd94ec3d3764c874d7ca809582
MD5 ec970856f08622bc39d1da3ac3c3fa13
BLAKE2b-256 c64b232bfadde08a7ae369ee4681ef62a8ad5624fbb568b0388e137977748b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb5a80a4b6dae8c6a99c8506905e07ab1b0882003f0e0da736e264b328ef081f
MD5 7b83ff2de6efa77bc2b39ea2b2b272dc
BLAKE2b-256 e2bf54cb18a706b5225fb417fa1d070a0e6a571ac3a70245b82e10db2789bc95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f4fa87e61c031e26cacea03452987497df19adab577037bff9fed63e1257939
MD5 b22fd3fbedc4b89b3f4e53a20f0274ea
BLAKE2b-256 6f4ad621233375004d2bfb7ee0268d15769f819238058f36085918dbfbcac151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5edaa305876dba44af0f7bedb37060f1218c0a4732f215885fd38c6a0e6e104d
MD5 0dae78abedd677d11766df7a30a3cb62
BLAKE2b-256 b63bfa83a756bb510eb5b4609ac5eaf3b979bd0d83d255cc389e4ddb735ad800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f9abf4e1301620b9e4a2b6b2702df991529c37d90171eb3f5851a2af569f62e
MD5 7136a7ff05e4707ad9fd0860864d49c4
BLAKE2b-256 9618396e7e9a1611e06d5f685aeecd7c6b7cd7b345a083454ca1054f290fb3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6d1a50c17ac497d03732932d2138ad6a8c823dfd56f90b75e41d9bd437710bd
MD5 c4c92c340e776bca76f1d5a535dc20b3
BLAKE2b-256 c29f73304e5dead5f0351af10769f37ec88562fa96d924a5aea4aa7815a61718

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