Skip to main content

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

Release files for ephem 4.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ephem 4.2.1
File Size Uploaded
ephem-4.2.1.tar.gz 1.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for ephem 4.2.1
File
ephem-4.2.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
ephem-4.2.1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
ephem-4.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp314-cp314t-musllinux_1_2_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ephem-4.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
ephem-4.2.1-cp314-cp314t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
ephem-4.2.1-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
ephem-4.2.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
ephem-4.2.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
ephem-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp314-cp314-musllinux_1_2_s390x.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ephem-4.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ephem-4.2.1-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
ephem-4.2.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
ephem-4.2.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
ephem-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp313-cp313-musllinux_1_2_s390x.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ephem-4.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ephem-4.2.1-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
ephem-4.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
ephem-4.2.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
ephem-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp312-cp312-musllinux_1_2_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ephem-4.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ephem-4.2.1-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
ephem-4.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
ephem-4.2.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
ephem-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp311-cp311-musllinux_1_2_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ephem-4.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ephem-4.2.1-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32, Linux glibc 2.12+ x86-32 Details
ephem-4.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
ephem-4.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
ephem-4.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
ephem-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp310-cp310-musllinux_1_2_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ephem-4.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
ephem-4.2.1-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
ephem-4.2.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ephem-4.2.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
ephem-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp39-cp39-musllinux_1_2_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
ephem-4.2.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ IBM System/390x, Linux glibc 2.17+ IBM System/390x Details
ephem-4.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
ephem-4.2.1-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-32, Linux glibc 2.12+ x86-32 Details
ephem-4.2.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
ephem-4.2.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
ephem-4.2.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
ephem-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
ephem-4.2.1-cp38-cp38-musllinux_1_2_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ IBM System/390x Details
ephem-4.2.1-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
ephem-4.2.1-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
ephem-4.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
ephem-4.2.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
ephem-4.2.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
ephem-4.2.1-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32, Linux glibc 2.28+ x86-32 Details
ephem-4.2.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
ephem-4.2.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
ephem-4.2.1-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
ephem-4.2.1-cp27-cp27mu-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32 Details
ephem-4.2.1-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
ephem-4.2.1-cp27-cp27m-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32 Details

Total release size: 168.7 MB

Release files / ephem-4.2.1.tar.gz

Download URL ephem-4.2.1.tar.gz
Size 1.3 MB
Tags Source
SHA-256 checksum
How to use checksums
920cb30369c79fde1088c2060d555ea5f8a50fdc80a9265832fd5bf195cf147f
BLAKE2b-256 checksum
How to use checksums
37f0a38e882d3c73bb8bcc37a0a27c9a7b8fceb7906312006fb03c01d0a098b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-win_amd64.whl

Download URL ephem-4.2.1-cp314-cp314t-win_amd64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
c4e6e15dc6ccc22504e27aea58a06f8308fd7eb007947d16dfcea6a3aec28b4d
BLAKE2b-256 checksum
How to use checksums
dac8b0f1788a6a87a0a18e799b73486329f33f0ae4c152d62bca46476e76fc35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-win32.whl

