Skip to main content

Compute positions of the planets and stars

Project description

PyEphem provides an ephem Python package for performing high-precision astronomy computations. The underlying numeric routines are coded in C and are the same ones that drive the popular XEphem astronomy application, whose author, Elwood Charles Downey, generously gave permission for their use in PyEphem. The name ephem is short for the word ephemeris, which is the traditional term for a table giving the position of a planet, asteroid, or comet for a series of dates.

The PyEphem web site offers documentation and also links to the project bug tracker, user support forum, and source code repository. If you have a C compiler and the pip Python installer tool on your system, then installing PyEphem should be as easy as:

pip install ephem

There are also Windows installers in the downloads section below.

The design of PyEphem emphasizes convenience and ease of use. Both celestial bodies and the observer’s location on Earth are represented by Python objects, while dates and angles automatically print themselves in standard astronomical formats:

>>> import ephem
>>> mars = ephem.Mars()
>>> mars.compute('2008/1/1')
>>> print(mars.ra)
5:59:27.35
>>> print(mars.dec)
26:56:27.4

The documentation includes both a Quick Reference and a Tutorial, which are included in text files within the module itself as well as being available on the PyEphem web site.

The features provided by PyEphem include:

  • Find where a planet, comet, or asteroid is in the sky.

    • High-precision orbital routines are provdied for the Moon, Sun, planets, and the major planet moons.

    • The user can supply the orbital elements of a comet, asteroid, or Earth-orbiting satellite, and have its location computed.

    • The positions of 94 bright stars come built-in, and the user can create further fixed objects as needed for their calculations.

  • Determine where in the sky an object appears for a particular observer.

    • The user can supply the longitude, latitude, and altitude of the location from which they will be observing.

    • For convenience, a small database of longitudes and latitudes for 122 world cities is included.

    • For specified weather conditions (temperature and pressure), PyEphem will compensate for atmospheric refraction by adjusting the positions of bodies near the horizon.

  • Compute when a body will rise, transit overhead, and set from a particular location.

  • Parse and use orbital data in either the traditional XEphem file format, or the standard TLE format used for tracking Earth-orbiting satellites.

  • Determine the dates of the equinoxes and solstices.

  • Compute the dates of the various phases of the Moon.

  • Convert from the Greenwich Time (more precisely, Ephemeris Time) which PyEphem uses to the local time of the user.

  • Convert positions between the equatorial, ecliptic, and galactic coordinate systems.

  • Determine on which page of the Uranometria or the Millennium Star Atlas a particular star should appear.

  • Return the Julian Date corresponding to any calendar date.

Developers

If you are interested in learning about how PyEphem works or in exploring its source code, check out this repository from GitHub. It is hosted at:

https://github.com/brandon-rhodes/pyephem

If you lack expertise with version control, you can instead simply download a static copy of the most recent source code using this link:

https://github.com/brandon-rhodes/pyephem/archive/master.zip

To run its source code in place, create a virtual environment, activate it, change directory to the root of the PyEphem source code, and run:

python setup.py build_ext -i

You can then run the PyEphem test suite to see whether all of its features are working correctly on your operating system and platform:

python -m unittest discover ephem

PyEphem’s documentation is organized as a standard Sphinx document project. You can build the documentation either with the Sphinx command line:

sphinx-build -b html pyephem/ephem/doc/ ./my_documentation_directory/

— or, more typically, by invoking one of the targets in the documentation’s Makefile:

make -C ephem/doc html

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

ephem-4.1.2.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ephem-4.1.2-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

ephem-4.1.2-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

ephem-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

ephem-4.1.2-cp310-cp310-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

ephem-4.1.2-cp310-cp310-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

ephem-4.1.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

ephem-4.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ephem-4.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

ephem-4.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ephem-4.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

ephem-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ephem-4.1.2-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

ephem-4.1.2-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

ephem-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

ephem-4.1.2-cp39-cp39-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

ephem-4.1.2-cp39-cp39-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

ephem-4.1.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

ephem-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ephem-4.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

ephem-4.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ephem-4.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

ephem-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ephem-4.1.2-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

ephem-4.1.2-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

ephem-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

ephem-4.1.2-cp38-cp38-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

ephem-4.1.2-cp38-cp38-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

ephem-4.1.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

ephem-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ephem-4.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

ephem-4.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ephem-4.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

ephem-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ephem-4.1.2-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

ephem-4.1.2-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86

ephem-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

ephem-4.1.2-cp37-cp37m-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

ephem-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

