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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

exoplanet_core-0.3.0rc2-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.0rc2-cp311-cp311-macosx_11_0_arm64.whl (153.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

exoplanet_core-0.3.0rc2-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.0rc2-cp310-cp310-macosx_11_0_arm64.whl (150.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

exoplanet_core-0.3.0rc2-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.0rc2-cp38-cp38-macosx_11_0_arm64.whl (150.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

exoplanet_core-0.3.0rc2-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.0rc2-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.0rc2.tar.gz.

File metadata

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

File hashes

Hashes for exoplanet_core-0.3.0rc2.tar.gz
Algorithm Hash digest
SHA256 c6da5c1e66bfbcbcb6fcd246dd04d3b8a18c5ada38d38ce8e9f90fce753260b6
MD5 f224b0377617c0355fb8fa75ec159d9e
BLAKE2b-256 85aa527160925b9ba086553049c8db23e15d6634aed505a9f15d097a7edd0425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 741651dd96d41ba9ec79a504b12a8a7d1461ca3e18e04963462b74bbb351783a
MD5 1e54ba4d45c134ce94df0b16d6e862cd
BLAKE2b-256 e2c891936b5c1192e4b402bd66dbbfde30f4259c33fa57030aa1e6a77e51b409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89551a9b5a1f333484882506106bb796bd16fc5f4e72daa70039af91fbeb8c99
MD5 647cd2d575fef6ef7ad8a91e4ededd16
BLAKE2b-256 2d89ebf0b36d63ee1a823c54441b19ff231f133a881d81f8adb1905de4e7b811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79e1a5675cbf92eec27886b4c2f7104d6412aa011229e5d799c00d6b13d39ee6
MD5 a64751d5e9dbf7c70e7f762fbb3664ea
BLAKE2b-256 2be20a4cdda0cc0365dce45f45260c78bef34d190af3585af0ef7ede252ac935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4478c502a11592be92535e1d873d89d8c2aafd94b918db93406ebb7b63bfae40
MD5 d33e64cc359f1151dcf979fdfa96e49c
BLAKE2b-256 1083f165931f9d181da295c7c82d322ad37f4dbbc9fabfc982872a9321de0d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58f1ce140cb03080e63c9c518489a018e5b41d44ad938652a7934829b6e2f3da
MD5 789486596dbe69b53136e1f50484cddb
BLAKE2b-256 01201e671ed290b5a4eb27add9d96100cd1b7e28e78dbc76053dc6440bf11fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfcfc8e3addf5b43ad8872a63f339a61e4e3cc437ad3c7cabe84f0d840ffa205
MD5 2ace91c64253d8d4ec1b3a56def8d5eb
BLAKE2b-256 fe04143330bdc34c3e8755c37e5e021881c5922b31b83b375f036d6ba3fdaaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da1a3a03ecf0bbca1e354d43b6d604470766a6d78647552e9c0b458b61856211
MD5 b5217d053cb8dc5235c96d91322572c5
BLAKE2b-256 6ab54d924ddba28aa9154bbbe78e3e9b892bf58060767dd8b9c8741708008bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfd8dab6ebe5900eca03c0c0c3699023a12e6e064109e590b2a824d48e997920
MD5 c0daec94e5a01d6e7b48b6b998f0ccb2
BLAKE2b-256 bd08082c1ec423255ce3e917be692f1fd9cd4db1d50f6ebe7c39f0b6eaab322d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5aa38fd21f78b1ab5167c68bbeaa0832e4fec97b44a8d42e52a05e2a3850991
MD5 c46997784b880ce1a1f489b06f09d68d
BLAKE2b-256 80bd930a4a43a0cef17b81f9f3961c600a3a9ae2f4a53a034fd84231b62a4557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cabec989d1c207759274077b013f149023d12cacb30ebe6ce33b470bc9e247a
MD5 db00bcdb128a8764411c1420fac374e3
BLAKE2b-256 90de9373a8e75df4e6174b154db613f3fb9e4e6d310af9af3d58969b35886800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06872defebc0c185ed2eaf9ebff54aefb833318efed726184d2073f50d1692b3
MD5 d982e5aee236fab90b1d03bfc3a8fc30
BLAKE2b-256 8203b98fe7f443c26c949b4859c4532c5c9312549bd72b6f7d386e928a33327a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37b7f90ed2a6a9a3747d32fef22ac39d41d9455572698c4ed1f36f9767075a2c
MD5 29181cb3d50dcb04282bcbd718dd791a
BLAKE2b-256 fa8ef5e4b2a021b86719076b84244c222da9addf5b5b34513fb8380c01091559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ba9ab347b365cda4413096fee4b77298c0f6813eadb303ac7b73184023688298
MD5 b002461439dc786b885bdfbeb8d728d5
BLAKE2b-256 803fe2d1fd0229bfde92d74015515628dd819c68bd2be7b1073a151b597e7569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7206c442998fbddbfb8fc3f8ea61f9bd74d7ea35dc1b716853810042ab19ccef
MD5 f193b2fd213543e88fa2eef61580c248
BLAKE2b-256 863ead25d20159ad832405cd74a006c2b25092708b3805fd588f62ade10352a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f3111e915585250a7b3fbec765478727f8933e96872f488b840a6c05bca3261
MD5 9ad4b5f0091b94066f38d916bc9b9d5b
BLAKE2b-256 feeb35303a004f5983f7c2236602bac9f1ede9f00d8e6176050a6e4edb0a91ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ece6fba003c061050ccc37d20d124cba869171d57c1e2259d26f053e5b06021d
MD5 ec61710cef2ed0d0c38830dd4e6834ed
BLAKE2b-256 c8fc632ad81d71b2451b62880add06a913e54081113e6bdfcc729bf1b37c0d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 39007214ff15b7172171056daa4f939a2613584ef94cdce5a23d1c5f7a3b4bbf
MD5 ed891c65032215c1a796e79612338bfd
BLAKE2b-256 7c58671f978e62f270e15b5aa072d75c208c10e08db27ae89efb6c8f563b2f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10d6d588a1237ffb4625683f04f2486898a42f23d3230ae773402e6d152105d8
MD5 c3a4d9f3dae61f2df62c40960b51c30e
BLAKE2b-256 e6a1297e0474a859fbeadec356faa940f872907e728e53c72ecde197606f495a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aebbbaedb45d80d0eaef44f9b3b6554ddffc6f21e779e9daa6389ac48dff10d
MD5 1cc51dd280e1bd343232c9d17fffde0d
BLAKE2b-256 2d001611a277d3756a59b819ad6429c408f913ac21b622e03d6bbe232fc66cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b7da69fa09489dc94dc152f0b1e9eca08b80b2b102c60384cb4f5b53bf7bf61
MD5 27089bb1ac5e60156ad45e13020af98a
BLAKE2b-256 8ce18e186a2628a44b02ce480ee0424abe7db8357b59b47b3f549f6dbb7b91c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 10c66a1f8f14fd88a474fa373224ab75f2c01d9d330be488c999d6ec1663a942
MD5 a2dd5e7f643c5392bf307627714eca09
BLAKE2b-256 60d4b755ab17ccc7fc1a42327d8f47f5ed88c4641d7649c8118d7562c6234265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6fd4c1dc65febe2fab0a0c71790705aa79f8fa647923aa14d754f4af0870b8b
MD5 5aaf9eb77b2704af92bd09b59c4d1eb1
BLAKE2b-256 a9235d29734a55f46f06fff85254e6eb50cb19c50fbfa821c7b2b333ee26e9bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26f675ae0b008213ef8957def00fab9d710258a48a294856af69385f8215adb8
MD5 02d68ee544f7a0cd65541920927b3b16
BLAKE2b-256 b5378fb61d096394aed03770b4ce336a96c5120d1d3ea55dd7454322e9efab06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ece019bc74f3c818d41cbf248799b2878f257be99a456846e6d346a27c6648b1
MD5 b96d790328cb7a1c271703ab3318dd9c
BLAKE2b-256 e6b3f12eb44c8d23d81897f6ef1cbfe498e6b113afd3205d844046302222540b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e61f1183af8702492a5333428e8c6af79654ee0372a77457c5320e64ba73cc4a
MD5 c268aec65e142c5648dc88ef3b7f623b
BLAKE2b-256 73bb9edb28f5e128f362faa29706d5d8d2d87b9354eaa02e0d9162822cd3c497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.3.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a7a42ecc5187c65c7e4d651287717018808b12cd7feaa4ad29390f93493f855
MD5 4e301bec274bbf57f458a1f25248bd93
BLAKE2b-256 1eb137ea7c3329a1e9337c14ea49a7dfbb3415f85fa7f25eb0126a80ab146cae

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