Download URL ephem-4.2.1-cp314-cp314t-win32.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
ce86665355d88e4e7ccc3b9e9c74905a2c6ad51c27433e5c98371a7ea38ad502
BLAKE2b-256 checksum
How to use checksums
9b92cc35c78c00894e64d312960507ee84c9fa76919ffca28a7f92ffa59bda20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
15bc51d5c926b65ec15742042de79f6181a979809a6f9da1bd8d6abfb23415b7
BLAKE2b-256 checksum
How to use checksums
0e70429ee91d941b4969571fca658f3350eb5e217f04e4aa9bc295b77613ec3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp314-cp314t-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
bfdcc68b2a5ac84305d792ca8ffac23bed0b5be21edbf45b33dd00423f7a6fdb
BLAKE2b-256 checksum
How to use checksums
16c9235acf25dfa74e041a4d95b3fbe6835ddd152d6479ebb762da31818bee09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d62cea09046153052cc15c85938fadf7648a7c8b1133d729b76f20d4cabcfefc
BLAKE2b-256 checksum
How to use checksums
fa7949981b3ad843f2180a17ea6f89874ff5ec4d26b6d6fad754be4cbaf97d13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e8c6598443375f119c9f7c586f3198c6ac60a38bac3fbc08781c55c8e102cbba
BLAKE2b-256 checksum
How to use checksums
686f30751b504be2c55b9a2a77f678003f0e065554d1f2f75f3ec85162f2ccd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
788e61fa779c54e6dd745f57adaeeff14eda2b8dd737ef578af6ac8415d31a48
BLAKE2b-256 checksum
How to use checksums
a49c77f0007679d0de12372db61d863bee604441b4827b27dbcbed07f48a815c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
e020cb6976ff3badb303bc55026366fa3886280f15f6d4d46c52fa36356fe16b
BLAKE2b-256 checksum
How to use checksums
72cc4348e26e0ba41a5e5e6e4ecc1fca81ceaccc656c9ad3d4251c301bf34d78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7812f16600ecec6d7b21194a38948ea3a0c406332481375e735924a3f82f5e29
BLAKE2b-256 checksum
How to use checksums
befc357df051cdc848b482c823f18dc94632d40717c64fc0068d79b91cf12f75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp314-cp314t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
2b8792e60114a07253160e81b63f28b3c021f4a5dfbee91a6db526965bdc039f
BLAKE2b-256 checksum
How to use checksums
0c2e84b07818630298656dbae0c95c0e99b89ff98d6a87daf9819a5c5aee191b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5ad67a86ffeeda5173d88b04b9477b5ca3e78331acc168a084d18779452c0f7a
BLAKE2b-256 checksum
How to use checksums
d18ec6bbb724f1a51ec79dc9c167dfde27246095abecdf45057fc6de50822e94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
1e5806b5a633fb25480486d5419604e82a6932f9f9e6855f1e07da852b8de570
BLAKE2b-256 checksum
How to use checksums
84bb55932750261f35d84c944941dff761112eb9582b608b314fd8c4b87e89a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-win_amd64.whl

Download URL ephem-4.2.1-cp314-cp314-win_amd64.whl
Size 1.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
936d7a8745fbb18869e238d541f027cd7fc086e3fdfb826cb76fcfb4bed3e35a
BLAKE2b-256 checksum
How to use checksums
eca1a40f57eae2589933943369d0aa4de024fbba18f5689c06c5f012b59627de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-win32.whl

Download URL ephem-4.2.1-cp314-cp314-win32.whl
Size 1.4 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c0bc8c928b7ef10167b7a2f2f20c7ee079c3b988b9a3a943bda123949acef79f
BLAKE2b-256 checksum
How to use checksums
47b559b5554ba2f8a850a65e3beb52cf290b4616e2e94827261b3a3b826e1ac4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7359e573798357318738f628660946e4cee89f39e84940264e428504d541921b
BLAKE2b-256 checksum
How to use checksums
4c129c4d2014ddad6a9c4e3a7cc43ed9f9585d60a04475dc47b8822b78fbb3dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp314-cp314-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.14 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
b831567c5db7b101e9e647cfac38da458f48b4c66bee949cff11a875f260d153
BLAKE2b-256 checksum
How to use checksums
61ef6ab516d889986a7c16731f9b7a89a9a689ca9a3196dc544d187f2f82f9da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp314-cp314-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e29c7aabcc32af070d99fd7a2268e7c854d7b68df3414133b5581eb9996939ce
BLAKE2b-256 checksum
How to use checksums
661e79e7eb46c1bda35187a4cacc767f3d6707247a4afc759981c3c69ed6af6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
27b8d6893cc47765ab55b2eb4f4bad97b8ffa844ff6b67b0dcad44e48d0b6e77
BLAKE2b-256 checksum
How to use checksums
8c21c76b805d70df3e45cf4795ec19bdb91b0fe42d473b56ea8c80f7706af1f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3610fd501549fe8e29417ecd9fecdbe19e1bc416bd76ee24e40ae81ce3049760
BLAKE2b-256 checksum
How to use checksums
e0c8578499dc1383ddec58a79be525e54d47a23210c8147a65610ee7cf477406
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
ec91aa7735a10bfd8a4f79afb39567500483a1b5812a3ba675fb10abb5aa95d1
BLAKE2b-256 checksum
How to use checksums
c1b375194b704da47e649a449d7797ce78f18b3147dfee761fa7dea83eb23fd9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9ce6b0b076b18e9b7a7a9ff5f37573455849079ec232eae0419c172304e7d2aa
BLAKE2b-256 checksum
How to use checksums
3828971ada8acdf52afafb1866cc474dba1cc3deb631f7092e7dc10faba88198
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.14 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
560a417a4252f4c77a8ebc325a081c684f24c2287f82579ee4eb62d382dcfa89
BLAKE2b-256 checksum
How to use checksums
1faae8b86b27357eafbbdc15ab315014c15651c9009d504d73b9e1fab7ac7062
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp314-cp314-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8339dcc7187c99b169d3b0f650b9e1f1047f6d7687bda025acbdeb049ae3e9a2
BLAKE2b-256 checksum
How to use checksums
4545e3528adb5e496b4f2c6853313b4bb65f3ea665b41cd4553847ece39040f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL ephem-4.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 1.4 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6aa46747d0866afcaf64c25855546ecbeccb58456a93b368c963a8e18e414794
BLAKE2b-256 checksum
How to use checksums
9d420a94728aaf67b9bb7ee2f0f300380ebaea3362f188c1d9956c0d88ada6ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-win_amd64.whl

