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.4.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.4-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

ephem-4.1.4-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

ephem-4.1.4-cp312-cp312-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

ephem-4.1.4-cp312-cp312-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ s390x

ephem-4.1.4-cp312-cp312-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

ephem-4.1.4-cp312-cp312-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

ephem-4.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ephem-4.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ephem-4.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ephem-4.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

ephem-4.1.4-cp312-cp312-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

ephem-4.1.4-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

ephem-4.1.4-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

ephem-4.1.4-cp311-cp311-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

ephem-4.1.4-cp311-cp311-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

ephem-4.1.4-cp311-cp311-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

ephem-4.1.4-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

ephem-4.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ephem-4.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ephem-4.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ephem-4.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

ephem-4.1.4-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

ephem-4.1.4-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.4-cp310-cp310-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

ephem-4.1.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

ephem-4.1.4-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.4-cp39-cp39-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

ephem-4.1.4-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.4-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.4-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.4-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.4-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

ephem-4.1.4-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.4-cp38-cp38-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

ephem-4.1.4-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.4-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.4-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.4-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.4-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

ephem-4.1.4-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.4-cp37-cp37m-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

ephem-4.1.4-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.4-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.4-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.4-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.4-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

ephem-4.1.4-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.4-cp36-cp36m-musllinux_1_1_s390x.whl (1.8 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

ephem-4.1.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: ephem-4.1.4.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4.tar.gz
Algorithm Hash digest
SHA256 73a59f0d2162d1624535c3c3b75f956556bdbb2055eaf554a7bef147d3f9c760
MD5 a16ea63937d02f29e37a777297cc45e0
BLAKE2b-256 af5dbbd70a7538f6d6138583a59a73e8ee85a8b838ac5a284e1dedb2127a9369

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for ephem-4.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 549654f63d88e0ab6248ae25ac2939131474ab9f3a91bee6b68ca6f214747c2a
MD5 0163bffc7726c765d0c5f14f69f910ce
BLAKE2b-256 61fa3c30d26276bfab8f5ff76aaeaea7f487e27a2a08a61acea06cf2ddd47731

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: ephem-4.1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for ephem-4.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 29e71636ee4719419d03184abc85085f76989c79a61844f5e60acbf2513d2b42
MD5 12d138f1a28b4a505abd2967ef77fb11
BLAKE2b-256 ec2c7f9f42e733ee59f9528138b55d3516384279f7b67dbd9f746e8d17897550

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fb020d6cc5ab1ad1cd9d3da4a6e2506beebb41d1b337d79cc20cc0a17f550f1
MD5 02747edcc1fe6b0cef79b9120281c219
BLAKE2b-256 a1416edc24eb44e607ad4712fc8d78ce46ea34391d74252ca96778dbeb23e49d

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 404500c8d0030d75ec15bb6b98eee78ad163fd5252102c962ae6fb39c9488198
MD5 24c51fdcd219698895b1ed329754507a
BLAKE2b-256 035c163d90c91a86b4f5fc7782f8175b742b1a7d10e40c4be193de2189ec6620

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d60d56f182de54bd84fadd6ea2dd8e8ef6fdef6a698c7cafd404ecb6eeefa598
MD5 f2e9697de6eb7acf6308db2462e4a17e
BLAKE2b-256 537631771a8bda63486023a4496a6a52f9f6acd039c21ca9ca9f330cc8070dbf

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5f229bbf62ecb4cd6bb3374b15d0f8ff7b3d970c2936fccd89bdf9d693907a2
MD5 862bcd9a41ea9e8cefb4262c3610031a
BLAKE2b-256 7d78268c96df4f727f9db3a8a39077c1a9e08abd151d711d2ee236fa738874ca

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d630aa287255ea9fba6962f351e4e0729bb620570684d52fbfcc31b11527f09e
MD5 4808d86a4d034e18ea6400058cb866dc
BLAKE2b-256 ab9b357b8191c01d412ea1cbab4071bc7b570f64b2723db3f260a43947ee0450

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 268f57f8768ccb0abbdf4cefb4781c7db812950019868f687b407b428513ee53
MD5 17e9000ae6b7366cfafac3f486a39243
BLAKE2b-256 bfe067797f48c6788a928e20a6a990f758745f8829d7420a6f4be29ce0364fdf

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53786461a6d5799d5fffe76622ad51444b264d1c7263b92a6dfcac640c3da93a
MD5 7c1e29b575eccdb7c2b8148b78980618
BLAKE2b-256 9c35a9ef3bf5059718b92156d9e4479ea675b684ddc23a3902034b11393eb390

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 653d99386932e5f78bb9cfc4495030ad9f3345eb4c2b32dca55547da8f1f0332
MD5 286f29a9b1937fcb4b86746208fc19f6
BLAKE2b-256 a6f64b35a33daf73d8cd9572c0338727fd58664f64ff26cff68dbe9127862d98

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9e24aeea560dfcece3c2e313eb94e6be3e84888091455e541fa88f3a44da584
MD5 70fff89e0d2fcb6ef076c9bbe4be1840
BLAKE2b-256 900b7e7349b5e92d7a5e1407db49834cd332a3d8411d711b71f622fa35f11703

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ephem-4.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55d7fb5c34b2e453e01fa4ca7ee375b19b438c9401ae8c4099ae4a3a37656972
MD5 55f1591cedda5948087f1fbd0b928f2a
BLAKE2b-256 2ea04ceacc68416a45fb1875237901e65bc3ea4aa5f9172c43d4bb5e24ae99b8

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: ephem-4.1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9bb21c0b117c9122c0141b0a71ee6fbbb087ed2aab4a7ab60f009e95e9f4a521
MD5 d9525d9346070969fd8d2d571d91854c
BLAKE2b-256 25f804aec90eff5a1e4d793832a979f9dce1f39f1cd4745fffc1e002f56ca6bd

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f9b27117e7a82f7f70db9cb23b5cc36d37b166a2f73c55e14d7225d0ab95afa
MD5 0550b1e29b07ad89c768ec9eb1521cf9
BLAKE2b-256 f5547785814ec3eadf04a721244b5ba7ea7906cd054e8fb0aefd972ef66326a6

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 fffe176bd94f4f61be5a54b54a966988cceb6ba69a6ed729aab166020fdb37c3
MD5 3a02f21cac0e4641dfc8b357391abebb
BLAKE2b-256 6c74d6f68815a41f4ecea7f8eea3cb5321817d29668837551824884f342e3522

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d2c56238a1aec72a78ad7061f5c531df97a66ea0cca45204b6b8141c3bb1540e
MD5 69a76824b8d44388e8895eb2dc201250
BLAKE2b-256 49a8e330c68332e95aa1a92b23c21eba62d4278822d1b26fa9c4db23ff3686e2

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e3327218495235ec215ffe43253c0bf3fa982f59504b351c53b024f1c7b63752
MD5 7190b90d8b891d090e39fc9a38ddabbb
BLAKE2b-256 7fcdbe6948b72eb201a2c4984915d182fcb203c724877aa4084c3869df6557ba

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad22e769bd35415cad8f2ef6d4d875190d9bdad4fed2842fd19dac6f1ccb9dd
MD5 7bca2fa35d20a3fa3b81be6eace74b2d
BLAKE2b-256 c452c7644f55bf2fe415358192ff491f6015ee9af1f00da8e12d2e2548d7a0f0

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3e9ea626bc522fd4dd1ff795f0922fcb4c4eb57effe91b6284411166ddd1fd7
MD5 5a5864acf2f76e8464e96a8d9e17d907
BLAKE2b-256 b98db2767c08a996864b2d165b17fcb5c376d2830ab67cbc61660846cb7c24b4

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cceea883856817f3ea3f73442e3be3a4a56558cdb77cc85d02db4429ce5ab16
MD5 0529bdc2be9e6f90ad5215b6dbda0789
BLAKE2b-256 b8c7d2754892feb0f91ef44ec48658fb460b8fd91936f38b5422316026015938

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df9c482c8d25e69271311606b4de0e177e44ceb11781c7ebacf17cc5b391f832
MD5 2ddbf2f720e855dc0e698ce6f22ea279
BLAKE2b-256 35a63df7f97f5e91234f7843266284698e21d781f359f1e987946a80d18f0326

See more details on using hashes here.

File details

Details for the file ephem-4.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ephem-4.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 feab5f68ae9fa622d6316790c9cfc399e8b78f7958a61da4edf2cb5e0e675d44
MD5 bd0a913430ff0cea1680cfb81f72da06
BLAKE2b-256 8fb762f0194773df6f37b494c7fab56296003cf2117c7b80ec97f1b253dca968

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 589a2235f49232b92ee0247923360a264086a57b2c39d4191348f95ba5ce0c3d
MD5 485db6946dff8a4946505af3c09d2030
BLAKE2b-256 614649bd5cdc56d628fe429aaf28c102b5c7108a817516bff66dcc8042e8480c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8979429643ac4e29a5496321c9c41a20cd7a6a530aee9865c7fab0008450ef28
MD5 62372869cd147c01a86431dd57f9535f
BLAKE2b-256 b4dc31f5d0fd70fdea16d670597a0024ccaf94c510ff2b4b75aad2e09ce5e071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4039aa2f0b8c204283fc478551d8b29c9473137ad8a910a5ff60ae3be6593c7b
MD5 dba1e17838150badeca0f98cfc60bcef
BLAKE2b-256 9cdd7fb5587612aae7699d795622a79312187a3b4780f611e43ed9936fe7ac4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d61f38f35c25049ca2b95aa4e12e952e5ef56b31eac4a9d6d4e24aacf9373101
MD5 07bd77a3e4a725de31b8caf2e9690a8e
BLAKE2b-256 dd23b08a0c80cbc87aaa766b4a075a64236374538c0f04475dcde3c7578549e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d0403738f59aefe81ee5b0219cd909f2a05b03b7da465f9b233da57d3dea0de6
MD5 92b3cde9905f59fa839f26f05c1b0cf0
BLAKE2b-256 304887413b22a747acf2b1bc07622b232f94950958a949b0d6dcba5e926cd8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d343e9ca26f04a05b01fcaaf800224da5d15ad76902d7dc452c216e448293893
MD5 7b51b7fef11c1c6a99aa697ace39ad2d
BLAKE2b-256 33f9d902cf84f083d9ea4aa3792436a553f020b470e951902cbb0fa1b7ae3d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6918b012365791b786ed0f30e8ea3941cbc49486dcf6c28d151f119c62d5be8
MD5 6c811002e9d3bc4f9c8daf2de0d9ae60
BLAKE2b-256 87d9cda25c543dc392ffea49be2403bac46ab99ee91f34381fa86956bd405ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 649bd2c85f5fc450136dacc0416af7127a07c0b2ce84bfdc89c1bc78129216a3
MD5 e2c846d079a10e2f17d022a047adc4ff
BLAKE2b-256 90cb519fcdcbc727a73003f3ff57e8f466d732a5e5c8a8ce65df292bdf028301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11be09d245e77457e87988a4fdc811bdc6c5f1daaa73fb24289b220db720831d
MD5 5f7f80dc1e8f14acdc2ed750c62de5f2
BLAKE2b-256 d2a587776d30dc065903ac662b67d1901164e00954cc648e0ee04520f46d695e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 158bf9fb2b58cb77c606687c9ad35dc82903ed00617a12c93dd2d89a65d6374d
MD5 2f3c2681410492cd3fabe9a4cb376f24
BLAKE2b-256 554ee7fce82269a85f2979e4944b1dbb1db37602f875959f7e71bd4477c9a9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 024752ae7074c660630046929e12650cc6e72e1c11b7554ccefbe16f8ce3c48d
MD5 deac809f8fd3723ad69a3e5b4e9076f9
BLAKE2b-256 cccc1bcf0aa39cd2d26ee0acddeaf5b3ed1c0e4d7ef7bf136a89063a6130e72a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e8ec4e29c7f04d6334215775a8c4dc77eae8ed698384530d9415a98500ed01c
MD5 c2d176ae90974253022b3f397d49d594
BLAKE2b-256 367d126268c68730079e2c56ec7aa5185e96dda270cedee9b6a95d3d688b2677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a8d125d04800425a9d944109710687bbb3703e8f04ac3bc8445779bb0ad5dcc2
MD5 2db5d44aed05414788cb3c56855c8c4b
BLAKE2b-256 a4689cbacdce81408e7033881c5b59e642a2200a02f23fc0125eae1ce7478743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e429f6e0e05e4c8c54802e951cd1bde440dd6f896c2b5691ef5ebd9bc3ba489
MD5 26b12cc36a1fa2dda857aad94dfe49ab
BLAKE2b-256 8820d5ecd441ca54c5c1dd5f48af074909b6978765ee4309fd57393b755356a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5327fd48fc8ff966023a6f177813fc058bb2a496c70b53a79f85bf2eba3ca93d
MD5 5a26da0df68054b98b25f923cbe20de6
BLAKE2b-256 1d235f1291bc8d942d0c4a8f951d3381f683f0c45447c4497b3268addc2e9b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9aabc3cab5fb9440564dfdf79e39ee01d16554d7bfb8228cddfe9eada460dba9
MD5 1f5b8468bda722d598cfa4560721e475
BLAKE2b-256 d3bfb6d85db04a931ff85b36c66b46b7df5fc4e73dfd3bb45cfb95cc240e7564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a21a11285904f43c3bc6909727d09109b8e38dc2e3cda662089601cb37b3d082
MD5 ce209c8bd15dd75692a024633731120c
BLAKE2b-256 5fc5a1323c2a67805ac141f69682512c8b15b8b9c5b7ecc1501e07f9a909b8e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2ba977ad0402ac44fe66af6e1119632efe84b7d1255f8f6f94d7768d9487453
MD5 0da3a9316e38eac62d39f15c8c07b874
BLAKE2b-256 70b0bc5b238c739cdd1e73fef4b255aaaeaec1ae3b50e059610e35edfcec78f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72078b49748318cbbbe1a49ab5dcd05e63c917151351175b590833e6163a1506
MD5 bfe4f618361c11c4b26228f4dc4995df
BLAKE2b-256 8f8130a888286dbed5290a088b61e42744099c8cacabc7d26d5455e4c2d365b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f11edaef2e4a4d010e21b5ff8bcd9435fbc7fe9e16923f81143f248ae8ae8e9d
MD5 5c4f38e52e21905c04f377fdeab806f3
BLAKE2b-256 7e02999da8c3b0470b9fe48169083424e533131eb0213d98d13fa435b9b65845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41680b48aeae5b992371bf7ec1bc07457500ff4a6ea7d333793e945b97951de0
MD5 33941fc29a9910ad540fe2d9e1c228c8
BLAKE2b-256 494773be50098c880ed01f8c522e12f4c0d6fcba12b22ef902c69f020d2b2c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f51a3bcd5f69c4070e8a6936e4a61019ad2d6b94bc8b5ca1e498dea0962a373
MD5 487b02a288b3cac9f6cdcc5a67b49d21
BLAKE2b-256 7edde1f34959c61f9cc6fc9a039906e28f37315edc5363825af013e4553611ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a940cd4d8d7aed68efd3d6b717f393bbedf541d388ba11eb3ed56a9fc6cbb1ca
MD5 732bc3217fe9fce817d7ea6fd7722598
BLAKE2b-256 80410960d47334f2fd95f28c2f2b3a5546ed07378bbe1941321fd740ae59b9a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8e0bb8379fb6b709a3cbceb6a11a3dc0f25e5b16a6f009b48e09d6b95f896d9c
MD5 3eb3d018e75821ab74260d3766654cc0
BLAKE2b-256 ef9bff9de567f4af5e8d2e0002a26228649c485c553405a1e73577262cdef014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3442fba6afae0bcb643c9b069765033b67d2c8fe4350f9beb4f2f5cfdaaa7442
MD5 aae9dcf193a556d035d5d24d64762468
BLAKE2b-256 4f363795605ebfe620c12b7107bdd4645f928873aa93fd4dd30b9a4abe0d7751

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0493ad1b3d2505acbf442e31aadb86fba096ba30008a586fe6361a9de5974ed3
MD5 6893976eb197a62aec2aff6e05b5429b
BLAKE2b-256 ee1fe01d799b324c4b00c6052f58a0335fbbc9280499b2aa43658eea7d44f0bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3bd7da534a542d937b10f3c643301dc9b8bc09f7a40350b32efc32910232da9e
MD5 5890a5d043a7893012d7fb86be389415
BLAKE2b-256 77286cee40104cc1a0f526535d7bad4a53eefee7f5db5e2ea231f416030d4025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56c448a83290dabd1df5865fbf9e39d17400abcef37cb36de90ea1a860c0a08e
MD5 bcd053ff0565b6729b9746748db243b1
BLAKE2b-256 e6d5fbafb25e88160c87141576c4208b12b241d8335ec554602cd8587a6a99ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e737b49643a300fa15b788accc72802af93b49cd5d071e53111e08e3fba6570
MD5 56346b7753313075cb92708fa78e9a03
BLAKE2b-256 13e050dc92b8b36f7493823538ee1422efb51f24d2630cf3e94597a38e5b4a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a29de7c737047cc2412edada9d03b761339d3560d7db471cd04f257e1e02f2f
MD5 a5696e2155a68265af614645b49dd481
BLAKE2b-256 aa78e4e48aeafee4be25528576a6b5de876a718d828ff7fece9e0acc59d4ccee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 555d63d70e36e46e43b955c37cdb0f8b82ee2051c575960c4b01948be9f04e5e
MD5 30ae413d560ec012dd51cf75472c46df
BLAKE2b-256 d702139c7c3ff5f571241cc6a9fc0fea5f4b98e9d62ebad4e080f4b05331b285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab40ad7a5ccd66cad4161ca2295c04f01a74ec596c936c3af97a67733e2cd5bf
MD5 dff95365f830ec58f044f00bc4bbb7e8
BLAKE2b-256 cb7385364a1c239618c11aa60734e883f25f15d38359395d1632b92c9b2531af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24b7e90c731e851a56ab5e9d538915faaa54945e9b5211cfdf04e570fc27c529
MD5 9ab9a8093bcb5661a7bbcbc9cc09a9cf
BLAKE2b-256 03cfa5c17a03a05fe83b36c9c3e7d6b643d682b8161fa27489a72569783018d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 39c710d73449b1c495b58d803da881363a0cae4b728de9fa332f77bcb4686ac8
MD5 1cfa18a3c00e03c3fcf67bd80d32770f
BLAKE2b-256 87459b95d2563a901c915a47746c6684a9c994e817116f9c43f512e2d262c801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bbd4727498928ece694ec1b33023f16b6d050d9952d4052129b24e08e04d67fd
MD5 4e5d778fcc1fa999352fc8356b13010a
BLAKE2b-256 b11ebf8b49c22cb0aaab1eee3cde4df7bfe7cb0ba8340fed27938fc5fcebf375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5beaa0cb659951211aec33a7c132557a1a161dacf53f1b1493830489cfc68215
MD5 3c672daf032af442a67ce56e994af4f0
BLAKE2b-256 42055c05567e1e61059872ffcc8982f338903edc562a55978e09cd0e691fb151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 93d8f8b4e6206d3401dbdb0cdabb0d15c59cf9c2a7ee7c586da8c7dbf1f2a136
MD5 a9707cdcf02a15e16d1847c3c680b751
BLAKE2b-256 6216e588e47214ec2fb19a7171e4ee0f729d8708ce280b2c56fbb460d0a52028

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 85809803e349bb4a0d56880067549abdc2b93fddf93ac3d55486040cbec1553f
MD5 cfd0ace14dd47cafb7a85a32603c39f3
BLAKE2b-256 34524ce1d40ba70610e83674f9fb907c30cade348bcdd8ad3507b33137237417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aac0a0e41deb2a197cf67e800a3d0f4029139b9ce12bed148ffe994ec78593f9
MD5 2563f5214cd203c67fb4149fc381ab32
BLAKE2b-256 69757e5adeeea0f32e306cfc7f52f278a625ec124ec973caf912e323cd586ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3da3b76d5d5e339461059c3314013c152ef569c798bfd578bcfb504b875a837
MD5 d96b19cdbb810a8cb4ff6c4840ae105d
BLAKE2b-256 7acdde5fdaad7e24755f7a5a7c02c5b4e5077a355960983e6ac25737664a5bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 daf1a1280102e14c718d684989da34151697a426522f8ae18b1081e8bad705c9
MD5 ff4af14bbd4a0ba5095e17707cc9e201
BLAKE2b-256 3ebffb1fc3cf216eaec852fb04d9d03335afc9a405274fff9005c9d41d327108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89f759ce8e3489d15b9f3796d210196085dcb84cacdf24b2ece791b029245544
MD5 413a93a3bf2e4191fe1ab3b26646a69a
BLAKE2b-256 79aa4816f8472f92d3db2cb0e44652d8f2cc0822f8ec42ac8bff05dcdb863c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8b79b47c7be0d64013fb5d97dd6bbfb9bf63ae07b2ec917be19d3b4cc5782b8
MD5 714057b0820f5f282ee581f5468ba1b6
BLAKE2b-256 ed02e0506529ba4133fca3b4dc98164a95ba7dd4236d03cb083c11b8090968ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e731c3e2f1767fab14e5d4077a3519f70afd22cb7dd113274c2850f8ef8ff828
MD5 6dc7d034cdb06e63a5f96e503f622925
BLAKE2b-256 a0796fa9b2ac1850ff6c25ab51249cc83a690f4f9fa9c0f5c62168d1cee42c12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 86d6dda3581e61f6bad5479e26bca9e560671852ac00a5a8ed10f722635ddf71
MD5 d042053a2bf859f4f303deb96d7aad4b
BLAKE2b-256 6de3f94c4a9f9be8bb0f7484c4f31359ba7c5a4921df0103c9e7e13114b7a7b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 23e1432f021c69b2965c87a693ffd25caf08416e92bcb0fed91425083a374210
MD5 581add500a9890f6ec3256ca64131a96
BLAKE2b-256 ac956d37a8ccb946f1059c1c1019d30fda6725d9768aafb8c773a66bd0d23672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3c39fb62c240f57533ea618295e510c44e466e74f2f4a899fbaa04b166b62d04
MD5 e1027c1662144cb24852958b930b3aec
BLAKE2b-256 4031bf4bf133c32758767137354cad51b10fb47f53f53cdba191d341740edf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8974799afb37f17ac71e16e479d0e315d74bea4bed2becaf21d1b9304299bbaf
MD5 4bca7bab9b980a9193ee7cf2fb01756a
BLAKE2b-256 3737692c3d4d5c7b1ef888f554e0fef9052841e887dffb332783a1b43a37d8eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ephem-4.1.4-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/4.0.2 CPython/3.9.16

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 171fc5e7c4e9523f900dfd5ab6520bceb260a2b59fcb558d9aec17fd562b6251
MD5 5c7fbe674eb58497d7f17b33ad244f99
BLAKE2b-256 d5503e047e39dd71e1d9974e711910ff4d34b85395e7f68f77d34f367e6807af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4f3650c27c3ab6b73e2de7fd8de10e1c0d73f4683c9c5fb2e7113722ec2c2b53
MD5 b164673c46d572e2cf887160a3747ef9
BLAKE2b-256 40ce791537b74c29b3cac2e6f023eda9302f40ccd800b8b7664bb79cb7fa14a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a146db114cfc942d123a38c301a8b8ca7eef2e37d2c5a4bd59e4abc99123c083
MD5 c41a60ef46cd012aa2d95f22880265fa
BLAKE2b-256 ffb31cf5ae6991a4da6cca09e5c2088069bd941192cd1f799728800723eaae4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80a73da8ec61f86e5a97f73311159e61279dabdfbd17c9d4e2791a25a836f9ce
MD5 3d56f3bdc77af2146be72654b946cc4d
BLAKE2b-256 3c458379e186135d95862e881ce2e7a6e72c5917b549f6cc4b4b7170d9878142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b2677d3a5b42aedc578de10b0eecdba6a50731f159cb28f7ad38c5f62143494
MD5 d1cbb996563828f086b6ed794a76137e
BLAKE2b-256 1bfc03b6f28a9718c1f80d3cc31b46df64aaba3ce52e63040bd4e869a0f5ca54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e2abe97aa2b091090012768b4d94793213cc01f0bf040dcc311a380ab08df69
MD5 67bda1b01561abf8bdb6872a57c784ed
BLAKE2b-256 667c27186a983fe4a9ef384946192a8ce4521d961a047183290a9e2e7b113651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ephem-4.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40067fc050c946c8d4c2d779805b61f063471a091e6124cbabcf61ac538011b2
MD5 9ccf23d8f73e69172c89e6aefa7afb6c
BLAKE2b-256 2f5a5ba7162703b2e02737783b5be2d4bd30789f4c5815467b666641ea77640c

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