ephem-4.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

ephem-4.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

ephem-4.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

ephem-4.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

ephem-4.1.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

ephem-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ephem-4.1.2-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

ephem-4.1.2-cp36-cp36m-win32.whl (1.4 MB view details)

Uploaded CPython 3.6mWindows x86

ephem-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

ephem-4.1.2-cp36-cp36m-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

ephem-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

ephem-4.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

ephem-4.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

ephem-4.1.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

ephem-4.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

ephem-4.1.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

ephem-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file ephem-4.1.2.tar.gz.

File metadata

  • Download URL: ephem-4.1.2.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2.tar.gz
Algorithm Hash digest
SHA256 d65bf7c85d96ca830de82729d9ce54ba854a9625916d8765c1954c1f29680b76
MD5 155522fe1b4785e871a6dcfc7eb7d8f9
BLAKE2b-256 441ec1add2129931ff5438a8e666449cfa881c90f7b30da73b2a8b75b0b07b96

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6ad36b6faf2b55ea0320facd3a420905023d3a42820177e9a7e1520e5c15c18
MD5 07ff4d93349143e3782a722ac2cb0df4
BLAKE2b-256 f25747f493d81bec14c1a730b9c742ee1675aa41359295069d4979796f44d91f

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e7bd6946959ffb92a20476de4aacbc04844ad45317c8edb44187191c7dc1bd8
MD5 f26d7d1450e4ed7c87a944bd9ef57783
BLAKE2b-256 7aca18effc73bdc0a8dfb0fabae725efc512d0ab764ee427146de2abb9b08e1f

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e82fc8aebe4f37d9bc3e5cc1cd756a5e69e7e8d848eeb8ab57f82a8cd90944b
MD5 07ba346d406eb2f3b603d926cf2d523f
BLAKE2b-256 20f1339a7adfd127c266cfd7b80fa78c4aa78d385987f1c665fab21d25578154

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8b0de2bd800e0c1bb6eca56c35ab47487a2405e02d10e977e04843317e1306f4
MD5 f539ef0d171dbb2b37bad20b370435db
BLAKE2b-256 ae63ef8fa0caebd55505460d5a517f25e5e35df9ff759413b792c9d604782867

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 91b10d9bfd10c324391de468a5c6c249347d465618e6b10923f1e2f5cbf8ece8
MD5 e1430f459463fb11325171d5fd5ef81c
BLAKE2b-256 39f6cc8318ae082e7b3f19fcdeb8112dc2b649959e4e60c88ebe22c5bd8d8385

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e32bb2ce76e520872d44351e5613efea4a04e8316b79fbdd7f748c5d8606df5
MD5 1639ab15a41e46e21c4f2eb0ab781719
BLAKE2b-256 e7bfe77c8757464bdbaa41f4498cb6eb6686e4f48a4370b0f422dad37f90cb41

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8382e3fe2b8b82fe4a465d5a98527744f88709ee8587c7f0cf96b154197c336d
MD5 dc0a92f4cfe7c950204481c928e7b2b0
BLAKE2b-256 f020c5aea6c53d24f9ff74f22f58ab523803165c03bd7f2e5c885ab019c8ba88

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a33c7b63f92f3b2c4f52b26022385bde750045e90b939047b36f12703cab98dd
MD5 f2c17ce963751fbcebb41958b9cd9fc4
BLAKE2b-256 583b0e739d23fee67975ca5869c4dd996cc29c659c1642cc50e26a929984efec

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5c5bc3a74066cad88ace0a3de6382aa8a3abd70520fe500506268f358a92aba
MD5 13ca9422a86e7484a8d7ad920bf62178
BLAKE2b-256 1f94275d6e8ba0e7818a8897cb807de2fe18ae70bcc45c3a06cca54e5197b6bd

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15c059a28bf8a3f0cecd789b1a6b386c3c9f68d648675877721b4968d2d6f956
MD5 470ecc493ae11763a62ba58f7bd13af7
BLAKE2b-256 c3d59d9c045969b1de8a894e1c708e5370cbb11c100df00f15fabeec1ee197fb

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d46d39631155e50d364e5275ca8cb6fc60ea227142d84b190425fb1566a950b0
MD5 52547f35fa6ab06ea3dba13b31740b81
BLAKE2b-256 b444882cf81aef513915531b447ece1e593c3b14507f8b3cd525f5f9e595c29a

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a68beebe9aefd4ef0f11c14ce9fe2f0599fb0bb0236e0b8005723b0ae840d9af
MD5 78d85b47c5d97f38b1121ba3b2de53ab
BLAKE2b-256 c797953242fc31fc8dae4d14f2946b1f8ebef177e34b013fcb68aee88ab6b52f

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 097945a89b7008de2279baeecdfae206a44afb0a0c6d579d142381f5a31e6df3
MD5 4ee35f8d885df331ddbe3b35305b76dd
BLAKE2b-256 a93a352df2f9edd70832903fa1c71e38b89dd305c90f62a507d863cade860fbf

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 279671a5f76d6c04157c7116de965190309867c29ebb314376923e4d076a35bb
MD5 8d54c15ac56e655382e6847ea788db93
BLAKE2b-256 44590b0218d1fad3ffc33a4c6feab900f9477e8bf4cc2b0e69d26a45f2332083

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 68b6d4ec1a64a367ac2ecb747eaf57345c38bd2f11f4a36d2863379e332f5842
MD5 fd24c9a10da1e6d733e6f63b9ffa2b01
BLAKE2b-256 1f81c17ef486b57f6f85e37f7e56279e0a55d26d48799ccd880bdcda25d9f823

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad8902f165348c334bb306aff0a0e6fa8d911db3171b1fcce50dd8518fbcd8df
MD5 597d2b33d6852ab4d8c487aaadd1e672
BLAKE2b-256 2b03fcf21d89b9a7a1c9ffbf09494c9f063da52d7ede63101b416b8d5a7914dc

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fb273fe69f8b08129056dc1be6928c38a0e6cc08266704328c272fabb09a5f18
MD5 30c3188255bdd5d267a1a51420f78324
BLAKE2b-256 549e5882f7d9a2c75aa46985a45fa672706ee510fa6148db0677fb9c81aa10b6

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f55a67f3ebae736b2a1872d8db73e065e5f776bc2171548c91dca28f46c87626
MD5 441b3629b60ffa1153ca499d03de5b71
BLAKE2b-256 8be3c77bcf5627d881d77c342f8789ddeee4316c04d8a729085517670f329878

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4495f16d09239377e51023dc5f389245a88b431783007783a1bc84ebd7c19b7
MD5 a17dc03de62d69f901625490e00b4534
BLAKE2b-256 51f934b39392da4f9747fe762c047f400431117687c564dd86cb5de0a429478e

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfb282b90529f146c7d19a70dc492718324dc2d9749069ac359e74d2a36b1614
MD5 f5a0b30e3241e4ebb25c90a602710dee
BLAKE2b-256 eb0d1a02c2f5e3b4132a42b3bd40dbccc09181c7053e64887cd2c0a0957cca48

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 feef48ff1b8287f7a578b8fb0d52651daeee2ef0a52bbadd710a372f7cd3db7b
MD5 891d0dc37f049d147559dd1fa50fb10f
BLAKE2b-256 a59660d6880d660b337f77abe100207ea1d2730d7c82d28cb0a1ac3adf07c850

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 490200b82ce076b7ff05801ac6de03c17592936883ed79d947f126cda5b0794f
MD5 21e3b30f4b3c69d903a5594a2219a173
BLAKE2b-256 87b221741de6e7b9630105cdaadd25fdce1db6837257a4383dbf97e4b625d0cb

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d04f379fe0c2902178717fd6037f06640112d8ae5831db2389df33f766cd7653
MD5 5f064a6d4a206023a5a6860067a1d697
BLAKE2b-256 9b9e22b514e3ce90f715a0118a12e0decdb7be2bde7c64dfd184cdf30cbe8233

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3b311af18376361dbd3582bad852200ac24877501c7a4415f9c98129008cc8a4
MD5 66e15e424327fa3b256f8c2a150fd6ba
BLAKE2b-256 56dea6fece7e3a5eedf15571678792913953f9b2f500eec583cec7163cf17faa

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d9ddaf8de01ce88be93a0ad7f48dfa4bd71e826ba151958f2d2e5bd98505d26
MD5 50d75c11c2469105606a83ea192ae1b2
BLAKE2b-256 27a5706d6a225589b5a3c2e0c87e58b3bdf52d22e3816752eba5f94dfd178896

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a8a26a3e5dde3a5ac356dbbb8b2a50977016a42c954e219f857be7f0ca311f4a
MD5 9b809ca5ba1a141b05cb9da5c55216ae
BLAKE2b-256 f7c5822fb98ae1bdbef0d67b54c880c2e0128fcf35ec2278e902565ddc5505a0

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 471f10e5c41957e01d35b2858db7d9088047c1da0b84d62328e49f2a9ecd0f54
MD5 80b75b8cf73b04815392c55a01144461
BLAKE2b-256 ace82125d1a634b5721cea6f9a139d9a1f603c102ee50623dbfe00400f46e3a1

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f52141d3a7703f00e89c528c6157dcfbf32b3d979ce9c7fe9fb7b28f2194b7b
MD5 39dc3c4b118e9dc92df7c0de171c9aed
BLAKE2b-256 405840b36cef1815bcd43ac3ceaab4899e2979bb3b329173436eaa5ac61212bc

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e83ed6a37cb09da8c582b9cea44fde1a1e3ac10df529cb06fe7098278a3bf6cd
MD5 fada65fa4264e4a801dff3667e43a316
BLAKE2b-256 bded84f31b0f5b4d6f54e20011475e744103ce38750f98a4a3d1ffe4fadf4ad2

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd1aed897dd0f8e7893f5212ac0a55eec979a3046faf93395c7255d7cf14fb17
MD5 55a93e7010b16c032f2d4c526b8a7c0c
BLAKE2b-256 5ded20a13a786d3a8eca54299feb718e7aa66cb1bbfa47911da5e6bc2c802742

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc2c228d6ee1d64962c4b1cb1126d309a27d40b352dcd11a9ae3237caf329dd2
MD5 d2c825345594d4c9ddfc992111ae02e0
BLAKE2b-256 782c2982fb8153995d404c7531a3937480e52dfec9598322076830b75d7949b2

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3700aaad27d37ece44d207840ac4ebde11fbf2a6a382b064739b39df2927cde7
MD5 5cbcbb2c79fb5c7ef10891a51c17ad18
BLAKE2b-256 b05f916f9c6bed6aeb01d7e5e27d7994337d324782414375c07f9d4b1a73cddf

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e58b33b054823c12b268a7720be7369c054d991ef03e259dc08706cd59e73c4a
MD5 1b885fb918916e78bd60d9562cf5d31e
BLAKE2b-256 e038ac24b92591092abc0ed3d46cb96a49d994209078eafafaa3f6205e7aecd5

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6f41883b3840be141c75919e032a35984ec797643f2c7dda7bc98047db8710ff
MD5 c99ad80d9c61837b349100d2970d2f40
BLAKE2b-256 b860aeca9f1a2123440db9e8583511fea472b6aae058d65d964ef947a4db7461

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3c14c89739eabfff564134276bc535b8fff4181f9ad04665938abe9e77e5a5a8
MD5 f879efc11537a5bfe509c9c0fd1db643
BLAKE2b-256 173656c6dd6d28b6bb687dfe2046f3937b6dc7e256aece7f5ceea3206fd122bb

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48f20bafba4c77870b3f74bf700451d97ab881934e6358682dd0cc7d843ffa5d
MD5 b07a951810499da9abd95c5271a0cbb8
BLAKE2b-256 793fcda3d0e3e0eb09430e5cecaaf2bb85751b260d66b6da8c769e358f8c9b73

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 caba8468e8003b5028abac71ade070231b9469f8a0e93a283ef85f996b24a446
MD5 d93fe3854b3271167aaabab7688595f1
BLAKE2b-256 def97f2d3e68ff4c7f8667e2d3b9e011cd1646a57526e1bcb28934a8238a9037

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0a12836de89569512675982ab4e46f52d1ce5db644ac0ef7874e3c222413d966
MD5 13aeef8d4c81bf4359ad876c6a43fd99
BLAKE2b-256 e9eccfc0eb6957cf7288d83d803ea75bc03185c50e7e3b18dd2e83b10d42602a

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3f3222ffa86a6ef50950c135329076c2bc6a6af85d8b5a659011810513c81a8
MD5 e9c8b3357e0e1cfa7cc2375fa33ff2c6
BLAKE2b-256 dd8ca5365fc5bd1cf51fed9f5afc13a9f345beae526a8aa9a89c46cb63ac50ac

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d39398179b21839431b5a80532580a995e402913550116193a50c4edd19d4b15
MD5 564eba3814600356fbe465a69e1ad02d
BLAKE2b-256 bdce7fa839e2fc9d99d7b46f127d1dfa7fe0231b83ff0b0f9e965e1fe32e9498

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8162039342d092aac18a07d2c67781a6b4e3411b16856aff9f958424f4def94
MD5 bceef30f7c81e8e7971d22bc9fe6491d
BLAKE2b-256 a14c253e2305d1350f69402ba113b92daca85ff26f76b7d9ab5162e7471776e8

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d97048206a8ec39fb72ec8cd8b234d5a22cd9303dbc962a3ca42507a2f941df
MD5 c5444c2cd840ad29a3f7cb4203942811
BLAKE2b-256 a641fba56ceec38c5342d9d5037dff0b337a50c0533c4b0901d158465c46f729

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9529fd9b96474c4ba247810eed8affea34d4bc447b936093a0bed445d00fff0a
MD5 d57bbb7ba763e3752689dd617551bba0
BLAKE2b-256 08101dbc2a8c7113bc94716fd429659b45fd6bc179bfc900111ad6bfadbce590

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6acf87ee32d739ace48d75e9c04cc456d77db9823fdaff744e0a183026b77539
MD5 75236b9eac9da823d962a788b2830080
BLAKE2b-256 769338a2491be877aa376bc52853476a8fb4932c2a9f2b282f680c651769971e

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 671151cbef08c9424d4f4234828bba96e6a9c30c982b17270784a288907cd682
MD5 0ef54f114379260c742c86606e2485dc
BLAKE2b-256 5c7499559f3fdd6bdf855d7070e5dbaf93b964a0f3fb86f43ca1d97c356a0e1e

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d21445ad2d67cf3ceb90108581b77cb764345e31c046320dae47a9850544972a
MD5 8c38e47b01e601825547b16d06b08943
BLAKE2b-256 1a35fcb2373ac3bf159cf3e8e267d8c0bba9fa3284ed91d38e5b4fb823a152e5

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34cfbbf2cd34cf8353a2757ab1637bd11bd24c7a44df4bea2d830e3ebe209218
MD5 e7bd7bfc860541c114ee6d221c3e242b
BLAKE2b-256 895e7fcacb12a2e64963fdd12afb6ebd864bd78c6ee8979d4bbd2ea2897d6dc5

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7767b40c0c49c96e61c784c942c23aa619a3f67158ef94e01e3fa19dab56bf72
MD5 32efa76e5b3de8726014bbdbe898f41d
BLAKE2b-256 0aa936040bfbad5d33120acc3894e3d6d020ca88aac28dcb7b5cf1f5cc0f78f7

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 adf1c7f21fa3bf7a1417862d4a62f4d56a68ed2d95d53d2a914cdaddb07ec362
MD5 806278c60f430428c338197cadb6a047
BLAKE2b-256 d4b7adddebf18b0cadf3d5dcd3ef4cbafc01d02404ad660988aa71a1a85e3f00

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7278c67ed5cbe639cd8f9328942ab2fa74192a70027f85289c7b0bfeb63a307b
MD5 dd4916351a5aa5579b77aa2de8677160
BLAKE2b-256 519f715b05c0fc6b881ea5d3009917060e502a593e8e10545ed0f26a5333e792

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 410a22ec62184fe989aa19755e419851841a11ada713a818693b621ab8a4708f
MD5 b127ef16505d4c99e58f6c0d246a69e3
BLAKE2b-256 03924a26206a13287b8e21249ea0508b579e479e0f86185ec2d3a6d068513443

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e74d7c14a6c75eaeffb42ca8716d079a42be8d31136b41e8b45ebe693b993f6
MD5 bda5a4242280ebc19785ab195c08ec3d
BLAKE2b-256 2294653408c190ac9b7bb0557470777d8617257d684dd9b69c9890d3f3caecba

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eaec11aae8ce508985e24fbee68520a83759f018c16e1866eebead2f7f24d83
MD5 39df76ebe48eb1aef35fa59abca0a2e2
BLAKE2b-256 99e76debd55672244010c4776aa87578a9c94fa5410be7c713ab9725049900a9

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b63dbe95a93fa99b36891e6b3774534ead156980eaa8f6592a77f7c49108d63d
MD5 2cc23f9f35f47a7a6ea6aeca0537583f
BLAKE2b-256 2f0bd49058a607b6b763e9f019f66408db5a4ba83dca8db94a2651b459b7bd0e

See more details on using hashes here.

File details

Details for the file ephem-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ephem-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for ephem-4.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2bf77ec4735325d3a5fa847dbbe002ab9fdd244b4fdac9324c2d4b15c1ae12e
MD5 98877f3195b435cb4c5ff8c5f7fd95db
BLAKE2b-256 824ac3f61309f66c8a7587c0283ec30625dd4a24acdabb25573478fc5770dfe1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page