Download URL ephem-4.2.1-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f22a797ab3658f5f1ae56dd32627e9ef4766aa3e9dbddc817cbb2741893a8a28
BLAKE2b-256 checksum
How to use checksums
5770323fd7145e7a9abb4878c1abb5822b9578db3fa4d8d952806941d7c7910d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-win32.whl

Download URL ephem-4.2.1-cp313-cp313-win32.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
a075014299467d29598019fb11972a8f3f476d28962987231b24a234ea8764f2
BLAKE2b-256 checksum
How to use checksums
8fc9340dd18a288ecdf079ae15711a84d8fb82bad63dc7f1e985b88aeaeea81c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
46427d35a2fbf4a95fcf6de9d36dc0a29e49b96a63654856285f0262c4082fc7
BLAKE2b-256 checksum
How to use checksums
59fffbcd7a7795741e5770c73b39dd1318215b357f6e8d503233ca3b3fb10437
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp313-cp313-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
61e38e2affe676fc9f9a8fbd4f575f05ca7db4f87a6e5fc589a09c14fe68850e
BLAKE2b-256 checksum
How to use checksums
74ce93ad503431136611187a60c986441510cd69908add782003526e0d7bb24b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp313-cp313-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5530ca3c85a22d31838844427b96abcbe96da6048b6e83a675a5bcc23e5af43c
BLAKE2b-256 checksum
How to use checksums
0d72b961fa4b1efb39ac0021e1e31fb3c0a6c5fad45d7fde4908748252e2ac17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5e9934d309fb3c6d79373259b2a9fc71874a512b90d61523e334720805b6fa5c
BLAKE2b-256 checksum
How to use checksums
eb543f8575295de6c07b151d73dfa4d7ed0dd3efe6a02b7b633fbd74381e13d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3b37ef161ca287f025c7c299b612fbb7e83530840c938d06a61fcd7889a66db5
BLAKE2b-256 checksum
How to use checksums
531cc7149f3be5e9852316907621e6d6e2f8833b2044c12f041157495eb74358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
078894d72e38cfaee8d00959d6720506af61c0fba5ef42f9e2ea1528296a4320
BLAKE2b-256 checksum
How to use checksums
b9b5c04ddeea27c093146d064c994bd795ce5244533b839ef7ccfe35850fb289
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9ae26bc5abc4073edf6898e5969f3e7b77c47d3c88521177cb3df14fe8963259
BLAKE2b-256 checksum
How to use checksums
b4b22e6674089d4eb0e4cc4bde6e30d841ff9bcd2d513deebb4ae41b83eaef84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
b99bdfa5372d83f43c052c845c05260e9355824dc0a88bbb0b9b4bdd438305fc
BLAKE2b-256 checksum
How to use checksums
43b9008cbb78827b145b7afaa152af6991ba7fc5baa99cf16cf64ec9f0fef9ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
458637fd487cdc897a86912089086161f042c3525a268245490565255bcf46a0
BLAKE2b-256 checksum
How to use checksums
ef3fd28fb26afacb07c81268a5f7b6a1c2b4a14d0304899c20502205dfccdeaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL ephem-4.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 1.4 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
19ad36d7a5bf63cd424576ff392d7bd9bf579d903b14ecd98173d577a51051e1
BLAKE2b-256 checksum
How to use checksums
bb8a2af7194252902b8f9bd6f282051864d86311b90e846a9f9a6c33798d60a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-win_amd64.whl

