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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

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

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

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

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1.tar.gz
Algorithm Hash digest
SHA256 9eaa00463ad89711b23df2fa9ef678a2734fa44f732721716093d4fd82a3074a
MD5 b56a1dfe95f1479b87baba2efe50b410
BLAKE2b-256 94ab2a9b2917d171114febeef8f4377dd42452437edc739314994fb4e210bdbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 149.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65e150a6836eaf6bdf607ac683bafd54e1bd7b36e1e5ae8f7d30355ea06d0579
MD5 a01341ae2bb8b5c312f9043ee179fce0
BLAKE2b-256 591749d4ed1a4c138746608cf56235ec0df638a30a631ab758445c5c34bc39e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e863886b6da4fa77f13ae88dbf4b0e638e4c60673b11aff75ee518523671fa26
MD5 f116eb3722f5629a665582506d51267d
BLAKE2b-256 9065b46c237aafce968be5a5c18d17874111bfed6957034a7d4c0b495a46d24e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce587247c95cb84327dfd4f543283d99de02845b7d092804156a7d26bdb7d49a
MD5 ea60bf03be9daf0c7857329ded32d6c1
BLAKE2b-256 337c289ab1a2eab82b8fd67b93d46a2b0f8c665258f667088347e4c8b6adc70a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 150.4 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f04755a54c9a75c39979732620004f4cc79a3a083d6ae696d74f6fa0c01b86b
MD5 562831f0e465350bf0c2b9c226164333
BLAKE2b-256 dce7f00f5b3cb0f8c101ca3c911d5da7038ad26f48079e1968e71a976be235d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 265.9 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd993f750303afad066e974f12ce4a2964f0b3464c3a156ad1471436d301836f
MD5 06665b229c18ed56d2254fa491a76dc4
BLAKE2b-256 0e31bae765fd5b51dfce0e2a496985241da382a8c9f761a0dee1723c4bf053db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 149.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7daa0ab2f1bafd98817ddf5de03520f5a141f785ff748f190b79340423e6f5d9
MD5 ba2a0ad4df4ef60eb158c751537f9bd8
BLAKE2b-256 f9cd2036fb979a5b579cb948cd472f06d8632a9bd2f74d9e6b4e573b0bb8b1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68b314671b5f142f5c93fd48368108ae934abee9d0718e0c88733ac8109ceeee
MD5 2a213bcf5fd8294386355e3f0ad3b912
BLAKE2b-256 ee9c5ccb45855f72ed7a61a82fd555fe770165ec9c863ecc330e9df0762858ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27609908c8eccd71e835f16b03535864c2e5014560ad1fd1132da8dba251a565
MD5 d1f4fb8ee8b19d1ca8c1341460253a61
BLAKE2b-256 71b12c103539ba11e9af7dcb695a32d9b27581832b18ec9fa73f195bb2f12632

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 150.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71bac0a5c78df167b91f11f7f1965d2842fbf1c0b7e86cda41dbc5e7f6c29c9c
MD5 79d1d9142a97b33bf0dd65bdb560b634
BLAKE2b-256 ee311bb765fcda4d652559f0b3a5d8830a920312463fd22453eecd18b9363167

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 266.5 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80735b67be28d5d9b3af294b8ed650d0f541b0bd1ed625e97ac92dbe66312f94
MD5 12aa491b43366f60eb05cdc3a9fa0f8b
BLAKE2b-256 7df1403ff6c243867cd827fd5a48c6be18eefc18a6c34c7742840fda6767090c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 149.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f0e3ec97bfe3a1984723f7bc7957bef69a6e8536441dc04144ded54fb00564c4
MD5 af02157c0efaec4e87946f2d0861b578
BLAKE2b-256 3aecccffe89c360fcf47301ed370d929af4b5c1db391e5f0e8b8cb8e47803846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade165d7b36df5067f6c8b52e7e80c69ccd79b26805c8dbe6a5f5a3d1c6d04c3
MD5 2c0974df859bcb0ffd8515f32c25d8ea
BLAKE2b-256 a650c4eb90f5c641c1dd6f6690d61e1da7708b433d7a356a0e1575674ea59d72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86bcba2ff44e00ccdce68f4e3359a578ad9303da91096c593628e09d0127835d
MD5 9e1e635221550930072d62db5841b4b9
BLAKE2b-256 8e28afab32587e9ba44825f243149159f4f0b90ac36601b40084063e5d910c96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 150.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dba674104fd2d4f8a86ea5df7286f50a6db8f06628164906e5234f098bf974b
MD5 5ceed3fa7e496173dc18e2157427e9b3
BLAKE2b-256 b5defc05dee2adb86045fa881978a1a6a76555467d766389272fe85c65dac10e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 265.9 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c3aa39dc73587035a38626a9b711c841d7b4e9d1f9cd5de355f57792adf88c4b
MD5 bc4967aaa7c61872d6a3ba8fedf98d57
BLAKE2b-256 6aaa20f1766a7f619f0b8474fe37b5b835caa0e6f512e4284a4ca1465197ba2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 150.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f49bc407aa6b51723952e717973d9c3947aaada4c53f370fc91b32d9785d06dd
MD5 7fd7af651aa7ba92ec3bf9802735889d
BLAKE2b-256 3f04c0106b9fc545c7ee3a2963c45c083330094caeec486563a2ab83105f28e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29714888e15eefd94bd6c5749822c41d34bc21df0fab6f69d04365e3cb3d4320
MD5 70033e260b301edcdd5437d5ddf29132
BLAKE2b-256 7493b239b881e2a3c581890ce6adb3864cd679563c44c6e1f953df505eb60f00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 149.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91a9481fa978f9e8f896bf6234f7f4e64ec66b9ffab833d1d52fb35cf48682dd
MD5 3c65f317e19baed8767d7f16e8d9c349
BLAKE2b-256 6c2d0fee2d4b271a19e5003ac9e387f973f0be20e13b83ff5c3580468e7da8e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 151.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b2376b89b08c34d1121ca732cb2f63c318d99b30710f837a2aa1be674698433a
MD5 a5ee48e0a127f176c6a6305e98b2c0c9
BLAKE2b-256 c0045f54e89efe5b15e9b3bcdc194c63b6a160ebd0f46a69eabe13cbce1ad8fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63afa53f67e987bdd890732c503083afe074ccfbecd24bf42a68290c4fbe10ad
MD5 7f54fb180280c5844274be4f6fe31c8a
BLAKE2b-256 bbde6ba2d31c8c1e9b22dad518af7602cc0846af479cf8f6b527022b21f0098e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: exoplanet_core-0.2.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 148.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for exoplanet_core-0.2.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 620edbebe0d26003bb5981eab4563790744a2aa30c4b28e57a4a5eddd9f638d0
MD5 ade1cbff81102089a124fd8acd192496
BLAKE2b-256 4aad2d5ceae64d68e730c56267366e16844f1f9a3f0268aae1554a429f9c85d5

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