Name | ephem JSON |
Version |
4.1.6
JSON |
| download |
home_page | http://rhodesmill.org/pyephem/ |
Summary | Compute positions of the planets and stars |
upload_time | 2024-10-06 19:10:19 |
maintainer | None |
docs_url | None |
author | Brandon Rhodes |
requires_python | None |
license | MIT |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
==============
PyEphem README
==============
.. _ephem: http://pypi.python.org/pypi/ephem/
.. _pyephem: http://pypi.python.org/pypi/pyephem/
.. _XEphem: http://www.clearskyinstitute.com/xephem/
.. _Quick Reference: http://rhodesmill.org/pyephem/quick
.. _Tutorial: http://rhodesmill.org/pyephem/tutorial
.. _PyEphem web site: http://rhodesmill.org/pyephem/
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 <https://pip.pypa.io/en/latest/installing.html>`_
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
<http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_, 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
<http://www.sphinx-doc.org/en/master/>`_ 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
Raw data
{
"_id": null,
"home_page": "http://rhodesmill.org/pyephem/",
"name": "ephem",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Brandon Rhodes",
"author_email": "brandon@rhodesmill.org",
"download_url": "https://files.pythonhosted.org/packages/45/eb/844403865b5c861736c85196112a791c74283f27bf4496de2381eb57c085/ephem-4.1.6.tar.gz",
"platform": null,
"description": "==============\nPyEphem README\n==============\n\n.. _ephem: http://pypi.python.org/pypi/ephem/\n.. _pyephem: http://pypi.python.org/pypi/pyephem/\n.. _XEphem: http://www.clearskyinstitute.com/xephem/\n.. _Quick Reference: http://rhodesmill.org/pyephem/quick\n.. _Tutorial: http://rhodesmill.org/pyephem/tutorial\n.. _PyEphem web site: http://rhodesmill.org/pyephem/\n\nPyEphem provides an ``ephem`` Python package\nfor performing high-precision astronomy computations.\nThe underlying numeric routines are coded in C\nand are the same ones that drive the popular `XEphem`_ astronomy application,\nwhose author, Elwood Charles Downey,\ngenerously gave permission for their use in PyEphem.\nThe name *ephem* is short for the word *ephemeris*,\nwhich is the traditional term for a table\ngiving the position of a planet, asteroid, or comet for a series of dates.\n\nThe `PyEphem web site`_ offers documentation\nand also links to the project bug tracker, user support forum,\nand source code repository.\nIf you have a C compiler and the\n`pip Python installer tool <https://pip.pypa.io/en/latest/installing.html>`_\non your system,\nthen installing PyEphem should be as easy as::\n\n pip install ephem\n\nThere are also Windows installers in the downloads section below.\n\nThe design of PyEphem emphasizes convenience and ease of use.\nBoth celestial bodies and the observer's location on Earth\nare represented by Python objects,\nwhile dates and angles automatically print themselves\nin standard astronomical formats::\n\n >>> import ephem\n >>> mars = ephem.Mars()\n >>> mars.compute('2008/1/1')\n >>> print(mars.ra)\n 5:59:27.35\n >>> print(mars.dec)\n 26:56:27.4\n\nThe documentation includes both a `Quick Reference`_ and a `Tutorial`_,\nwhich are included in text files within the module itself\nas well as being available on the `PyEphem web site`_.\n\nThe features provided by PyEphem include:\n\n* Find where a planet, comet, or asteroid is in the sky.\n\n * High-precision orbital routines are provdied\n for the Moon, Sun, planets, and the major planet moons.\n * The user can supply the orbital elements of a comet, asteroid,\n or Earth-orbiting satellite, and have its location computed.\n * The positions of 94 bright stars come built-in,\n and the user can create further fixed objects as needed\n for their calculations.\n\n* Determine where in the sky an object appears for a particular observer.\n\n * The user can supply the longitude, latitude, and altitude\n of the location from which they will be observing.\n * For convenience, a small database of longitudes and latitudes\n for 122 world cities is included.\n * For specified weather conditions (temperature and pressure),\n PyEphem will compensate for atmospheric refraction\n by adjusting the positions of bodies near the horizon.\n\n* Compute when a body will rise, transit overhead, and set\n from a particular location.\n\n* Parse and use orbital data in either the traditional XEphem file format,\n or the standard TLE format used for tracking Earth-orbiting satellites.\n\n* Determine the dates of the equinoxes and solstices.\n\n* Compute the dates of the various phases of the Moon.\n\n* Convert from the Greenwich Time (more precisely, Ephemeris Time)\n which PyEphem uses to the local time of the user.\n\n* Convert positions between the equatorial, ecliptic, and galactic\n coordinate systems.\n\n* Determine on which page of the Uranometria or the Millennium Star Atlas\n a particular star should appear.\n\n* Return the Julian Date corresponding to any calendar date.\n\nDevelopers\n----------\n\nIf you are interested in learning about how PyEphem works or in\nexploring its source code, check out this repository from GitHub. It is\nhosted at:\n\nhttps://github.com/brandon-rhodes/pyephem\n\nIf you lack expertise with version control, you can instead simply\ndownload a static copy of the most recent source code using this link:\n\nhttps://github.com/brandon-rhodes/pyephem/archive/master.zip\n\nTo run its source code in place, create a `virtual environment\n<http://docs.python-guide.org/en/latest/dev/virtualenvs/>`_, activate\nit, change directory to the root of the PyEphem source code, and run::\n\n python setup.py build_ext -i\n\nYou can then run the PyEphem test suite to see whether all of its\nfeatures are working correctly on your operating system and platform::\n\n python -m unittest discover ephem\n\nPyEphem\u2019s documentation is organized as a standard `Sphinx\n<http://www.sphinx-doc.org/en/master/>`_ document project. You can\nbuild the documentation either with the Sphinx command line::\n\n sphinx-build -b html pyephem/ephem/doc/ ./my_documentation_directory/\n\n\u2014 or, more typically, by invoking one of the targets in the\ndocumentation\u2019s Makefile::\n\n make -C ephem/doc html\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Compute positions of the planets and stars",
"version": "4.1.6",
"project_urls": {
"Homepage": "http://rhodesmill.org/pyephem/",
"Source": "https://github.com/brandon-rhodes/pyephem"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0d65a1933ea85806bff3d8ae64bf7b7f842cc01532159e010314f17d7eedbe12",
"md5": "ae936b742b826e61b5bc6fd5eab34d8e",
"sha256": "2dc74f0f38d120b720ce9fe431331620b2cadc42214be6aca08ec030ad19e08d"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp27-cp27m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ae936b742b826e61b5bc6fd5eab34d8e",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1424612,
"upload_time": "2024-10-06T19:07:30",
"upload_time_iso_8601": "2024-10-06T19:07:30.618192Z",
"url": "https://files.pythonhosted.org/packages/0d/65/a1933ea85806bff3d8ae64bf7b7f842cc01532159e010314f17d7eedbe12/ephem-4.1.6-cp27-cp27m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a58640e6bcd73d798b34ae80177cd5bfa54140227a0883396fa0cf534eb16c0",
"md5": "7ed22081e984e80711935f7429ef4705",
"sha256": "6b700da408c5ae44e948d01357869134cd2215d6b26dfc32bb94dae1c76b7b09"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp27-cp27m-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "7ed22081e984e80711935f7429ef4705",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1736725,
"upload_time": "2024-10-06T19:07:33",
"upload_time_iso_8601": "2024-10-06T19:07:33.024479Z",
"url": "https://files.pythonhosted.org/packages/6a/58/640e6bcd73d798b34ae80177cd5bfa54140227a0883396fa0cf534eb16c0/ephem-4.1.6-cp27-cp27m-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17a0fda4f44f3057f6700b056a67d998c5ee7ee8e1364c1b2c5f713fe3486de6",
"md5": "a2dcf4f96f0f78be6a75db3153b4345e",
"sha256": "da69564e29edb4e915858c91aae0e4e494bbd5c610b11a784ee9dfe6643a899d"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp27-cp27m-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "a2dcf4f96f0f78be6a75db3153b4345e",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1776928,
"upload_time": "2024-10-06T19:07:35",
"upload_time_iso_8601": "2024-10-06T19:07:35.000224Z",
"url": "https://files.pythonhosted.org/packages/17/a0/fda4f44f3057f6700b056a67d998c5ee7ee8e1364c1b2c5f713fe3486de6/ephem-4.1.6-cp27-cp27m-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80a435a3e170c7aa61cc3666c2154e104283274cab2efe66b35cd6da8d38e44c",
"md5": "98ae59eb8c19a3db46375be1ad39ad8d",
"sha256": "9cc474fba155ffad36db1fd8ee46756c9ce7a4301ae3b6e212e92c0036ccbaff"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp27-cp27mu-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "98ae59eb8c19a3db46375be1ad39ad8d",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1736704,
"upload_time": "2024-10-06T19:07:36",
"upload_time_iso_8601": "2024-10-06T19:07:36.998844Z",
"url": "https://files.pythonhosted.org/packages/80/a4/35a3e170c7aa61cc3666c2154e104283274cab2efe66b35cd6da8d38e44c/ephem-4.1.6-cp27-cp27mu-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7648d38612ea1a5c4c002df069289ca57e7e5d12cd6f05f2a233cb22106aa40f",
"md5": "03bffec9ddb591ad59378158ae4eb3ee",
"sha256": "d76cd4f75731810b6694ee2d9a8150aaf20cc6d695e886475cc857c079c43d24"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp27-cp27mu-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "03bffec9ddb591ad59378158ae4eb3ee",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1776919,
"upload_time": "2024-10-06T19:07:39",
"upload_time_iso_8601": "2024-10-06T19:07:39.037313Z",
"url": "https://files.pythonhosted.org/packages/76/48/d38612ea1a5c4c002df069289ca57e7e5d12cd6f05f2a233cb22106aa40f/ephem-4.1.6-cp27-cp27mu-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8042050d85eb86313b488d3ea1cd795f36226e4896d43ebbbe73d99ab50597db",
"md5": "1c1cacfa45c61c188f4a9fc3344b22a8",
"sha256": "682820bf6e5c914c051193f9a3cb35a3f4432e613062d860e9bb43c23adc43f4"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1c1cacfa45c61c188f4a9fc3344b22a8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1427626,
"upload_time": "2024-10-06T19:07:40",
"upload_time_iso_8601": "2024-10-06T19:07:40.466701Z",
"url": "https://files.pythonhosted.org/packages/80/42/050d85eb86313b488d3ea1cd795f36226e4896d43ebbbe73d99ab50597db/ephem-4.1.6-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d165688d96548cf1952ec0944707dfb1f59ffb9280ff8d60b8d1574d43fcfef7",
"md5": "bb07765dbf3e0fd4e4b6248696ec3baa",
"sha256": "2cfff027fdd2311a03a6001c5fead25eb4bfe99af1139a999c2c42ee036bdd19"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb07765dbf3e0fd4e4b6248696ec3baa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1429903,
"upload_time": "2024-10-06T19:07:41",
"upload_time_iso_8601": "2024-10-06T19:07:41.887248Z",
"url": "https://files.pythonhosted.org/packages/d1/65/688d96548cf1952ec0944707dfb1f59ffb9280ff8d60b8d1574d43fcfef7/ephem-4.1.6-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1d2cd79786eda7bf3729029c5969615cd2a79ff04f3cf0fd317f41fa5041a45",
"md5": "0dfb2471e5f314f622c676260b025176",
"sha256": "4dbe2740c2d2e1b3a3db69d498681c14fbe2c19690a881209b3b93e489e0df50"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0dfb2471e5f314f622c676260b025176",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1753147,
"upload_time": "2024-10-06T19:07:43",
"upload_time_iso_8601": "2024-10-06T19:07:43.253299Z",
"url": "https://files.pythonhosted.org/packages/a1/d2/cd79786eda7bf3729029c5969615cd2a79ff04f3cf0fd317f41fa5041a45/ephem-4.1.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1a556b82b6e6d3467e0bdb1e09459925d68687f9c908708aeb90ceea3b5a95c",
"md5": "82e6bfef0b12ad6b8401f65e94057ba6",
"sha256": "0ee73ce7d513aece25a0902160dea43ea4af451326d27149a059b00b5ceea3ac"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "82e6bfef0b12ad6b8401f65e94057ba6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1772977,
"upload_time": "2024-10-06T19:07:44",
"upload_time_iso_8601": "2024-10-06T19:07:44.825037Z",
"url": "https://files.pythonhosted.org/packages/c1/a5/56b82b6e6d3467e0bdb1e09459925d68687f9c908708aeb90ceea3b5a95c/ephem-4.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fcdbf99030b2abcb85e9e4888b837907d820e7b8ff8cd8497edfd35d48bf07d",
"md5": "548daea632244520771daf154ec97101",
"sha256": "101568d96f77142484227881e20b4ca5d32a92c3edee7a91e529e93bc928addc"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "548daea632244520771daf154ec97101",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1783218,
"upload_time": "2024-10-06T19:07:47",
"upload_time_iso_8601": "2024-10-06T19:07:47.060840Z",
"url": "https://files.pythonhosted.org/packages/7f/cd/bf99030b2abcb85e9e4888b837907d820e7b8ff8cd8497edfd35d48bf07d/ephem-4.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "091552ed5f853a29b1335f1d57c54d0ea747731900815f90291a2478026443f6",
"md5": "8a6df8c779d02f8156d07a482653311d",
"sha256": "b7143892cf73871182baac3121fc297680e0fbfd556689d23878c0cbcd7124f5"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8a6df8c779d02f8156d07a482653311d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1774484,
"upload_time": "2024-10-06T19:07:48",
"upload_time_iso_8601": "2024-10-06T19:07:48.578756Z",
"url": "https://files.pythonhosted.org/packages/09/15/52ed5f853a29b1335f1d57c54d0ea747731900815f90291a2478026443f6/ephem-4.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ff73865dec154540571eb10c4ff4db1f1201eff42454eb8d7a1266948932153",
"md5": "c446e32e22a40402836039234f7afb5d",
"sha256": "7f3abc0d806244ea96b4bc89ed8bbb655fcc141c48ada4ec1f93091dd2213f44"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c446e32e22a40402836039234f7afb5d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1772190,
"upload_time": "2024-10-06T19:07:50",
"upload_time_iso_8601": "2024-10-06T19:07:50.816522Z",
"url": "https://files.pythonhosted.org/packages/1f/f7/3865dec154540571eb10c4ff4db1f1201eff42454eb8d7a1266948932153/ephem-4.1.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "685174045470876ec12c4abe1cf17f1fa2bd6e257d98e7bfd4bd390e1c99e577",
"md5": "a84445c8525c32081c66ddde67a5c01f",
"sha256": "f4a9a0349acd3e0feaf8fe2e5aab4fcf3a0d0ca1bfa8e7c0e3ae015e25e0cdee"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a84445c8525c32081c66ddde67a5c01f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1788741,
"upload_time": "2024-10-06T19:07:52",
"upload_time_iso_8601": "2024-10-06T19:07:52.767444Z",
"url": "https://files.pythonhosted.org/packages/68/51/74045470876ec12c4abe1cf17f1fa2bd6e257d98e7bfd4bd390e1c99e577/ephem-4.1.6-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2d2086aba28c2b876488648e6cf64c6abd98ca2a18466e98bce75dd6ca0222b",
"md5": "c0c099d000aaa9c6078350d4dd676410",
"sha256": "8a1b4fdc34869fd5b8d212ad69b73ddaa8a4a907bfe43f7c307d9b2e8b4c2b5c"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "c0c099d000aaa9c6078350d4dd676410",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1805269,
"upload_time": "2024-10-06T19:07:54",
"upload_time_iso_8601": "2024-10-06T19:07:54.961326Z",
"url": "https://files.pythonhosted.org/packages/a2/d2/086aba28c2b876488648e6cf64c6abd98ca2a18466e98bce75dd6ca0222b/ephem-4.1.6-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d103a16f192ad3c773cc90da84c6ea3be3d697afbda12500c0227fce24c1c061",
"md5": "3342f1ad6958846a5920ecf105dafeb4",
"sha256": "fec931d545be646eab0c7d56c1bd3c71fd9b6b2a34d368457ce6c8f58e7eaba0"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3342f1ad6958846a5920ecf105dafeb4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1774376,
"upload_time": "2024-10-06T19:07:56",
"upload_time_iso_8601": "2024-10-06T19:07:56.343772Z",
"url": "https://files.pythonhosted.org/packages/d1/03/a16f192ad3c773cc90da84c6ea3be3d697afbda12500c0227fce24c1c061/ephem-4.1.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2926fc3c45e0ea83c5a25df7ac080705064f4fd8a280ab6c171bd9c894a86127",
"md5": "6309e2c7dd16324d1f30f25d44991282",
"sha256": "8d357fde411b121d246b6345d21ccb66104b43a9e9b04aa3ba5712256d0e4221"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "6309e2c7dd16324d1f30f25d44991282",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1397243,
"upload_time": "2024-10-06T19:07:58",
"upload_time_iso_8601": "2024-10-06T19:07:58.562201Z",
"url": "https://files.pythonhosted.org/packages/29/26/fc3c45e0ea83c5a25df7ac080705064f4fd8a280ab6c171bd9c894a86127/ephem-4.1.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "858acd8a6e3b58ab634bbeb2cb93ba0d97f38669041b95e527bcc5cd94de7ac4",
"md5": "73e4c1854f641b8744f627c4abcf8ca0",
"sha256": "0fc685c29beec97b800d68171f6bbc6c84f5e0c3d63ec5a68c5d173effe4eca7"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "73e4c1854f641b8744f627c4abcf8ca0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1414356,
"upload_time": "2024-10-06T19:08:01",
"upload_time_iso_8601": "2024-10-06T19:08:01.684754Z",
"url": "https://files.pythonhosted.org/packages/85/8a/cd8a6e3b58ab634bbeb2cb93ba0d97f38669041b95e527bcc5cd94de7ac4/ephem-4.1.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed0d3285160af53c88963892183d79b78a3a022d048aa123a3f76fc9417ed44f",
"md5": "b5009e8573699f2528122e51b88f5673",
"sha256": "217d510cf95f1b5f70e95ed379ba12b56321689a7a8802b42f2cdb4b90f8e52b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b5009e8573699f2528122e51b88f5673",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1427620,
"upload_time": "2024-10-06T19:08:03",
"upload_time_iso_8601": "2024-10-06T19:08:03.142531Z",
"url": "https://files.pythonhosted.org/packages/ed/0d/3285160af53c88963892183d79b78a3a022d048aa123a3f76fc9417ed44f/ephem-4.1.6-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a432b5fff1f11c9c2a5e1121553740db2dd4cdc11160dcd14780459e2748f9ae",
"md5": "a3967d5961a54fffed9e46dbb1b37299",
"sha256": "224c67fc5d53a217f7af5b8ded1a91f22d83e4d26f8986553d2cafbe0608e9d8"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3967d5961a54fffed9e46dbb1b37299",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1429902,
"upload_time": "2024-10-06T19:08:04",
"upload_time_iso_8601": "2024-10-06T19:08:04.530161Z",
"url": "https://files.pythonhosted.org/packages/a4/32/b5fff1f11c9c2a5e1121553740db2dd4cdc11160dcd14780459e2748f9ae/ephem-4.1.6-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4893f73917d14b65889e1b7d7f1226cde1dc9bcd42dea2d2ded5d5f3e4a7ce3",
"md5": "90dc2302871af091c53deb06aa79897e",
"sha256": "e02af942f9b93f5be1d8943d65e8ded26871e4a294281c54c84f89e04ff77277"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "90dc2302871af091c53deb06aa79897e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1753823,
"upload_time": "2024-10-06T19:08:05",
"upload_time_iso_8601": "2024-10-06T19:08:05.993927Z",
"url": "https://files.pythonhosted.org/packages/f4/89/3f73917d14b65889e1b7d7f1226cde1dc9bcd42dea2d2ded5d5f3e4a7ce3/ephem-4.1.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e6f1326ebbc02d0f2b4ee39dafe4a922bae8d1e398f038e3dc60b6fe4b8d2c6",
"md5": "0e915a4fccef18c3d68ff0e00bd30530",
"sha256": "fb42efcd08c721ecf338b39e6a1ee8734575928bb570e5ad24b5da00b293751a"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0e915a4fccef18c3d68ff0e00bd30530",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1773694,
"upload_time": "2024-10-06T19:08:08",
"upload_time_iso_8601": "2024-10-06T19:08:08.278378Z",
"url": "https://files.pythonhosted.org/packages/2e/6f/1326ebbc02d0f2b4ee39dafe4a922bae8d1e398f038e3dc60b6fe4b8d2c6/ephem-4.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a33b5950338fe1d9b16fcea6771f0ca7dbcb4a73b009aef4835b44e98890354",
"md5": "77c1c80d5509ea3241ac9988a649f5be",
"sha256": "01f6ae74ce6b4d4abe2c632e6925ccb0a718e8285707f70493d4ac2c14bbb755"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "77c1c80d5509ea3241ac9988a649f5be",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1783833,
"upload_time": "2024-10-06T19:08:10",
"upload_time_iso_8601": "2024-10-06T19:08:10.371787Z",
"url": "https://files.pythonhosted.org/packages/5a/33/b5950338fe1d9b16fcea6771f0ca7dbcb4a73b009aef4835b44e98890354/ephem-4.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b383848f6cc2dc8ae4d970129fc0bab4a71a336e67cd1785aacac3b131377fd8",
"md5": "3335759d925bef1dc2df26490bfa07ba",
"sha256": "97be1fbf6161d45f003cfd1260fc8185feedcb6f54fe01abb0ae2b625e4f0d92"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3335759d925bef1dc2df26490bfa07ba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1775300,
"upload_time": "2024-10-06T19:08:12",
"upload_time_iso_8601": "2024-10-06T19:08:12.668764Z",
"url": "https://files.pythonhosted.org/packages/b3/83/848f6cc2dc8ae4d970129fc0bab4a71a336e67cd1785aacac3b131377fd8/ephem-4.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d3ec42d18048ed7581ca361c231d77ea5c81e350d3bd5b2abf2fa1ac887912c",
"md5": "e8aeda64bed4c63d08695d2a09fde609",
"sha256": "19f78dba9ef13c6f8973efdf111fea2cfc92ef8af3e56a17be63f9752d2d2480"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e8aeda64bed4c63d08695d2a09fde609",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1772695,
"upload_time": "2024-10-06T19:08:14",
"upload_time_iso_8601": "2024-10-06T19:08:14.083463Z",
"url": "https://files.pythonhosted.org/packages/2d/3e/c42d18048ed7581ca361c231d77ea5c81e350d3bd5b2abf2fa1ac887912c/ephem-4.1.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb4b4addee0acc2c66410deabbec32ecbf1509245ac015d4bf4ee803c3d84006",
"md5": "e6a8ba0fb01226ce2b8f24ce8d95790e",
"sha256": "87ffdb3e4a2aea6c33d60b9d3fa2bdb985494a788fc45eb10fb376cace6f5fa5"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e6a8ba0fb01226ce2b8f24ce8d95790e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1789373,
"upload_time": "2024-10-06T19:08:15",
"upload_time_iso_8601": "2024-10-06T19:08:15.635631Z",
"url": "https://files.pythonhosted.org/packages/cb/4b/4addee0acc2c66410deabbec32ecbf1509245ac015d4bf4ee803c3d84006/ephem-4.1.6-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edd8708284cb1909066a84e7dfb0c3f34b46039f5eef5f2715a98f583b6b27df",
"md5": "a713cbdb7795bc887f79b739448d92ff",
"sha256": "70cc4c09658a97447cdab070144a661c60e98794fef16e0bb9e7c4a072d260c0"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a713cbdb7795bc887f79b739448d92ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1806060,
"upload_time": "2024-10-06T19:08:17",
"upload_time_iso_8601": "2024-10-06T19:08:17.094852Z",
"url": "https://files.pythonhosted.org/packages/ed/d8/708284cb1909066a84e7dfb0c3f34b46039f5eef5f2715a98f583b6b27df/ephem-4.1.6-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18cb1706836640c31ab83e72c26e6c20aca28d4947ae213404f7946e2bb04948",
"md5": "35eea1db08449a8ad8c6ca3c5f9afba1",
"sha256": "6ffa438a5fae5cf346aaee46d20e44a442e004952591d06a06a3104504954a7b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "35eea1db08449a8ad8c6ca3c5f9afba1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1774936,
"upload_time": "2024-10-06T19:08:18",
"upload_time_iso_8601": "2024-10-06T19:08:18.516608Z",
"url": "https://files.pythonhosted.org/packages/18/cb/1706836640c31ab83e72c26e6c20aca28d4947ae213404f7946e2bb04948/ephem-4.1.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "746b3f02556a3132464659311c3c3ed23f63b810934ba94af19a4a57eb16436e",
"md5": "088e0a88791a010b59cfca0886baec6e",
"sha256": "84d416962d78f5d0b5f18fc5155bf0d7a012f5e9e47b62469000ab4c062de6ca"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "088e0a88791a010b59cfca0886baec6e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1397245,
"upload_time": "2024-10-06T19:08:19",
"upload_time_iso_8601": "2024-10-06T19:08:19.961798Z",
"url": "https://files.pythonhosted.org/packages/74/6b/3f02556a3132464659311c3c3ed23f63b810934ba94af19a4a57eb16436e/ephem-4.1.6-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1621fb52617c70751b6594d58b20c4f9857856df29f8a9155997f505ceaa5d7",
"md5": "beb7a109ba3117ef7f165a36bd556c0a",
"sha256": "1f87cb92288d8ec3e83c1ffae2ca0473a84ab696f5bf518d75622be0394e245d"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "beb7a109ba3117ef7f165a36bd556c0a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1414358,
"upload_time": "2024-10-06T19:08:21",
"upload_time_iso_8601": "2024-10-06T19:08:21.324133Z",
"url": "https://files.pythonhosted.org/packages/d1/62/1fb52617c70751b6594d58b20c4f9857856df29f8a9155997f505ceaa5d7/ephem-4.1.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2384c6bea4f2eb036096abae741a765e754a4a546230b47b12334102c1b32545",
"md5": "4ed7dc29ae15bf5998e5f75af7a92f4d",
"sha256": "320e825021e589b2a53bac03f057d1344814dc9cc5249bfeacfd8fe322f17032"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "4ed7dc29ae15bf5998e5f75af7a92f4d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1427150,
"upload_time": "2024-10-06T19:08:22",
"upload_time_iso_8601": "2024-10-06T19:08:22.778827Z",
"url": "https://files.pythonhosted.org/packages/23/84/c6bea4f2eb036096abae741a765e754a4a546230b47b12334102c1b32545/ephem-4.1.6-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cae2d360651d7d760965c5a3100db92175d631c937cbe5a20b608ce59b7c823",
"md5": "a39f0b25a902b4ed971dace17012f14d",
"sha256": "78778ba7ca5a28e3532943eab4584986bc053878e5976e50394e6cb5490e3b3f"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a39f0b25a902b4ed971dace17012f14d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1430120,
"upload_time": "2024-10-06T19:08:24",
"upload_time_iso_8601": "2024-10-06T19:08:24.294513Z",
"url": "https://files.pythonhosted.org/packages/2c/ae/2d360651d7d760965c5a3100db92175d631c937cbe5a20b608ce59b7c823/ephem-4.1.6-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6ff6403cf9482ba7014c098d6caddb5a3562d324ec0514028d1ed7d919aad8d",
"md5": "43305ab480dd294493ca0043cbd16bbb",
"sha256": "bb6b45ae88ddb82219bc06a40b4db8584ab78306ebf239918dde1aa4b97f913c"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "43305ab480dd294493ca0043cbd16bbb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1756710,
"upload_time": "2024-10-06T19:08:25",
"upload_time_iso_8601": "2024-10-06T19:08:25.697777Z",
"url": "https://files.pythonhosted.org/packages/f6/ff/6403cf9482ba7014c098d6caddb5a3562d324ec0514028d1ed7d919aad8d/ephem-4.1.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b04186ac454aba4a388f76ab8c2f1ef2f8b1836c125518ce3ee1113c76734afa",
"md5": "0425b583f91777a4fa742cf3405fb27b",
"sha256": "179f59cbc37c27b35cbea4833d4993b00080ca10753c5b2dca2e838826f854a2"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0425b583f91777a4fa742cf3405fb27b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1776443,
"upload_time": "2024-10-06T19:08:27",
"upload_time_iso_8601": "2024-10-06T19:08:27.919301Z",
"url": "https://files.pythonhosted.org/packages/b0/41/86ac454aba4a388f76ab8c2f1ef2f8b1836c125518ce3ee1113c76734afa/ephem-4.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abd8fb7ac8fa411b633c4f6f78298d6c17d82818ea95ba139e0072295e4c7852",
"md5": "36c035d2502bf6ea50e994f2b0cb4cbd",
"sha256": "4c65dcd6b44572e4f20b02055f69a95b6c591c559dc6a70fca5215fd8ab290f1"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "36c035d2502bf6ea50e994f2b0cb4cbd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1786778,
"upload_time": "2024-10-06T19:08:29",
"upload_time_iso_8601": "2024-10-06T19:08:29.395240Z",
"url": "https://files.pythonhosted.org/packages/ab/d8/fb7ac8fa411b633c4f6f78298d6c17d82818ea95ba139e0072295e4c7852/ephem-4.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8290debe73033000eb36d3e8f4f5929c7af4c67c1b0ff1491c1fc4454bee4090",
"md5": "ba41fe3a75d39f56821fa9c984149f6c",
"sha256": "10b9688bf56b65fd416ebd95a90c63c8d2412b64495e75139a85e6c216cc5a90"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ba41fe3a75d39f56821fa9c984149f6c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1778925,
"upload_time": "2024-10-06T19:08:30",
"upload_time_iso_8601": "2024-10-06T19:08:30.884076Z",
"url": "https://files.pythonhosted.org/packages/82/90/debe73033000eb36d3e8f4f5929c7af4c67c1b0ff1491c1fc4454bee4090/ephem-4.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97694159a7a25a8f76a63602d0c36ee2feae5d939bb93e4a6cc5c7e814ee5439",
"md5": "735e64d500b38224de2300e2deb9994c",
"sha256": "440e45209fb26315fa6d8b179dae1968dd446de4e8a8612ad88111694cd8df1b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "735e64d500b38224de2300e2deb9994c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1775214,
"upload_time": "2024-10-06T19:08:32",
"upload_time_iso_8601": "2024-10-06T19:08:32.384591Z",
"url": "https://files.pythonhosted.org/packages/97/69/4159a7a25a8f76a63602d0c36ee2feae5d939bb93e4a6cc5c7e814ee5439/ephem-4.1.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b32e7cbbcf813f9e19f15914ae5a32fe154034781670e1467efff7cf6958d995",
"md5": "ae5ab3705f77890a9f1856eeed5b4375",
"sha256": "126d6c407793830552c7dcf62f6dccc0c3ef701c4505970a8ab01ecfd70b1a1a"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ae5ab3705f77890a9f1856eeed5b4375",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1791325,
"upload_time": "2024-10-06T19:08:33",
"upload_time_iso_8601": "2024-10-06T19:08:33.851805Z",
"url": "https://files.pythonhosted.org/packages/b3/2e/7cbbcf813f9e19f15914ae5a32fe154034781670e1467efff7cf6958d995/ephem-4.1.6-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8040e8da539b0684a7ee659004c8fe9b3b15e0691c6d0d51c6429e044c4abada",
"md5": "e2a34845ffe56db36eb00522719dda7d",
"sha256": "bc137b3e9060a77b03e8a4b5ad3d40406599bdddcd7dfb2cd9325971d38b7864"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "e2a34845ffe56db36eb00522719dda7d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1808804,
"upload_time": "2024-10-06T19:08:35",
"upload_time_iso_8601": "2024-10-06T19:08:35.561961Z",
"url": "https://files.pythonhosted.org/packages/80/40/e8da539b0684a7ee659004c8fe9b3b15e0691c6d0d51c6429e044c4abada/ephem-4.1.6-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05f67f8475a245a87735a54dcae042bc7438a69dbf48f1674c3bbf5cada27773",
"md5": "d7f20ca8d476e7a1f2a307a4ba8f5200",
"sha256": "25203e20b773ae804333e347da3c286291c6fc95a723a44c1af149cb64938128"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d7f20ca8d476e7a1f2a307a4ba8f5200",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1777775,
"upload_time": "2024-10-06T19:08:38",
"upload_time_iso_8601": "2024-10-06T19:08:38.100557Z",
"url": "https://files.pythonhosted.org/packages/05/f6/7f8475a245a87735a54dcae042bc7438a69dbf48f1674c3bbf5cada27773/ephem-4.1.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f8ca064e58e5eb4d0aae34348011193c025852368a79d8287465d0294ddf622",
"md5": "5db0820f35da3d36387b451ade352000",
"sha256": "1c845b804ce65f875097a543c2b74f8889e5b5414df01f18ba77c085d524d4c6"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "5db0820f35da3d36387b451ade352000",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1397365,
"upload_time": "2024-10-06T19:08:40",
"upload_time_iso_8601": "2024-10-06T19:08:40.383082Z",
"url": "https://files.pythonhosted.org/packages/5f/8c/a064e58e5eb4d0aae34348011193c025852368a79d8287465d0294ddf622/ephem-4.1.6-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0555ee037531beac1065e1d774a528b51404457d328d7ec7a3de5db7fe11efa",
"md5": "2205cf48f1d0afa89d7c1eca96f1f852",
"sha256": "0c0675849f2bc9fca88193c58b376180e9fb7b1d8f2bb764231cbf1ecd40b6b3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "2205cf48f1d0afa89d7c1eca96f1f852",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1414651,
"upload_time": "2024-10-06T19:08:41",
"upload_time_iso_8601": "2024-10-06T19:08:41.914705Z",
"url": "https://files.pythonhosted.org/packages/a0/55/5ee037531beac1065e1d774a528b51404457d328d7ec7a3de5db7fe11efa/ephem-4.1.6-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5a4b844d492cb816250f3ecc9d219a6f83c14117a37021ad2fef129f5e54f6e",
"md5": "77b15e6335f61dadf8c0eb99253176da",
"sha256": "6b17cc3a5af526c199b497cc7b9942246591b83da4247d83be6bf0baa90123e5"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "77b15e6335f61dadf8c0eb99253176da",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1427130,
"upload_time": "2024-10-06T19:08:43",
"upload_time_iso_8601": "2024-10-06T19:08:43.336019Z",
"url": "https://files.pythonhosted.org/packages/e5/a4/b844d492cb816250f3ecc9d219a6f83c14117a37021ad2fef129f5e54f6e/ephem-4.1.6-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9904770242f4cfc7efbcf227820f73cafd048a3b6229277e5d4d2f5e9bf8bf3",
"md5": "bc7a3217b6c8e8604edafec264a6d726",
"sha256": "513c2b2cc04d53563c6c1b0a86ee9f92d2e5e20a0dd72323f3b4183ae4f9d63c"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bc7a3217b6c8e8604edafec264a6d726",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1430093,
"upload_time": "2024-10-06T19:08:44",
"upload_time_iso_8601": "2024-10-06T19:08:44.741715Z",
"url": "https://files.pythonhosted.org/packages/b9/90/4770242f4cfc7efbcf227820f73cafd048a3b6229277e5d4d2f5e9bf8bf3/ephem-4.1.6-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47fa779ccc666abb452892fa2bea4f95b131ea8df3516006d167dd812d97b86c",
"md5": "f89cfe7c07b017e0c1b7e4a8ea233d1e",
"sha256": "1348bfd7703084c75a932c10c66e3194b84cf7f31fe6e2afede1367877b601b7"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f89cfe7c07b017e0c1b7e4a8ea233d1e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1756657,
"upload_time": "2024-10-06T19:08:46",
"upload_time_iso_8601": "2024-10-06T19:08:46.289461Z",
"url": "https://files.pythonhosted.org/packages/47/fa/779ccc666abb452892fa2bea4f95b131ea8df3516006d167dd812d97b86c/ephem-4.1.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab1619cf5cec3a8d6bb1d26352945e5a6f3901eb2a0cf12e911bb3ffb17f6110",
"md5": "bcff1428ae20f0b88934aed8af6a83e7",
"sha256": "9bf720a1fd563f476525c714ac4091b6788ad415ffb4727b77d1fbb6b28a831e"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bcff1428ae20f0b88934aed8af6a83e7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1776401,
"upload_time": "2024-10-06T19:08:47",
"upload_time_iso_8601": "2024-10-06T19:08:47.731202Z",
"url": "https://files.pythonhosted.org/packages/ab/16/19cf5cec3a8d6bb1d26352945e5a6f3901eb2a0cf12e911bb3ffb17f6110/ephem-4.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "226eed581da1d62749cbcd08170cb20adb3dee8740c89eb9f0a74ef24630b5c1",
"md5": "9c17ed9cb6bff25faa507ceb8ddc2888",
"sha256": "4456d08414729fa8461c6772f5e9ca9b577df86f47dacdaf5fda4f9eab0efd56"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9c17ed9cb6bff25faa507ceb8ddc2888",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1786762,
"upload_time": "2024-10-06T19:08:49",
"upload_time_iso_8601": "2024-10-06T19:08:49.198290Z",
"url": "https://files.pythonhosted.org/packages/22/6e/ed581da1d62749cbcd08170cb20adb3dee8740c89eb9f0a74ef24630b5c1/ephem-4.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fefc201e13b9499f154590d899f159ff2fef77ed086af0abc23f984f085a3b61",
"md5": "351983dbb2dd2b7d2d76a4af939f801c",
"sha256": "f87348581588488461af29fe645d36257cf9235838f5a5211cb668215b95b2db"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "351983dbb2dd2b7d2d76a4af939f801c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1778888,
"upload_time": "2024-10-06T19:08:50",
"upload_time_iso_8601": "2024-10-06T19:08:50.547778Z",
"url": "https://files.pythonhosted.org/packages/fe/fc/201e13b9499f154590d899f159ff2fef77ed086af0abc23f984f085a3b61/ephem-4.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "987eefd10837ef8baa45c13ec8f52ef5e12a1757b5056090554874e0b030296e",
"md5": "554109b618176443f694211728635907",
"sha256": "b8c807a54814cd3c8d3e00304afdc99d290f754f53c708a656b92490d870bfd4"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "554109b618176443f694211728635907",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1775212,
"upload_time": "2024-10-06T19:08:52",
"upload_time_iso_8601": "2024-10-06T19:08:52.064519Z",
"url": "https://files.pythonhosted.org/packages/98/7e/efd10837ef8baa45c13ec8f52ef5e12a1757b5056090554874e0b030296e/ephem-4.1.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4f5afdaab78341b0017f67e6dccfe718ccb39c04570da7b78c976ca2bc7af55",
"md5": "e911a94c032e4e70c8f9a150b0a30048",
"sha256": "abccd1a7a8ccfea94746a150f5b9f4dd50aa9db0a24ae4e875ecee2215001290"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e911a94c032e4e70c8f9a150b0a30048",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1791307,
"upload_time": "2024-10-06T19:08:53",
"upload_time_iso_8601": "2024-10-06T19:08:53.611202Z",
"url": "https://files.pythonhosted.org/packages/e4/f5/afdaab78341b0017f67e6dccfe718ccb39c04570da7b78c976ca2bc7af55/ephem-4.1.6-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e75466c4763fcdd2f361f63871253fca0c12577b58a6784bdbcfc0ab33fc779d",
"md5": "101a51767b0dff88f47e09abf891dd80",
"sha256": "84c86bc1a171ddc9bd886fe3f5030638bffe1c808b89e0c7a6aec9aae335a69e"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "101a51767b0dff88f47e09abf891dd80",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1808813,
"upload_time": "2024-10-06T19:08:55",
"upload_time_iso_8601": "2024-10-06T19:08:55.070929Z",
"url": "https://files.pythonhosted.org/packages/e7/54/66c4763fcdd2f361f63871253fca0c12577b58a6784bdbcfc0ab33fc779d/ephem-4.1.6-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48c3702412700856be8ef0759bf1f9c99a9094372e9049dcc1354c11965c9d8f",
"md5": "aa2cb6af21093284f449a6711b174347",
"sha256": "9b5552e33b5f63886c74c2731ab15b5f514db1978d80872d7f3230d1903416f0"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aa2cb6af21093284f449a6711b174347",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1777820,
"upload_time": "2024-10-06T19:08:56",
"upload_time_iso_8601": "2024-10-06T19:08:56.528293Z",
"url": "https://files.pythonhosted.org/packages/48/c3/702412700856be8ef0759bf1f9c99a9094372e9049dcc1354c11965c9d8f/ephem-4.1.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36a1b52c5450afb5ba930ef82d180e77bfea61f45934fcb39e718ad66ef40cfb",
"md5": "23b8bdeae05e493a49946e394be1b205",
"sha256": "636b455486de2262bbd786c53e810db775ab1ebf1ad78f3aae436429a52d1044"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "23b8bdeae05e493a49946e394be1b205",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1397378,
"upload_time": "2024-10-06T19:08:59",
"upload_time_iso_8601": "2024-10-06T19:08:59.018159Z",
"url": "https://files.pythonhosted.org/packages/36/a1/b52c5450afb5ba930ef82d180e77bfea61f45934fcb39e718ad66ef40cfb/ephem-4.1.6-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cca7f629cd67b25d59902e2a6f9ffa3f02b9be306da82ccc05f2d13b3838699",
"md5": "e57e324e9b06485d1ecf9b46133128c7",
"sha256": "2f96d0ae098d300ebbd0cb7c49fc92bc4629c80c08a3fe5c19cb55cafb89eff4"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e57e324e9b06485d1ecf9b46133128c7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1414650,
"upload_time": "2024-10-06T19:09:01",
"upload_time_iso_8601": "2024-10-06T19:09:01.229367Z",
"url": "https://files.pythonhosted.org/packages/7c/ca/7f629cd67b25d59902e2a6f9ffa3f02b9be306da82ccc05f2d13b3838699/ephem-4.1.6-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e89069406671813e0459e022f6d6a2a9586aea6880a2d881a1553952721bb5c4",
"md5": "b323ea06839ab4d61d10efb991441be3",
"sha256": "2507eee5dce3f8bee4d9818e37d5e8480c5149b9222d333fe1cef6c231b1f892"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b323ea06839ab4d61d10efb991441be3",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1424251,
"upload_time": "2024-10-06T19:09:02",
"upload_time_iso_8601": "2024-10-06T19:09:02.759431Z",
"url": "https://files.pythonhosted.org/packages/e8/90/69406671813e0459e022f6d6a2a9586aea6880a2d881a1553952721bb5c4/ephem-4.1.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a2a450d3615f1acf1468048a6b5fab0be2b89a4d224a0bb3bd310f3f9f331cb",
"md5": "c6eacc0b4dc32733fc35e41cd1045340",
"sha256": "68afdd7f452d23147b2c2d4faf1898bb1a7c20bb9db3ee87cbed15e5b9e072bd"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c6eacc0b4dc32733fc35e41cd1045340",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1750190,
"upload_time": "2024-10-06T19:09:04",
"upload_time_iso_8601": "2024-10-06T19:09:04.196502Z",
"url": "https://files.pythonhosted.org/packages/4a/2a/450d3615f1acf1468048a6b5fab0be2b89a4d224a0bb3bd310f3f9f331cb/ephem-4.1.6-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "197b6f7b2a2e4820b5bb72c6da5ea74fa8cc3bdb5b11385e3a1b5767461efcdd",
"md5": "b647bd68400c9ebde9e36d463e99e9b5",
"sha256": "ae3ba0f6f571895f94833f51071666124ec0fecdb131d70c1a17cac1459063e3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b647bd68400c9ebde9e36d463e99e9b5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1770104,
"upload_time": "2024-10-06T19:09:05",
"upload_time_iso_8601": "2024-10-06T19:09:05.776568Z",
"url": "https://files.pythonhosted.org/packages/19/7b/6f7b2a2e4820b5bb72c6da5ea74fa8cc3bdb5b11385e3a1b5767461efcdd/ephem-4.1.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09a2dafaddba007a9d8bc81a6ba120f361691357f3b2d83a53c60ea170495692",
"md5": "f584431fc4e12ab2ab4fd11055413f5c",
"sha256": "9417f2e39724ce064d4d9de77ae912e65d5be59302ad9a6c8fafc1afe41c5709"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f584431fc4e12ab2ab4fd11055413f5c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1777630,
"upload_time": "2024-10-06T19:09:08",
"upload_time_iso_8601": "2024-10-06T19:09:08.042748Z",
"url": "https://files.pythonhosted.org/packages/09/a2/dafaddba007a9d8bc81a6ba120f361691357f3b2d83a53c60ea170495692/ephem-4.1.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95c76bf5b4cca2c00593dd55ff55a30aef2d54e6f0e7c62fa10d7f1a878ba7e1",
"md5": "71d84dcddc20244d77ddbed33612f271",
"sha256": "48a312e28b36e7fb28ffdfcbd377fcb4f6f3ff35cf277ddcb8fc01e2a6f62ead"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "71d84dcddc20244d77ddbed33612f271",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1771463,
"upload_time": "2024-10-06T19:09:09",
"upload_time_iso_8601": "2024-10-06T19:09:09.517295Z",
"url": "https://files.pythonhosted.org/packages/95/c7/6bf5b4cca2c00593dd55ff55a30aef2d54e6f0e7c62fa10d7f1a878ba7e1/ephem-4.1.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e5453bf9bf30b3ee8626c8464f4c51184797227956e9da1b6047b43709f868e",
"md5": "3558438609adef4e5abeefc162a68130",
"sha256": "a66d5732102b78eee0554aea948d794780c01a65376acc14e392cb8c40c3d420"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3558438609adef4e5abeefc162a68130",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1766412,
"upload_time": "2024-10-06T19:09:11",
"upload_time_iso_8601": "2024-10-06T19:09:11.042724Z",
"url": "https://files.pythonhosted.org/packages/3e/54/53bf9bf30b3ee8626c8464f4c51184797227956e9da1b6047b43709f868e/ephem-4.1.6-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d18fe0d351d3081a7222ddab6e65a1b247ac9be7a8e7c14267af81b207ac179",
"md5": "b39871fe59b8f8b95c494cac2151a461",
"sha256": "2242623e532214c4602c96966ff6a3b5a60aac6bb51297c6f2026b1083d1af4b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b39871fe59b8f8b95c494cac2151a461",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1783787,
"upload_time": "2024-10-06T19:09:13",
"upload_time_iso_8601": "2024-10-06T19:09:13.149311Z",
"url": "https://files.pythonhosted.org/packages/5d/18/fe0d351d3081a7222ddab6e65a1b247ac9be7a8e7c14267af81b207ac179/ephem-4.1.6-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a19fa499064d536fe803baa4eec91d3277ed7cbb40db05b190f1a022118b700",
"md5": "2c38d280bb136d5b73246c969e055cda",
"sha256": "35e15b04a61d4aee47797f657e7253b8474158d0c6777361f920abc7eeb99653"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "2c38d280bb136d5b73246c969e055cda",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1799227,
"upload_time": "2024-10-06T19:09:14",
"upload_time_iso_8601": "2024-10-06T19:09:14.636333Z",
"url": "https://files.pythonhosted.org/packages/8a/19/fa499064d536fe803baa4eec91d3277ed7cbb40db05b190f1a022118b700/ephem-4.1.6-cp36-cp36m-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1bebdfa2666858d46cca2c817d6c0517630189451dba91a9fb99c275d5176c7",
"md5": "be3c2dd8e9cb2ddfdb5e5e2382582685",
"sha256": "acef70a17a1ffa4a844374984a6f6b900b274dcf80b40bef6cc2520f4e4a44a3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "be3c2dd8e9cb2ddfdb5e5e2382582685",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1768686,
"upload_time": "2024-10-06T19:09:16",
"upload_time_iso_8601": "2024-10-06T19:09:16.023332Z",
"url": "https://files.pythonhosted.org/packages/c1/be/bdfa2666858d46cca2c817d6c0517630189451dba91a9fb99c275d5176c7/ephem-4.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47eb9b6445aba20e532ec4c9a12ee4dac474c64e7e3c1b1d0edc081922fee5f0",
"md5": "f819641460924c3acd81ccb9973b7441",
"sha256": "f3d8942f57417519058bd41e8880af05656506a57f1b9f18861e1123ec476099"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "f819641460924c3acd81ccb9973b7441",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1409754,
"upload_time": "2024-10-06T19:09:18",
"upload_time_iso_8601": "2024-10-06T19:09:18.286957Z",
"url": "https://files.pythonhosted.org/packages/47/eb/9b6445aba20e532ec4c9a12ee4dac474c64e7e3c1b1d0edc081922fee5f0/ephem-4.1.6-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d395558668a75b84648e8adc54119f1b47de0b2f4ff85be6e0a27ffd67424cd",
"md5": "c1ee5db78f5e5164185dd8d81c7b0dcc",
"sha256": "8026d9d6804534a09c697b3e490a67e92c7a37d409405429b5f5fbc12c00c18a"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "c1ee5db78f5e5164185dd8d81c7b0dcc",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 1430502,
"upload_time": "2024-10-06T19:09:19",
"upload_time_iso_8601": "2024-10-06T19:09:19.722735Z",
"url": "https://files.pythonhosted.org/packages/3d/39/5558668a75b84648e8adc54119f1b47de0b2f4ff85be6e0a27ffd67424cd/ephem-4.1.6-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "304b79adcd5f1a457430181c8e3d4c89be577de610ab06cc79cf0e3bb6bf6f2a",
"md5": "6ffd3944434be9ab9ae7db0411e3eaea",
"sha256": "afcf7e10918159b86ecc9fd28a9014de27945138639bed795980a2941fe0d7a5"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6ffd3944434be9ab9ae7db0411e3eaea",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1428220,
"upload_time": "2024-10-06T19:09:21",
"upload_time_iso_8601": "2024-10-06T19:09:21.228554Z",
"url": "https://files.pythonhosted.org/packages/30/4b/79adcd5f1a457430181c8e3d4c89be577de610ab06cc79cf0e3bb6bf6f2a/ephem-4.1.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7e1274c64b731ddd72bfb753433f5fb4811de67814faf663ca667f582f78d4f",
"md5": "dcc8a518b101d6068dd2754d0d246ad7",
"sha256": "6df9c8e84644792e9f46e7a5c61cbd84b8729de023819862047449e5da65eaac"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dcc8a518b101d6068dd2754d0d246ad7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1750114,
"upload_time": "2024-10-06T19:09:22",
"upload_time_iso_8601": "2024-10-06T19:09:22.633894Z",
"url": "https://files.pythonhosted.org/packages/f7/e1/274c64b731ddd72bfb753433f5fb4811de67814faf663ca667f582f78d4f/ephem-4.1.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21a7e8895aba9fe211261299bd45e4b45431e266dd95ed3ec4685f7f6e4d51cf",
"md5": "10972d467db91945fb455299e5b52518",
"sha256": "cf7ca69b707457958fd2a36e0a221ef1a4cb271798f1d9e13d327211aba2e505"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "10972d467db91945fb455299e5b52518",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1769400,
"upload_time": "2024-10-06T19:09:24",
"upload_time_iso_8601": "2024-10-06T19:09:24.109354Z",
"url": "https://files.pythonhosted.org/packages/21/a7/e8895aba9fe211261299bd45e4b45431e266dd95ed3ec4685f7f6e4d51cf/ephem-4.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e78783eb46f54715d63577136e2507dd0d3c44d5f1a412fe9763b99d60f40e9",
"md5": "3e3bba6c6f3c30993d96f97b7eab924e",
"sha256": "93bbabb27ff682a070955c92b6ffd3493f4d16918b8d222f78207f37b60ef8ab"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3e3bba6c6f3c30993d96f97b7eab924e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1779984,
"upload_time": "2024-10-06T19:09:25",
"upload_time_iso_8601": "2024-10-06T19:09:25.563785Z",
"url": "https://files.pythonhosted.org/packages/9e/78/783eb46f54715d63577136e2507dd0d3c44d5f1a412fe9763b99d60f40e9/ephem-4.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1080e4f4bba385258bc333acb7ce3651533417471d79f54616f1b14038a4223",
"md5": "5c1a0e6e69c5e6a3cf65582a77439447",
"sha256": "ca77119b8acdabb154f1ff9c3534025e1a4d2ba701ee8dc83c3d548d29ea1798"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5c1a0e6e69c5e6a3cf65582a77439447",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1772012,
"upload_time": "2024-10-06T19:09:27",
"upload_time_iso_8601": "2024-10-06T19:09:27.275691Z",
"url": "https://files.pythonhosted.org/packages/d1/08/0e4f4bba385258bc333acb7ce3651533417471d79f54616f1b14038a4223/ephem-4.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06c5435a7b5342ba2660ae32a3c7fdca3992ec661b563da0c3a26376a52d101b",
"md5": "e542c7172dbb3970233617ea4791d8a1",
"sha256": "c5523b5cea3fbef88c9c892a0941727a335b7776a35a55e8a58f5d1141540591"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e542c7172dbb3970233617ea4791d8a1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1767668,
"upload_time": "2024-10-06T19:09:28",
"upload_time_iso_8601": "2024-10-06T19:09:28.722288Z",
"url": "https://files.pythonhosted.org/packages/06/c5/435a7b5342ba2660ae32a3c7fdca3992ec661b563da0c3a26376a52d101b/ephem-4.1.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d9b8175b537b7993e63d8d3112dc9e32af3a8cb054920b543724dd3541fa239",
"md5": "dcd748fc9926a6f8b24ddfe35dccf527",
"sha256": "e6ba444ab763f98e53932be5f5396269acb3c94989ff511a355a9072e38d853a"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dcd748fc9926a6f8b24ddfe35dccf527",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1784521,
"upload_time": "2024-10-06T19:09:31",
"upload_time_iso_8601": "2024-10-06T19:09:31.016953Z",
"url": "https://files.pythonhosted.org/packages/8d/9b/8175b537b7993e63d8d3112dc9e32af3a8cb054920b543724dd3541fa239/ephem-4.1.6-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "098482a6aaebce6d3b09da3b4d8c332d24bc10edb5a0006ae37d865723d5fca4",
"md5": "848313629b18d209f9d9722211cb33d5",
"sha256": "52213cd9712ef597e1815059b92ae2d2474b0dec6dfc51e748d3ae5adbc6596b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "848313629b18d209f9d9722211cb33d5",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1802030,
"upload_time": "2024-10-06T19:09:33",
"upload_time_iso_8601": "2024-10-06T19:09:33.290097Z",
"url": "https://files.pythonhosted.org/packages/09/84/82a6aaebce6d3b09da3b4d8c332d24bc10edb5a0006ae37d865723d5fca4/ephem-4.1.6-cp37-cp37m-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a140a5dcddab8bc9fdaf0d6c8069a90b2743aee6546101c3acdf9c719edcbe6",
"md5": "a202b017ea2f26c84d4c3256b2e473ec",
"sha256": "167f9b204640773f28ed304b2917690e08646254378be8b798b4bd4636f482a3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a202b017ea2f26c84d4c3256b2e473ec",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1770363,
"upload_time": "2024-10-06T19:09:34",
"upload_time_iso_8601": "2024-10-06T19:09:34.949865Z",
"url": "https://files.pythonhosted.org/packages/9a/14/0a5dcddab8bc9fdaf0d6c8069a90b2743aee6546101c3acdf9c719edcbe6/ephem-4.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e009e1565c62be41b42c6d15f918c7893e42a284a9b984587e20127cbd98cede",
"md5": "871c202e8b84468e49bd227953cbfc9e",
"sha256": "c250f4ecd41ba8c358425f886da63e1760e7209b67b8fd687dac615999470a60"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "871c202e8b84468e49bd227953cbfc9e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1397403,
"upload_time": "2024-10-06T19:09:36",
"upload_time_iso_8601": "2024-10-06T19:09:36.522911Z",
"url": "https://files.pythonhosted.org/packages/e0/09/e1565c62be41b42c6d15f918c7893e42a284a9b984587e20127cbd98cede/ephem-4.1.6-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e19ba65c6b3f3940537ca9b893f3aab3875da89e4c0c5530785afb4896a8654",
"md5": "56ba4798841e02fde59447ffb494dcf4",
"sha256": "caf54dd4380cd8f3608f5f6b7b2c49c2ee9283d137645108e7b84d937253bd76"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "56ba4798841e02fde59447ffb494dcf4",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1414694,
"upload_time": "2024-10-06T19:09:37",
"upload_time_iso_8601": "2024-10-06T19:09:37.914023Z",
"url": "https://files.pythonhosted.org/packages/6e/19/ba65c6b3f3940537ca9b893f3aab3875da89e4c0c5530785afb4896a8654/ephem-4.1.6-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d397ad93154930e0c020d05895714b57ccedf21c9aa8bdf0460e77044c6f02d1",
"md5": "ebb7906f2aeba7352529d0e0edb9808a",
"sha256": "280dce118df5a6f6db8d7008e364fc372dd371660ce38a2e50720dda23a626b5"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ebb7906f2aeba7352529d0e0edb9808a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1428273,
"upload_time": "2024-10-06T19:09:39",
"upload_time_iso_8601": "2024-10-06T19:09:39.313538Z",
"url": "https://files.pythonhosted.org/packages/d3/97/ad93154930e0c020d05895714b57ccedf21c9aa8bdf0460e77044c6f02d1/ephem-4.1.6-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0f1111a9e2a84b87d280e3d2204cae6cde1281ba220358a302aecea96155e80",
"md5": "92266be2e75fb00faada9538d6ec296e",
"sha256": "ccd90dd03dca83da5aff36c40d0a98b054a4f038a325523d13ee32cd5579bcd2"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "92266be2e75fb00faada9538d6ec296e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1430256,
"upload_time": "2024-10-06T19:09:40",
"upload_time_iso_8601": "2024-10-06T19:09:40.722258Z",
"url": "https://files.pythonhosted.org/packages/b0/f1/111a9e2a84b87d280e3d2204cae6cde1281ba220358a302aecea96155e80/ephem-4.1.6-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28a5f7f189f4b406f9c12676d6a5a546627e7847eedba0ba223656fb5e284084",
"md5": "a8c26c9eb6fe8a77b27163a1cd9d988d",
"sha256": "6a2c1bf9a14ffb57d285429cacbcee4020aacde45f5e308bf38e76bfc5277069"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a8c26c9eb6fe8a77b27163a1cd9d988d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1753756,
"upload_time": "2024-10-06T19:09:42",
"upload_time_iso_8601": "2024-10-06T19:09:42.136300Z",
"url": "https://files.pythonhosted.org/packages/28/a5/f7f189f4b406f9c12676d6a5a546627e7847eedba0ba223656fb5e284084/ephem-4.1.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "281814ffb49ab8ccf11c81a458dc417db37dc27d2496b72a2fe733ebefda473d",
"md5": "9e6ee008cd0edce9ff14aea41d3f8965",
"sha256": "df33cfa6a9d52e220234ee90b7be6bddc94966a8a1ec04bf3bafd509e69d5e09"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9e6ee008cd0edce9ff14aea41d3f8965",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1773200,
"upload_time": "2024-10-06T19:09:43",
"upload_time_iso_8601": "2024-10-06T19:09:43.639251Z",
"url": "https://files.pythonhosted.org/packages/28/18/14ffb49ab8ccf11c81a458dc417db37dc27d2496b72a2fe733ebefda473d/ephem-4.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a58ecca161e3cd3579e098e32464c18cbe9572227af9d306f6fd27597bcce980",
"md5": "4d3ac1dccb1a044b93541afc4b931929",
"sha256": "6c0b4d36b5fc7f63cabba9fc2ddb5aae79b2e5ade61cbf4a5cdea13d04777044"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4d3ac1dccb1a044b93541afc4b931929",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1783825,
"upload_time": "2024-10-06T19:09:45",
"upload_time_iso_8601": "2024-10-06T19:09:45.117421Z",
"url": "https://files.pythonhosted.org/packages/a5/8e/cca161e3cd3579e098e32464c18cbe9572227af9d306f6fd27597bcce980/ephem-4.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19c7cae3c88fceff8e95757112c0cd8001cfbdf5dd2c4b651fe353b11aa71390",
"md5": "f0a1cad0f88fd17b0cfca6b0207c3cc3",
"sha256": "79363f46c58326473fc098bb1d60fd8befdc28a17d947bdf61b00e59c81b92db"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f0a1cad0f88fd17b0cfca6b0207c3cc3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1775603,
"upload_time": "2024-10-06T19:09:47",
"upload_time_iso_8601": "2024-10-06T19:09:47.401445Z",
"url": "https://files.pythonhosted.org/packages/19/c7/cae3c88fceff8e95757112c0cd8001cfbdf5dd2c4b651fe353b11aa71390/ephem-4.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89210e1d9abf26ff4c72e3996573ab5df555895f959a4d388df5dac752734020",
"md5": "0e45611b729d2ec553845a3333293c2d",
"sha256": "47b00beff64513eab7cf4cbfcbc6a99153ead4c4729438fd89d866bcda0d85a8"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0e45611b729d2ec553845a3333293c2d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1771356,
"upload_time": "2024-10-06T19:09:49",
"upload_time_iso_8601": "2024-10-06T19:09:49.389423Z",
"url": "https://files.pythonhosted.org/packages/89/21/0e1d9abf26ff4c72e3996573ab5df555895f959a4d388df5dac752734020/ephem-4.1.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55c1a69ef14e56f2df171b2abc096a335ca3310b54d4684e1f7f92832186c57d",
"md5": "87aada13f648973e2028ccbf1d3bac30",
"sha256": "3a9e0bbc6ee9b4bb8d3827c9a78ed0dfb04beffb22e660dab3784d1f4325679d"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "87aada13f648973e2028ccbf1d3bac30",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1788199,
"upload_time": "2024-10-06T19:09:50",
"upload_time_iso_8601": "2024-10-06T19:09:50.897113Z",
"url": "https://files.pythonhosted.org/packages/55/c1/a69ef14e56f2df171b2abc096a335ca3310b54d4684e1f7f92832186c57d/ephem-4.1.6-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee14827bb7fbbe75668d103f6f24c21f57d5df6c1f6d5f81d90c05d6ec421483",
"md5": "eb37e43686f0b4b9a18f0c627c399829",
"sha256": "b378c8b76c3c667d0eabb2afa7d21b0ced7539cce6d6752bfa25cf60d4d16b9d"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "eb37e43686f0b4b9a18f0c627c399829",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1805225,
"upload_time": "2024-10-06T19:09:52",
"upload_time_iso_8601": "2024-10-06T19:09:52.375530Z",
"url": "https://files.pythonhosted.org/packages/ee/14/827bb7fbbe75668d103f6f24c21f57d5df6c1f6d5f81d90c05d6ec421483/ephem-4.1.6-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "333a328227f2f164d83e605fdd39360ced9befbf26761aefeaca9ad40d9eafa2",
"md5": "cce3b04cb52ae95ff74e79bc81e74bbd",
"sha256": "f06df5eca050570cee31a8e79b7f53fe5ec2dd4a36c46c5fdc196385ba501142"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cce3b04cb52ae95ff74e79bc81e74bbd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1773956,
"upload_time": "2024-10-06T19:09:54",
"upload_time_iso_8601": "2024-10-06T19:09:54.367672Z",
"url": "https://files.pythonhosted.org/packages/33/3a/328227f2f164d83e605fdd39360ced9befbf26761aefeaca9ad40d9eafa2/ephem-4.1.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed9ead9d69a06a6e73a45656712a76028c792d839095babd4f8164756a2c5f63",
"md5": "bc976393b151d885a22154eb0e92cf89",
"sha256": "79fbe1690890d6592c519fafcd4316974a35ae94b53b63fb09d0c24ab7c7aeb4"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "bc976393b151d885a22154eb0e92cf89",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1397502,
"upload_time": "2024-10-06T19:09:55",
"upload_time_iso_8601": "2024-10-06T19:09:55.804897Z",
"url": "https://files.pythonhosted.org/packages/ed/9e/ad9d69a06a6e73a45656712a76028c792d839095babd4f8164756a2c5f63/ephem-4.1.6-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "402e8bcffcc2972f0e2fa2c883b0ec060029eae30f816e4907711fe56dee291b",
"md5": "091b361b13aebb86704962bd3cca0704",
"sha256": "2a043109f6423d42818350f56823e8a916ca7c8eb80448d4cab3f95f7a921d9b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "091b361b13aebb86704962bd3cca0704",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1414854,
"upload_time": "2024-10-06T19:09:57",
"upload_time_iso_8601": "2024-10-06T19:09:57.253279Z",
"url": "https://files.pythonhosted.org/packages/40/2e/8bcffcc2972f0e2fa2c883b0ec060029eae30f816e4907711fe56dee291b/ephem-4.1.6-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "750a171eef1dc546508d73abdef7ac91ef03c97cd667ae8f22212065911084d3",
"md5": "afd9e240d068c285f8859d5b9c6d57e1",
"sha256": "72a668488fe686ddd547f7bad16c603bd5a7023590f9de839a37944ffa3f1bab"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "afd9e240d068c285f8859d5b9c6d57e1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1427632,
"upload_time": "2024-10-06T19:09:58",
"upload_time_iso_8601": "2024-10-06T19:09:58.732367Z",
"url": "https://files.pythonhosted.org/packages/75/0a/171eef1dc546508d73abdef7ac91ef03c97cd667ae8f22212065911084d3/ephem-4.1.6-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "760cfd1c765b049c3083817878cfd2c4b5a8abd2461ff7802afe39f5af5181d1",
"md5": "cc50a33baf363ca1564b47733c8856b1",
"sha256": "7e97c0bd49324070be078c9452243c52ad916f9535eb16f0ce65cd81a794e043"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cc50a33baf363ca1564b47733c8856b1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1429893,
"upload_time": "2024-10-06T19:10:00",
"upload_time_iso_8601": "2024-10-06T19:10:00.291085Z",
"url": "https://files.pythonhosted.org/packages/76/0c/fd1c765b049c3083817878cfd2c4b5a8abd2461ff7802afe39f5af5181d1/ephem-4.1.6-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbbd14537e7405be05ba992b2d5a4b7b0a7963bffb9f965f967b78b3fde04495",
"md5": "a5fd5007b49826c38b1dfc18b65aaaba",
"sha256": "32418a03b8a71469cefce485cc830cbdde3b9ad6ca19c6a8037a1b9d0062fa4c"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a5fd5007b49826c38b1dfc18b65aaaba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1752795,
"upload_time": "2024-10-06T19:10:02",
"upload_time_iso_8601": "2024-10-06T19:10:02.407471Z",
"url": "https://files.pythonhosted.org/packages/bb/bd/14537e7405be05ba992b2d5a4b7b0a7963bffb9f965f967b78b3fde04495/ephem-4.1.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c676b3fed43df08a2c5de6745ed755e541935a3eb4113bbf48edebeea27e2e9",
"md5": "c5de82e41dc6d5bf538c8c229227ac66",
"sha256": "b85713e1f3e0483265b1d2ca4fe6e84748296a6e433bee0300b051001eacfd8f"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c5de82e41dc6d5bf538c8c229227ac66",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1772679,
"upload_time": "2024-10-06T19:10:04",
"upload_time_iso_8601": "2024-10-06T19:10:04.027945Z",
"url": "https://files.pythonhosted.org/packages/4c/67/6b3fed43df08a2c5de6745ed755e541935a3eb4113bbf48edebeea27e2e9/ephem-4.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0ebf5aac5807cdd4753d917035c205983655bab607723400064fa5dd01521b0",
"md5": "bc48b9079a2d0935ff8755980a602294",
"sha256": "c37679e29ee9bcd4d7736dc539c649691829e4b63e54e2a73ebeffa29d2d3fa3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bc48b9079a2d0935ff8755980a602294",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1782830,
"upload_time": "2024-10-06T19:10:05",
"upload_time_iso_8601": "2024-10-06T19:10:05.550416Z",
"url": "https://files.pythonhosted.org/packages/d0/eb/f5aac5807cdd4753d917035c205983655bab607723400064fa5dd01521b0/ephem-4.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d92cc537dc0eadf338b2318c4a7f53c2c8a7ea05363602f8da394fa5fb9c16c2",
"md5": "0ea1d3e1442b704943550af14b0a03d0",
"sha256": "07f9dfdb97cde8cb88bf1dcc0b0d61a5645c7d70217ca69b6abc1e52b73b5f3f"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0ea1d3e1442b704943550af14b0a03d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1774172,
"upload_time": "2024-10-06T19:10:07",
"upload_time_iso_8601": "2024-10-06T19:10:07.126668Z",
"url": "https://files.pythonhosted.org/packages/d9/2c/c537dc0eadf338b2318c4a7f53c2c8a7ea05363602f8da394fa5fb9c16c2/ephem-4.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f96dbde29cc61e7f4b6ca0f606c558192f0349a64ea7f67025e03493ac7796f",
"md5": "ef95167ca69af5dc1edfed231c842dc6",
"sha256": "1facb28a6dc2b1b00d8165da27549468891821fc4601f36d3ca03db33ec7e846"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ef95167ca69af5dc1edfed231c842dc6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1771928,
"upload_time": "2024-10-06T19:10:09",
"upload_time_iso_8601": "2024-10-06T19:10:09.427345Z",
"url": "https://files.pythonhosted.org/packages/5f/96/dbde29cc61e7f4b6ca0f606c558192f0349a64ea7f67025e03493ac7796f/ephem-4.1.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5541f614c02e9395ede6d40298ea50360ac49a6e6ebf6016b5fe6acc52346ba7",
"md5": "8d236fc277919fb98e5f4420df494a97",
"sha256": "2508ff1f12e1c4c811a16264ba8bd49ad6e47f469fd9a16ffb1ca1be924614dd"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8d236fc277919fb98e5f4420df494a97",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1788442,
"upload_time": "2024-10-06T19:10:11",
"upload_time_iso_8601": "2024-10-06T19:10:11.191108Z",
"url": "https://files.pythonhosted.org/packages/55/41/f614c02e9395ede6d40298ea50360ac49a6e6ebf6016b5fe6acc52346ba7/ephem-4.1.6-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ef3bf1745d08d5c94f03df1f9937383fbea83be420da1c153f8b29d9729e3ce",
"md5": "ecba192184a71ea31f5022dc9b0cec78",
"sha256": "d746197ba01372e5ce72444936d70d9ef0016584a7af3a02f746b74a541ab2cc"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "ecba192184a71ea31f5022dc9b0cec78",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1804921,
"upload_time": "2024-10-06T19:10:12",
"upload_time_iso_8601": "2024-10-06T19:10:12.641069Z",
"url": "https://files.pythonhosted.org/packages/5e/f3/bf1745d08d5c94f03df1f9937383fbea83be420da1c153f8b29d9729e3ce/ephem-4.1.6-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e055e39afd2788ad0346e3362987b24b0e1e306586a4ab58580a7b6ec2d6d555",
"md5": "f819f3100c6780e74154910a3b2b43ce",
"sha256": "ae8a61a973152abb78025c7d763a206ee9f996f8de0f522787eda5b718d6788a"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f819f3100c6780e74154910a3b2b43ce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1773946,
"upload_time": "2024-10-06T19:10:14",
"upload_time_iso_8601": "2024-10-06T19:10:14.559054Z",
"url": "https://files.pythonhosted.org/packages/e0/55/e39afd2788ad0346e3362987b24b0e1e306586a4ab58580a7b6ec2d6d555/ephem-4.1.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e406481a9f1109ee8da6d95f2e8200da03a614d041d910e5cb510f6f4452336",
"md5": "a8e5c3e66a09787120744706d5b9be3a",
"sha256": "d134740e75613902ce891331c29324866e502f3ed0b983061b0f5f1f4683aed3"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "a8e5c3e66a09787120744706d5b9be3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1397245,
"upload_time": "2024-10-06T19:10:16",
"upload_time_iso_8601": "2024-10-06T19:10:16.033154Z",
"url": "https://files.pythonhosted.org/packages/6e/40/6481a9f1109ee8da6d95f2e8200da03a614d041d910e5cb510f6f4452336/ephem-4.1.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73e0c50983f8a78cbcc6b46e6963a52c6bdfe36d18ffa4af8a88e28f67258e45",
"md5": "70ae4ce00982355e98c853a03649ddd3",
"sha256": "c24120e48ecfa86f8fe04a200314a6de5a68663234a0da9f927b7e5143bc3d3b"
},
"downloads": -1,
"filename": "ephem-4.1.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "70ae4ce00982355e98c853a03649ddd3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1414354,
"upload_time": "2024-10-06T19:10:17",
"upload_time_iso_8601": "2024-10-06T19:10:17.613817Z",
"url": "https://files.pythonhosted.org/packages/73/e0/c50983f8a78cbcc6b46e6963a52c6bdfe36d18ffa4af8a88e28f67258e45/ephem-4.1.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45eb844403865b5c861736c85196112a791c74283f27bf4496de2381eb57c085",
"md5": "da21e69133e6ff8f15604738ff4a9d54",
"sha256": "0ed2e4ea76f9db3eede2204adab8af3f1708201c7c04ee8511e710a54ca6425f"
},
"downloads": -1,
"filename": "ephem-4.1.6.tar.gz",
"has_sig": false,
"md5_digest": "da21e69133e6ff8f15604738ff4a9d54",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1255942,
"upload_time": "2024-10-06T19:10:19",
"upload_time_iso_8601": "2024-10-06T19:10:19.054582Z",
"url": "https://files.pythonhosted.org/packages/45/eb/844403865b5c861736c85196112a791c74283f27bf4496de2381eb57c085/ephem-4.1.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-06 19:10:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "brandon-rhodes",
"github_project": "pyephem",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "ephem"
}