Download URL ephem-4.2.1-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c35502ba6c87cf1d3ff7ecd3690fadeea39583ef783d7d365037b385d3d72eb0
BLAKE2b-256 checksum
How to use checksums
06b4f210bbb64fbc59e4d2e72433e767396a3471fde26f49fd56ac6930f36532
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-win32.whl

Download URL ephem-4.2.1-cp312-cp312-win32.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
979b2ef09eb29674ca2742124c1ffc231dcbbcb0fcc7f312b5e70cb7e43a62fc
BLAKE2b-256 checksum
How to use checksums
404c5297a1cd52d4b1ab7d96e941ebec2086ffef75e42d4df663900c31691994
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9bbda62115c9d1c2d967b6b3b80d4ab3b2c7662c2dfd587ba50fc55a6c48aa80
BLAKE2b-256 checksum
How to use checksums
96b3bb285a1a14abdf630939809538dfe92531881492b23e1d108a2ff2ba464e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp312-cp312-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
05a216cbb739de6c412f447da32f5f613d15c582424dd07d5341cda798cb80f1
BLAKE2b-256 checksum
How to use checksums
ce5e5cf9d592ae14d2a46a0b8429381e0ea1436e62d044ce1031ffe25f4d79b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp312-cp312-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
bd1927af82de44f0c6d6690c3d6ec3a57a619ecdba20706480ffd2b65ee59bec
BLAKE2b-256 checksum
How to use checksums
642d99d409df0b750036a150a6a7e962811b38c0b02e7f77f30b1aa73bda73ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5df38b498eaa779385f2422263af0f9688120dee4daddb47f58a03ffd3eaac56
BLAKE2b-256 checksum
How to use checksums
03be65d2c768b66b18f9a7f255a3c73963e80001bcb3218af40fe785bc802c31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f16ed34b60056eeae3d8afc78ec528981d5a90977e1bc734b9308279eb016791
BLAKE2b-256 checksum
How to use checksums
1bb4116a78a309c975c05f69e6d26208d8e607fb84de8f0fa0090306d3cc63f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
dd8ec19883545c7ff97fab95035862c37827723eae7135e6d78c32d3ac1b413b
BLAKE2b-256 checksum
How to use checksums
9f44a07a6247b5b75e9177e92a1e83076ba9bea62f3d54d0ff25d1597707076c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
17c09bc88fca62284bd5f055dc3fcad8a5fc38de35f59f451ade82761512a45f
BLAKE2b-256 checksum
How to use checksums
79b7ce41706b23a572f1c9658262ec164eea7e74a2519b866dddf656332f7d88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
f3ee0fdb7a0c19d0d4d6043f3f52f216fcf38619783c4ffad285f8f71ec26cd9
BLAKE2b-256 checksum
How to use checksums
5b37f5d55fe605493d4509b35805c0a4b89ffb687fbecd02d58adea398e92344
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0017a0ff0eac2632943d37b9f12cfea65062e9dc0b3476d17a11319409f0b82f
BLAKE2b-256 checksum
How to use checksums
a10f345f5801f90d1e0888bdaeb0ad23559cd1bcb50841247c90aa5edf243ed4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL ephem-4.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
de9b0ed3836f4b2765e0556058e0dcc595c8226f7aa9d0f04f09b5775b792525
BLAKE2b-256 checksum
How to use checksums
b8595849e612e6460c82b36396d91fd63d0126f72bbe9fe2f6a990bd1d03068f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-win_amd64.whl

