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.2.0.tar.gz (34.7 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

exoplanet_core-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (154.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

exoplanet_core-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (160.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

exoplanet_core-0.2.0-cp311-cp311-macosx_10_9_universal2.whl (282.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

exoplanet_core-0.2.0-cp310-cp310-win_amd64.whl (158.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

exoplanet_core-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (154.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

exoplanet_core-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (160.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

exoplanet_core-0.2.0-cp310-cp310-macosx_10_9_universal2.whl (282.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

exoplanet_core-0.2.0-cp39-cp39-win_amd64.whl (158.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

exoplanet_core-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (154.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

exoplanet_core-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (160.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

exoplanet_core-0.2.0-cp39-cp39-macosx_10_9_universal2.whl (283.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

exoplanet_core-0.2.0-cp38-cp38-win_amd64.whl (158.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

exoplanet_core-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (230.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

exoplanet_core-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (154.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

exoplanet_core-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (160.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

exoplanet_core-0.2.0-cp38-cp38-macosx_10_9_universal2.whl (282.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

exoplanet_core-0.2.0-cp37-cp37m-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

exoplanet_core-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.9 kB view details)

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

exoplanet_core-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (159.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

exoplanet_core-0.2.0-cp36-cp36m-win_amd64.whl (160.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

exoplanet_core-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.8 kB view details)

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

exoplanet_core-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (159.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for exoplanet_core-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c7d52ce595f355387a4ffe545517f1d9a406993f001ec96dd15342cbf1b4b126
MD5 96e4629e3778199f965a0fabb078b04f
BLAKE2b-256 dd4a2a38cd1a6310ff1d4bbd2a9dbf53ed11b85fda26a68770308de1dd5f307f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae3123a79541524ef09297c28e2389817a612939254d0af2494d2ae685722d49
MD5 ddccb8895c4fbd6788477bceb8d484c1
BLAKE2b-256 d9aa2e7bfbdb19428420cf5595b4b0c65e71343270d6d1865b572da9dfbdc9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 400c0de81fd0e57d4167bf633ae9c1d4d8b7dd96a55034692dd65ac8991ae279
MD5 f687233b043da7775c0120f8ecfdb82e
BLAKE2b-256 13c0994777c12d89740079006d13e6792201c46fe421138b481630be10554fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eb2002dc0a1e5ac6337c3172287d269deaf8917901e662a987e81d0de940b8c
MD5 9c225e85b93213d03e540f4334603c6a
BLAKE2b-256 2f520f2418d3c34c000f4b8a3673cb609541605c5b2b23a20e96dd482dd53d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2cfc6dc66f31e5c800839c2bc62788064ab9780faef249337cd71bd2156efe8
MD5 9fc9c8fd6e636fa962d4600be8da6330
BLAKE2b-256 0186dff44ddccd42aabd4fed54dd4c30997df3d0a38851daee286d9830ca37cf

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7b56df7efc171bebb57be7daa6e2226e312b398c0ce8bbca503ca86b26c68ae8
MD5 e5bbe530adeeda7bbe4bf69db4fa29cf
BLAKE2b-256 cddf1c06fc378507e84aaafedda92747425be313f0dd119fd75e9d6d4f94061f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f4bd084172e180d9b73784d2dd12bad2a259a75a80d38439013a886b2dcd037b
MD5 40b5b665dd9e500b7270a9f26ed4f3d2
BLAKE2b-256 2629b09deb4add99ff3f6014b092d4108bf20578ae1145d55b47198dbb943441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea57615024ce063f77d6716f98dd2d163798c8ec8d7ec033556b96c2f912d8dd
MD5 cdbdc81f0c5d4816fa145078379af6d2
BLAKE2b-256 9993b106631f079dfa5790b1dfcae73fa23b7e479d803fb6ede0a1baaf31c0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18e5b367a1f7b5d0400e93377c7973edcfc600a8c459a5a035eee4301dd43782
MD5 db29e5b255d75e4ca8851f02547f046a
BLAKE2b-256 29fa46e4b9a9ed54115b689ecd0257e09f2852ddade81d3073fef0588a2b66c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 653d648658d6ca25ee60164da9b439d6956b458cd71aac02eec9e7f27f631ffb
MD5 0a95a10fa389527f928cf1cf6ade8c33
BLAKE2b-256 650530a65cde928296d2c01fdf83613e2ac338beffdbc22f03dbe6bb5c567782

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bf719f286de21904cda97fa67aae577f29c8c13594d7bfcb45693aa6a90978e2
MD5 bd5274acf6da962cfeaf332f71fc9c7b
BLAKE2b-256 cda9f155d4bdcf5d88febe5fb8be6799e5c20a9fce0918202d8dc4f89dd31295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea0a3d0bac62f06647216c4ae688b222c4c44ad3b55432da0c52a9183b84cbd3
MD5 060086fa0a4571b719bc6148007c90c3
BLAKE2b-256 d045257f8a5b56579acdfe4f7bc770b7ee7c419ff21469870da32fe98c50f6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a8695ed9bad9bb76ed2c476ca54e4f57e49aadf45b74826840ba73dc6808a27
MD5 e9d955e8fe9457d2b598280824bd4b77
BLAKE2b-256 57b9cf5f7228c8443a7498f2c3547b94b2182936354f0cc833e53de490f0018a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f04ca99f8dfdd63c687246a76118ae065c675ab6084412bd15cfe8793706d922
MD5 13306a450682f95e475a10e62bb86178
BLAKE2b-256 a1fb607f4356823c232f53ac5bccdf3ac9b5a47538de207ab64a5e7d67ce3873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b73a252cf7e3518293f033179cfb283e4c012e2374ec773ba02f9df4e7737790
MD5 2eea4f5d06c4d13c3a61509ba1519b27
BLAKE2b-256 f6346d0022a2b57f24f5a789e0c9c0927c44b0681b9b6d4f661b5c1d09db2400

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9877ace270fd134b02f82f37e7f19b51c8e24810fa98029fe54b340cf76dd6a2
MD5 c4f677713d7a9abb55ea32168ea10867
BLAKE2b-256 077cdeb9af81ecc5f4875cd1c705d14a305634373ef5fb1ed4280573be9f4dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d6d016d41ce7d21e60b6e132df1ea6829474351c50156db5734a2dd441f0fd31
MD5 9633f79588de62ece3c4383799e5805a
BLAKE2b-256 502c889c131daf73513025c049b83497e9bd9316ebd6ab0c62342d8b5b50cacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 705dd0864a1cca2efa9e99b405df0ba3f8a83af3cf072d47eb1d34bdf0397ad9
MD5 fe3a6e5514ca882c63447e715b43e0c0
BLAKE2b-256 6f9c66426e040df96afa2e95d8c96604a6ff065d427de5920b66a6094165bfa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c17185338a8ec2db3e1a5cfcd4d6b47da33d097d8d0c7ab5a63ed94eb03bac4
MD5 7ea9e6c78b4440afa65e621927ee3295
BLAKE2b-256 8d3d1dbc01bf5504f17a343db655e128d6b981fbf2df9f10b12749707c39f825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c547c5f354b4f5e8f47e77abcd99f9a4cce254609c7a0b9c35277f47cdcaa38a
MD5 a355122d5c615de0f147946a41e6c493
BLAKE2b-256 a4d9af3c58959bc606cda1a3b634f1340398431ce4c956cdd977e1e4fa625b92

See more details on using hashes here.

File details

Details for the file exoplanet_core-0.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f8cc66317ffa52d48fb787a2a6cb0095df514f2737b3023a0ce77b5d1c919a12
MD5 c9edb2c300f7ca3031c10af2f41cfd38
BLAKE2b-256 c2dc6f2861cc388c6a35fdc13ef51cdcaf936ffecd560e08bfc07d2850aa0188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 392e0b44ebff21c10bbed4b95be34888d0121d6cc1808a82a0370415872b1fa0
MD5 11a7a8fed349e21d383d10fc4d94cc8e
BLAKE2b-256 3073f94208d19518ca3ff864231073da0e9c3806d5ed62b318ae626b6e206e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab64a9ced7ecae5a00a7e18fbf79616dcd48109581ddbc6cda1abbac327d506a
MD5 5c8f6557a09075626f4e977006760780
BLAKE2b-256 1b474ba6ac67cda4440682e1e62cbb1a221a4dc88f9c1c65b222a273feedc594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d6e26c0ea68673d1253cfa327a0e160f23f834a22ae944bf1615ac6be1fb494
MD5 2b8ed50bd80a8287c437830529b99fb4
BLAKE2b-256 3b14f655da13ce320fc9ee7097ea75a0159831dbdc0e9d4a9f8ecf13d65b314b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1edfd7c57fcd5dad065e2e13544840f48d85b5ef66e837d5db7673b44db5642a
MD5 9cd0d107e1b9ae31667f8a3a7448c129
BLAKE2b-256 e723001eee549deca1160a0f971d1e826240304a41244bcfc64df6f821a0722d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9184ca98d7e1228143b0ff4cec0c6a8c59af26e212226fdb18275edbe93e7e4
MD5 92d1d9e4c96e467821abc28d29e9e555
BLAKE2b-256 75abc4236bf35289a1d18ad1179d114598c8e556ed7e4ae485bf0a300213b22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1aef91ac73eb37c82291202520a154a808595be09be31c74909fef4d9ee890a4
MD5 5e5abb53ee9014cc7b038a47a3c56199
BLAKE2b-256 2b78e22f0795765fc2fca81d5f582108f56f038908c9ae9725f60b3a271dd6ea

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