The compiled backend for exoplanet
Project description
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:
- 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.
- You might have found an issue with one of the compiled ops for
exoplanet
and want to report or fix it. - 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file exoplanet_core-0.2.0rc2.tar.gz
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2.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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 302acaf169f678af6d5e6590b9c20e5e1bfc705adef48c3161a11e82a954dfdf |
|
MD5 | c76afba39923b2a5deb363082bbca0d7 |
|
BLAKE2b-256 | 28c68cdf81af658617de3eefbd71b76c81ad6aa92da7990f4ee7cbad4fda9f7d |
File details
Details for the file exoplanet_core-0.2.0rc2-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 158.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50e7dded9ba386e02facecbe86621dbeeba26f3236ccefa697b5a501e1000063 |
|
MD5 | 1ce6bbbcbc3f24a580f144733ed7af82 |
|
BLAKE2b-256 | 8b6c51ec3b98bd72b07af3a7b9bf14146ca67acff3adeadfda34886d396da679 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 230.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dabb10af184cb773a06b443e2eef40abdff3571283c357cc5b8fab7fe40e00f1 |
|
MD5 | 21d82598ef6f00e692b8033031f0ae97 |
|
BLAKE2b-256 | d11eb4612f2e826f8b418045290577e1ef634cf5c6b94a27a1cd8a1604a480cd |
File details
Details for the file exoplanet_core-0.2.0rc2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 154.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 686e29eb383b55aaee6f98538baaafb120ea9ef6c937af045e2d33e26856d091 |
|
MD5 | 506613f124a152166ed467ffe71a686f |
|
BLAKE2b-256 | bfefdede8abc6da897504410612a4834843e659d6006e09066a7909127df220c |
File details
Details for the file exoplanet_core-0.2.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 160.2 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 443de0d4ebbf18b5d8533bc39a1d8d99cac83120ce315a8facc3c3bb1905fb2f |
|
MD5 | e00fee6ec808c70bc65bad505949d2c7 |
|
BLAKE2b-256 | 45950e2a1ea2732e6b122553197669abc9eae5c676caf0cfe1862cb84cd50920 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 282.7 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c22d0bf65f476134ff4413e0f346e747dd9b822be000f6877d187fbcdee66d4 |
|
MD5 | a2635ff5a156948c734c30702e4c9224 |
|
BLAKE2b-256 | b0e1f5d5b37d7fcd3216878cfd1f7c91eb4c65b581bb08cf4c714906b4da2d04 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 158.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 139bfede00c4749cc5b6528a29e9d01e6a7fc117ea85ad6b9a49a91e901220d8 |
|
MD5 | 7544b44ac46632cceccc47c7cf37cc37 |
|
BLAKE2b-256 | 6a90d722139885f6a81e983d0836c0a4c993a23385fa09f952035eaa51247eca |
File details
Details for the file exoplanet_core-0.2.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 230.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f683e0045a26f88ed4a8ea48ce67e7919c8c6da49ba50f7deb5b09f76c6a0f6 |
|
MD5 | b547d98081cdf865f549dd11f6426969 |
|
BLAKE2b-256 | ae8050339252dab2b63a7aaa225a3ffed894886e4fe330cce1b7575cbdda7bd9 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 154.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70ad60038efd6a947e136c368ea1cd725835e1a3d5510e70c62cdf0ebb9f90ff |
|
MD5 | a44818b396a9a80c50762b0de6350323 |
|
BLAKE2b-256 | 84c32293cfc3d164f97d9a6b7572e8da6f0658434fd696b20da7895023411d44 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 160.2 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cbd067b97e1e0c8d7ecaf9b4eef7ae59dfd2bcd5724b3cb031575136156cb98 |
|
MD5 | b3d04df6d0728bd0fa450bb89ba3916a |
|
BLAKE2b-256 | 125856e0115f8c7d96edc20c7c66338a7b23a20bfd7af835c7a67dc47dddb383 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 282.7 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8458548858c0467478c7bb42e29a8a98e35dee58d25841599b9a29fb48b26d5d |
|
MD5 | 5d84f3507cc8cd0c753d07149e6c0124 |
|
BLAKE2b-256 | b6870d768c0d173ccfd9d46f84cc55ffdf1c3a130ad8e46bdf8c9c0730891116 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 158.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d272a46a1aee8a509f36e880f285bb136993982a895711b123c11e34a4c346b2 |
|
MD5 | cafc2d9d15470cce89b8a678c4cfd390 |
|
BLAKE2b-256 | 02c7cea0bc86a7c77174d1f8234046cc636d027599eebd5c81e28eabf97e94f5 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 230.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87f74106fd491db2886d54cd8bff59ac5283da5725e0449f8e9116e7f364a60b |
|
MD5 | d502f1f853931059054fe0f9b7bc9350 |
|
BLAKE2b-256 | e406b53b34e321852111ebe3541920692867abc6c5419b86a65bd2051d9da21e |
File details
Details for the file exoplanet_core-0.2.0rc2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 154.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70ebebf45283e6c4f3101f76d3a732c6fa8bf4e91f0ce3b77ca0e138af13df9e |
|
MD5 | e4d5a914cc1da6a41cc113754327f7f3 |
|
BLAKE2b-256 | c250b9603489c366764f88a8c1f9e820dd1c827337c2eb569567f270cca74833 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 160.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89c6ac701ebdd5814ac8d7d688bdcd2a081055f0f97a43f9c856411c2a6fe143 |
|
MD5 | 54f60de90d5625772fa87d688b1b54ec |
|
BLAKE2b-256 | 36d39222e475ceec95ff098e11c86653ebd6246559907fef11d64c0762df8332 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 283.2 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e71b09682b42c685f8c44a0c7185fb874ded7e670ca719636f12f4777e41b5a7 |
|
MD5 | dd7b525a914eff519e9f1d9f770f3227 |
|
BLAKE2b-256 | 3d87036b4b610c12ca54785c7aa95c6053ea53cec7c594d3b83b45d2d5d9c040 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 158.9 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc359634300487685a9f9138abd488427aa772854441cb1ccb83f9daa37accee |
|
MD5 | 2ea4958b7464b79820ad5566ce907b15 |
|
BLAKE2b-256 | 13b7ff8bb1dac090f7e8aa3386b0783e2f2a0d85f2762145b8b479b6e27a5e8c |
File details
Details for the file exoplanet_core-0.2.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 230.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 739bbe4b223ad810860a040c646a2bdfed03d7bafcd4236b551e16e67491ce0f |
|
MD5 | b0729569edbddb42bf748cb615ec4dfd |
|
BLAKE2b-256 | 96be906fb5842f2c4a9591630e9a894823da6a62b49ff53f5c66095285ef705b |
File details
Details for the file exoplanet_core-0.2.0rc2-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 154.0 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ecf059481a42c3dbb0b86696aadc77c27805664fffd8dfefd0bb6b879cc7b66 |
|
MD5 | 80c097d52e2be726460088dbe82ab67a |
|
BLAKE2b-256 | 34e49bcf9b607d528f18466d259d36be1d1db58ba43b40318c84ee963804befd |
File details
Details for the file exoplanet_core-0.2.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 160.0 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97630193045fdc99d34fed176cc8dbc6d8070828fc723c69db3fb1bc500ca923 |
|
MD5 | db590d9d07962137aabec6bd1b9b4c70 |
|
BLAKE2b-256 | 3817c085d6c0d6d5b4be89d6407bda801a996d916fede625dde17389bdc4cf34 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 282.4 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eb55defba3380aa98628b68e309962d0434fca1eedac689caf8dc9912325c92 |
|
MD5 | 7dbdcd0f497050f7585eef55c56eb8c2 |
|
BLAKE2b-256 | b03b1461e828cffb4741658c57e432a996bdbf7db8eeaa87160cefd6fc53b987 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 160.1 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94721b17811026f5b50db3b98b04b44662cccc6a3579efc561ed3369335f220b |
|
MD5 | 489fed304075cf833cdf7773d566ba1c |
|
BLAKE2b-256 | 96af97dff516b4437fdbac580b418b850188b7569ab839fca187d67d89b77a91 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 232.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b031746a62e9c982c022df843cf8f95eac14313477ab3f398ba936fed4b984d3 |
|
MD5 | 115559468601594cf819b35351585eef |
|
BLAKE2b-256 | 2ff42f1f8206f46ff75b89955747127d97d74f8fc107ba7b2b7a19634d8f82ba |
File details
Details for the file exoplanet_core-0.2.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 159.2 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ff85af0a40b05281ccd22b38791cbb5fe58ad4afec7cf2776c4f53b254108e1 |
|
MD5 | 4502929bf9a035a04aadc599ff35c7c5 |
|
BLAKE2b-256 | 115d6316424850c006a44d4708febd1b9c64be67211fc543b9403c189a9af231 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 160.4 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09cbbb58445a1632a488e6b39d4b1857ccd4d5432557374e022051ae8ec77712 |
|
MD5 | fd5d1dff34f5b17a3dc5adc28f2603bc |
|
BLAKE2b-256 | 046f2fa277aa46dc5e57f09fe6276541ba2194c3ad53a6b2b7453c8d0fbb39e9 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 232.8 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eca5416bfc35af11a5c0e5ed101a813b3d4957aa45d9a12718e4d057e25b752f |
|
MD5 | fe42e014c8806312b0b681cc6043d257 |
|
BLAKE2b-256 | a45fc9438d38bfc345d529bc31dca71941ef28793f6ba3609fe59e2121893af5 |
File details
Details for the file exoplanet_core-0.2.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: exoplanet_core-0.2.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 159.2 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb7e4df5b0d23f7c39c5af10801f462c73647008f2836e257abb88c95bb1827e |
|
MD5 | 47e3f7f4779e9f02e68dd77fd9469066 |
|
BLAKE2b-256 | 81e2bae768d0bd5f95bfbdc2f09ca687995aaaf2b6ffe3f985f4c2e2eb2d4ae8 |