Download URL ephem-4.2.1-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
42f298da8ce31c541ed0bf1c680d0b53015859bc3a8a99551b880b510bc8cac6
BLAKE2b-256 checksum
How to use checksums
06140f64f5404916ff8d8dcf6452679431bd1daa2ea4a518a3a6f4e1bc1fa16a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-win32.whl

Download URL ephem-4.2.1-cp311-cp311-win32.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
af5b8cb5509f61f874c8429da0b5e4a420be60b99cd5ceb21d6938d948ccb718
BLAKE2b-256 checksum
How to use checksums
d3a22ae6f5f70194d8c6489990bef50116349d277978023db127f1d946aa1c46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff2d504ccc229b633443fe6fe7e3a806cf7eabac5a1d3d68e25b753a4b9b8217
BLAKE2b-256 checksum
How to use checksums
0daaaeab9d02ae1d5e81d4bce50762666653284478814dc8cea985b78f8c8916
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp311-cp311-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
c65beca42cb406875f8b2df0294544615320654b69494485f16fb986ba223cb9
BLAKE2b-256 checksum
How to use checksums
35b8d29213513df9e1029520eeb63e10d7f3f25f9263c3264f64e8851391dd42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp311-cp311-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2b9109cb292f3eaadbb9a47ccca136ea5a4717bb8c4374597b4119ce7a3f593e
BLAKE2b-256 checksum
How to use checksums
2a6ba583989a43ed4934422bcbeb26450e5a99da2afe25ff673efb6f02bcf834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bbc30121a967ea101f26d2367fe1d323e18872ddc7e1ddf8125c379554005ec7
BLAKE2b-256 checksum
How to use checksums
e879aaffd160408f77273ffb4a713f67df96f7a7673e868edd5a0b53cae79e6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b89e5dc7f10ac5f3042d2ebd3de1f33f315d9c1919481ebad308bf5c0915eef3
BLAKE2b-256 checksum
How to use checksums
7f5032091a3a9e65c869f16b1da335273e01dbef2914d793fea340aa82c2c07a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
2b122062a85b5fdb862a9e2b7eaf5fe7206356fe72b49041354398494bf8adde
BLAKE2b-256 checksum
How to use checksums
844893ffeac4aad6225a40e9a7813a877971759b2978d0b3e0400e3b31733bd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bded885b77693998500bedb2c67e89b5947f53505eed6567c9aafad9d5434139
BLAKE2b-256 checksum
How to use checksums
03e12f13493d5fe82931e9c2a4bb500abfb9068cbdf121af0250734b301fff02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
e75c418c0f729a62f0eb3036cf502c038be16ac896e721021e4caebbe6b65392
BLAKE2b-256 checksum
How to use checksums
7649a7499216d76bb4ce154d4f4c38b983ed7f45e9d53793b80ec44364ab4850
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1c2c173a9757bd25393b7d32a0865fbe85b337e0f83d26244a91b38da423e117
BLAKE2b-256 checksum
How to use checksums
bae486a44b57e002ac2e51c6264581860ea86ec98a331cbed30fe4ea1edbf22a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL ephem-4.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2712e8b855506a47acb9dfb5b57a4dff2336ec398a336b83b75a6357a8a41d90
BLAKE2b-256 checksum
How to use checksums
0d10cb34f1872b64b4e1a72e26492013e6c50dd8568c08c9061f1324e1a1f31d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-win_amd64.whl

Download URL ephem-4.2.1-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5f6db070bbe97e5a20bce35784187bc8b3e83a8b503e5dab603734f742873a4d
BLAKE2b-256 checksum
How to use checksums
c14648a15d321f3610b909d68543f77dc0fa9fb9566e2e8b9ccacacf647439ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-win32.whl

Download URL ephem-4.2.1-cp310-cp310-win32.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
f731e789a707eff92c23aa766dbab879ca7db014ecb552685211dfd44a05c173
BLAKE2b-256 checksum
How to use checksums
a5814722408f857a1ff51372f673009c7804de922d81ef4fc810ad3add1ef152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
314d12bd7c0bea470592a93acb39c2d3e0ce655f20a64504551868d0f54a71f6
BLAKE2b-256 checksum
How to use checksums
b57773d4f057f01d0335c8ddfd94ac81c4a919c8a0254bd64ae3c1b4d5a416c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp310-cp310-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
de6ba146da398f84e32f8e43ed77d3b58a8482fbc91065f02eb35e30452ad602
BLAKE2b-256 checksum
How to use checksums
6d7920eb93e41b67e0ba17a61d14faa09db83734dfc76580d00cab63a612a2d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp310-cp310-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d2a691c9fcf91d1c89d79543f497db0961e40bb9bdaef67d29b3002f18fe48f1
BLAKE2b-256 checksum
How to use checksums
ec9e3fc3c945afe9c1d29d6a03fef21dd6702dac3190e5426e2de7ea694e1820
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
75e705b6fa2357ddca2f8c9822d7dd5151ea57abf824686069823995f601c8cb
BLAKE2b-256 checksum
How to use checksums
625aa1bf10700b5bf2bbcc19c5814e8afaf41d538d35ba648b30664545b1e435
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
41e2f841e466df9310bd36a40e2870aa8fa11c3095bbd9046dceee9043642688
BLAKE2b-256 checksum
How to use checksums
19769270bc08174d2c11237d2fae9bd17f62628055d0b389355f5d14a33c93c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
9fa0469ef7ba9a44f6cf98a84f94b6ba196a31a1dd586cb56e3b0fd491eb1222
BLAKE2b-256 checksum
How to use checksums
5b51bef3d0f42670e79b9fabe90ec5860a247c7f6f80dbb40b4358449816c76a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
480a0b779ab6e8349aed3b0f8b3a4e0977d10c141dff1ee449efa1cffe504516
BLAKE2b-256 checksum
How to use checksums
5fd96ddd29e36b0bcf1ecc38062ea8e751f9f8cf73fa40abda3b963d912b21b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
82946e302c9cfbf304ef39b48de9ac2957a903061591f2c104d43813566c7595
BLAKE2b-256 checksum
How to use checksums
25d29b62f32ae21db542e800edb793179c96e0814cd0035a1b37fba54e5fe499
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1c63829dc50343f98d67c5e8772efce16d1793a5a5dfd908bc7d59482a4c3689
BLAKE2b-256 checksum
How to use checksums
20c65575e7e897cf08fa1eadb5a085af7575df5ca813792a6eff17e5ebd96b10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL ephem-4.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0d755cd3b3440dc862606997c5860e9e92c5bbede1cb16de517189868cd0431b
BLAKE2b-256 checksum
How to use checksums
368796732dd3a1446be66fddae1b64fe219d8f9db8e8ff112fb760bf18bcda3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-win_amd64.whl

Download URL ephem-4.2.1-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
63c5fb86653cfc6319417a0d48f8905c319a07a8f1c8a9cf95f3ad5b5e448e12
BLAKE2b-256 checksum
How to use checksums
af3d0587d1323e382afa82f4e204b251108e4833474870845c7c0cb106a65f9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-win32.whl

Download URL ephem-4.2.1-cp39-cp39-win32.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
591f23dc47dec7e47ddf30caea92c0c2f7121c957c73b42299a1d50040d4d00a
BLAKE2b-256 checksum
How to use checksums
6549ef71965efaf7f891f8c51eab10a1ad81720f9f5e4913caa072f4be59ed34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b10ae08af8ce2bc24b475d47330fbfde84c3000dc2b506db341229237a8617bc
BLAKE2b-256 checksum
How to use checksums
0d71d39ec80066436a4dfbe18706485e7fb8c0e6fb924adccd9acc90eba8d2a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp39-cp39-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
2101a4a45cf7fe72cdbe96dddc0b0294fd75b9750c565d95b520358faa6cbb5a
BLAKE2b-256 checksum
How to use checksums
6c22bfc9c0a2a20735438c652d4dca48988d2617e622407d7279328a02f7d777
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp39-cp39-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dec16457e979f754c5e2d0a068d0e293447398f678bcebe32cfb3c02ba416726
BLAKE2b-256 checksum
How to use checksums
a7a881c3e2e45260b0e9d282c0180753391eeb603cd0e76958aea4ca16b2cae1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0fcb909761e77ac17c22395030802a173483cd8110a52848cbca37246b370c4f
BLAKE2b-256 checksum
How to use checksums
adb180e670bf3fc208ca49f87e3b5595d4e60c3f88d1baff75861e051884f235
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
51bf6de2bade5821a2c6a2e18791c53e3978b44aa0e5da70ab57ea8aca333bdc
BLAKE2b-256 checksum
How to use checksums
d246b1a0628ae642adb7dddd83992a13b47f7e5a7cf5f04b92345dad224f3164
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
d28cec10f15f292a64f4d3f4f16add25335f70326694b0319e5f9259475940c8
BLAKE2b-256 checksum
How to use checksums
7488f340540a325477bf11f60351c5038eeb21e3be81ea6a47c87bebbc031c87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8de6060032b1c8a3f639c1002bd3b8ca1bf5c01deb20ce4bb2cdba99e553d29b
BLAKE2b-256 checksum
How to use checksums
2fd2e7d49c5a1bb986b4124b451db03105d517b360e887f070c8bcf95a2cb40c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3dd9d0af5b87b72b04a3eeff7d5118664118dd7ddde0ac3ed210c8dd03d33f35
BLAKE2b-256 checksum
How to use checksums
3c6b3c0dcf26325b8b4ac353671ddb739b9c94c092774f42a9b6773cac6f9b2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp39-cp39-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5174d39d567e255eb44253d59cc1ca8b50188461c37cdeaf3a6767e4a24445e7
BLAKE2b-256 checksum
How to use checksums
9c9112de463155cad88f5fbde128b7ab5802db820cb8bb4ab7e8a1e705832847
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL ephem-4.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5f2526845bb39e4337170076a82331efcaeafbb7f632c6810167c93579c6576d
BLAKE2b-256 checksum
How to use checksums
59975ea5509299c8aa77906d0166d188d455a142f44ee91efe911b80b87b6af7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-win_amd64.whl

Download URL ephem-4.2.1-cp38-cp38-win_amd64.whl
Size 1.4 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
4d303ce7030fc7b620ba251d2be5bb9928c649151b181bf111c8003e180e7ed8
BLAKE2b-256 checksum
How to use checksums
60e476fff2c054a0adc0c9e34ef915bed4866e4de882ce76ca7eb74a2a35345b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-win32.whl

Download URL ephem-4.2.1-cp38-cp38-win32.whl
Size 1.4 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
217d75ebac6c78adc69878fa66923286397b35c4d7b5cdd44af5bd995d817689
BLAKE2b-256 checksum
How to use checksums
1afe98ccb2970ad6886c1922afdb96a2cf21784e495b84a01db592a3b2d903ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL ephem-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4b11808f61b2da4c8957a8975d498426df780874839df43b222d48a32d7f194f
BLAKE2b-256 checksum
How to use checksums
352f735362569fae6e6954ea21945976fcfd4f81528f70f45ad08aea75c34de3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-musllinux_1_2_s390x.whl

Download URL ephem-4.2.1-cp38-cp38-musllinux_1_2_s390x.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
6fa6ab31f278f95d415cbdc32d9560f694ad91690699f323982bb3a25e8a75d7
BLAKE2b-256 checksum
How to use checksums
7d5bdea83e15cbf47a8788707c91effab2321e1d6b5f1a3c92be381bc094416a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-musllinux_1_2_i686.whl

Download URL ephem-4.2.1-cp38-cp38-musllinux_1_2_i686.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
bd626d402d167d1e8716a234d6b5a55a93bc237c77921aeda3c03c3135d7c693
BLAKE2b-256 checksum
How to use checksums
ad964b91c0de72f3756583a913043d30dc1a0cf7d59858513f3a687c9fafb0e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL ephem-4.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
98254b3234936bc63c2dfe16677f1bb728d1cd72ef6f3fc5bc44025b29707395
BLAKE2b-256 checksum
How to use checksums
1054f7e318b16d214a6d9bc0b8e0a2d7d0e41237a4048ec28f00b7c3ac0667af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL ephem-4.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5bffbab61422421a868eb2c89a08ee507fc7fad4b22d80379f006e3b3b214bd2
BLAKE2b-256 checksum
How to use checksums
3293116b7c5af42cd530c66cef13590b707fe19a11a9b1412b5fa5780aaf5e5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl

Download URL ephem-4.2.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
6de252dbe164553987b250625654236442cb596d9c670f657b6c0393cd87372d
BLAKE2b-256 checksum
How to use checksums
a1e0eeb6ba9de2d495ab71b2d8656a0688215eb9bcf888e1dc54b9b2980f4e4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL ephem-4.2.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
605ca34fed6820b1c9e65b740ccd2a59cc50b9bad35a946771accf15f7dbd3af
BLAKE2b-256 checksum
How to use checksums
9b4db2d362b4b489a2e3cf0bd221a6806bf7226d5b94969e97f0691b6c5c8aee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl

Download URL ephem-4.2.1-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
6a04879c8573283ed44e8354cf273a7ec88a29942f247b7c60350ca60bee860d
BLAKE2b-256 checksum
How to use checksums
27c2409cf492577cc19c3f32d831b039aaed3b26b620cf7d98b0c7fabf835fc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL ephem-4.2.1-cp38-cp38-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c2e7c256b439e2c92e8f6c8b8e14b28f4f851c085be57db7b093a54341c1d16d
BLAKE2b-256 checksum
How to use checksums
beb858eccbcaa49428bd50ca470795bf11f62fbac2ba0a3cb2c52ea3a36d1c58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL ephem-4.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.4 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c6553b686d73b8c033bf847d83b0f0a23db0152d28bce4e8b644d2862f1f997d
BLAKE2b-256 checksum
How to use checksums
67891f32cb059b6c037c13e24bdf7b8393b19e4a6bd9efad2f1ce3652831e156
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL ephem-4.2.1-cp27-cp27mu-manylinux2010_x86_64.whl
Size 1.8 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
0727ad6362455487623a5c5753938d116c7bd633ffbd1246b9e3afe1e68dffa6
BLAKE2b-256 checksum
How to use checksums
ee1a05e3e46ccb3920cf30233d168d390176a1d85a83d589909d8123654d5714
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp27-cp27mu-manylinux2010_i686.whl

Download URL ephem-4.2.1-cp27-cp27mu-manylinux2010_i686.whl
Size 1.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
25981ae9471f28bf0cbed5d582111307e814df1a91fd3c33f6fa77a0fdfa9579
BLAKE2b-256 checksum
How to use checksums
0f0de13a90e5b83f3843cdef396c9281907b58a3f33de71658ad1df53b89cce4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp27-cp27m-manylinux2010_x86_64.whl

Download URL ephem-4.2.1-cp27-cp27m-manylinux2010_x86_64.whl
Size 1.8 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
1164ff1283061b1ecc9d4d4e270c537dccbda3f5662b0f9b7e9d331fe8fdcef1
BLAKE2b-256 checksum
How to use checksums
1345b17980a5a08df65fb78233bef9c28ddf6e82300c8749cfdf8c244a6634ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / ephem-4.2.1-cp27-cp27m-manylinux2010_i686.whl

Download URL ephem-4.2.1-cp27-cp27m-manylinux2010_i686.whl
Size 1.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
e03b1322fe021ff3f3adc04d9bb3528ae85acb2d4d51620f43969ad47ccb03e7
BLAKE2b-256 checksum
How to use checksums
581bef793b6c235283e2e5e4ed276d7f95740151c46dd7936f5d442fe4e6309e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release history Release notifications | RSS feed

This release

4.2.1 This release

101 release files

4.2

100 release files

4.1.4

78 release files

4.1.3

56 release files

4.1.1

84 release files

4.1

41 release files

4.0.0

41 release files

3.7.5.1

1 release file

3.7.3.4

1 release file

3.7.3.3

1 release file

3.7.3

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page