Skip to main content

Python bindings for ERFA

Project description

PyPI Status DOI 10.5281/zenodo.3940699 Travis CI Status Documentation Status

PyERFA is the Python wrapper for the ERFA library (Essential Routines for Fundamental Astronomy), a C library containing key algorithms for astronomy, which is based on the SOFA library published by the International Astronomical Union (IAU). All C routines are wrapped as Numpy universal functions, so that they can be called with scalar or array inputs.

The project is a split of astropy._erfa module, developed in the context of Astropy project, into a standalone package. It contains the ERFA C source code as a git submodule. The wrapping is done with help of the Jinja2 template engine.

If you use this package in your research, please cita it via DOI 10.5281/zenodo.3940699.

Installation instructions

The package can be installed from the package directory using a simple:

$ pip install .

and similarly a wheel can be created with:

$ pip wheel .

Testing

For testing, one can install the packages together with its testing dependencies and then test it with:

$ pip install .[test]
$ pytest

Alternatively, one can use tox, which will set up a separate testing environment for you, with:

$ tox -e test

Usage

The package can be imported as erfa which has all ERFA ufuncs wrapped with python code that tallies errors and warnings. Also exposed are the constants defined by ERFA in erfam.h, as well as numpy.dtype corresponding to structures used by ERFA. Examples:

>>> import erfa
>>> erfa.jd2cal(2460000., [0, 1, 2, 3])
(array([2023, 2023, 2023, 2023], dtype=int32),
 array([2, 2, 2, 2], dtype=int32),
 array([24, 25, 26, 27], dtype=int32),
 array([0.5, 0.5, 0.5, 0.5]))
>>> erfa.plan94(2460000., [0, 1, 2, 3], 1)
array([([ 0.09083713, -0.39041392, -0.21797389], [0.02192341, 0.00705449, 0.00149618]),
       ([ 0.11260694, -0.38275202, -0.21613731], [0.02160375, 0.00826891, 0.00217806]),
       ([ 0.13401992, -0.37387798, -0.21361622], [0.0212094 , 0.00947838, 0.00286503]),
       ([ 0.15500031, -0.36379788, -0.21040601], [0.02073822, 0.01068061, 0.0035561 ])],
      dtype={'names':['p','v'], 'formats':[('<f8', (3,)),('<f8', (3,))], 'offsets':[0,24], 'itemsize':48, 'aligned':True})
>>> erfa.dt_pv
dtype([('p', '<f8', (3,)), ('v', '<f8', (3,))], align=True)
>>> erfa.dt_eraLDBODY
dtype([('bm', '<f8'), ('dl', '<f8'), ('pv', '<f8', (2, 3))], align=True)
>>> erfa.DAYSEC
86400.0

It is also possible to use the ufuncs directly, though then one has to deal with the warning and error states explicitly. For instance, compare:

>>> erfa.jd2cal(-600000., [0, 1, 2, 3])
Traceback (most recent call last):
...
ErfaError: ERFA function "jd2cal" yielded 4 of "unacceptable date (Note 1)"
>>> erfa.ufunc.jd2cal(-600000., [0, 1, 2, 3])
(array([-1, -1, -1, -1], dtype=int32),
 ...,
 array([-1, -1, -1, -1], dtype=int32))

License

PyERFA is licensed under a 3-clause BSD style license - see the LICENSE.rst file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyerfa-1.7.1.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

pyerfa-1.7.1-cp39-cp39-win_amd64.whl (327.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyerfa-1.7.1-cp39-cp39-win32.whl (320.3 kB view details)

Uploaded CPython 3.9 Windows x86

pyerfa-1.7.1-cp39-cp39-manylinux2010_x86_64.whl (696.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pyerfa-1.7.1-cp39-cp39-manylinux2010_i686.whl (638.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pyerfa-1.7.1-cp39-cp39-manylinux1_x86_64.whl (696.6 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.1-cp39-cp39-manylinux1_i686.whl (638.3 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl (302.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyerfa-1.7.1-cp38-cp38-win_amd64.whl (327.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyerfa-1.7.1-cp38-cp38-win32.whl (320.3 kB view details)

Uploaded CPython 3.8 Windows x86

pyerfa-1.7.1-cp38-cp38-manylinux2010_x86_64.whl (727.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pyerfa-1.7.1-cp38-cp38-manylinux2010_i686.whl (660.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pyerfa-1.7.1-cp38-cp38-manylinux1_x86_64.whl (727.3 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.1-cp38-cp38-manylinux1_i686.whl (660.6 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl (306.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyerfa-1.7.1-cp37-cp37m-win_amd64.whl (326.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyerfa-1.7.1-cp37-cp37m-win32.whl (320.1 kB view details)

Uploaded CPython 3.7m Windows x86

pyerfa-1.7.1-cp37-cp37m-manylinux2010_x86_64.whl (697.7 kB view details)

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

pyerfa-1.7.1-cp37-cp37m-manylinux2010_i686.whl (637.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pyerfa-1.7.1-cp37-cp37m-manylinux1_x86_64.whl (697.7 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.1-cp37-cp37m-manylinux1_i686.whl (637.0 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyerfa-1.7.1-cp36-cp36m-win_amd64.whl (326.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyerfa-1.7.1-cp36-cp36m-win32.whl (320.1 kB view details)

Uploaded CPython 3.6m Windows x86

pyerfa-1.7.1-cp36-cp36m-manylinux2010_x86_64.whl (696.8 kB view details)

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

pyerfa-1.7.1-cp36-cp36m-manylinux2010_i686.whl (636.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pyerfa-1.7.1-cp36-cp36m-manylinux1_x86_64.whl (696.8 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.1-cp36-cp36m-manylinux1_i686.whl (636.1 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyerfa-1.7.1.tar.gz.

File metadata

  • Download URL: pyerfa-1.7.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1.tar.gz
Algorithm Hash digest
SHA256 a70aa3a79f162134d35c2769b55022611e1f6845fe1ba46232156938c5cec526
MD5 a255dadd38511568066212654ad28227
BLAKE2b-256 d658f18be3ace5066283f8e8cb7385301aebb0adacda70a09235c4f5675bd673

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 327.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 23da5c7ee00a405488ebc7813d5d42181386082054fbb4fe5fee423bb4dfcae3
MD5 f1587c5b647633b38392a951f01096e8
BLAKE2b-256 e782465d7c008afcc5d0ca95e8c96da401c20f98782ba60b34628e54f94286cc

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 320.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1fb707b7246ef27a16b476e7b564ee1c467b0bb8fb3d71ee7e4aba5352bc9cbd
MD5 7209f18dc8f434b88a71fa157032c851
BLAKE2b-256 acdb238a6a5aaf5477285e31374f7d85f57d746dad8d004f7bde88871ef713c9

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 696.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 af7e8daa8701bbc650b1e93170f2dba5d5082d04fdfc3b03a7a2fa8d261c7b10
MD5 cb25cb1e57d86e5a5abd736cb8cbd017
BLAKE2b-256 1a4d05402325dd9fa5cd566fa32d224e95ef15be0308760a3974e1dbb1493eee

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 638.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2790b41d36bcbf74f6696ca294409d67b131876866e42954692d00760565ef07
MD5 16588b65f8066223e75e646d928cb79c
BLAKE2b-256 34b77b3e36eb42ccdcfb94012868b60afa500c1b209f6278e224ce3d96169778

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 696.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff6a61efe936a5c5cc6dae7091e9cfe0b2a45e33853e587cfe714ebb4e3fbda2
MD5 a15466c7f190e0fc7a326a6e06add5fa
BLAKE2b-256 8da8cb7b885ce53fe24af279950f085624e6355b0baed6685a5ac7e2e23ea8c6

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 638.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a42e55de793a0d8af6927157897e350ec12dfd4dc57d8409af65c59f2c5b72d
MD5 72e3d2ca7157efe05e09bae85d43dd06
BLAKE2b-256 df608d9b9c3d6f573f604503ebe76be73dab3f4348e5006dc46b6e4a58b4c2ad

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a16d21515efc6bd723cb5d61ea9f229dd9018069b3ec836cccc44df2fdaa5a3e
MD5 0d6d3cffbb8c470afe2db6745cfeb645
BLAKE2b-256 cd96c8f469dda58cb18b26dbae81c4ec287bb6400a56a8fe72be4f5d55afab81

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 327.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6bfdc7e300352d38945af15fbe2c891e3fbf03204f802e4f7a78909dbc1b76b8
MD5 10a8515010c8c3f1d164fd04e8d21026
BLAKE2b-256 c594321b2192485d866b49a59a0c38a3d400d91bc2e43e1522b301f187fd0554

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 320.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8ea90602d98962558e87cca9fa4d1857ab031b01c88a747e3108cfb50e7bed41
MD5 cbc252406915f235b5221f94ac573a4c
BLAKE2b-256 b419551fafa8af9cd1a15fe17ea37584ec38eeca881d39a1a411290379727043

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 727.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2e166918f62a3bd2ebdb8dae91e92e53f0cb1f703855872224ca733cb1035fd8
MD5 82c0edc0150996338fe93c7cc0bfddc4
BLAKE2b-256 ce0902f93c2c80e5f653275293121cfcb9fd603bd2f61cbd32018f45214e7309

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 660.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e916d4424f0497e0387e19330ae13f2770418d6363aec74d2734087face0e866
MD5 a1bf213830114befbc863837e856b643
BLAKE2b-256 b1ed6d99adf0c1f28fd71ef900b86d4541a041a02b3c388117b7e80d59581ad3

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 727.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8cdb9043efb2b66edce9fd190a3c9fceef169f557b6dfa59c37120c2537975c
MD5 d098239ebb04c034f38916ca261561f0
BLAKE2b-256 3f0dd58c0ea4f6da67d9bd8ef4063628347f5babab9ac574fe559157e04aa52d

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 660.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 351ef082b056957d7f337c331ba6134b4055cf2e6e6fb82650b04bbb55525ef9
MD5 b7ee2e444528538ffdbd58c459cb62fa
BLAKE2b-256 844f11ffe685bdbe1b75b0f82c6d4fb8e095f317be68b66bcc3bed2b2c064187

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e4987020a453107f22a5d974efc4611925a8b2f915fe3bba06349614e035d12
MD5 172f9b6e2aecf8251ddab188a7b99ba1
BLAKE2b-256 6f34de0125406fec0e7ac0e17b85c2657547cedd0c06632d8f3c808ea2187a34

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 326.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 57774fb12fa43f25692a587f93695977b95c12951ba47fb296b2e5ef6e34bbe7
MD5 c3d81124937579b7fe53b92749b2d733
BLAKE2b-256 e63b91882057e8ecb7920102625f8f244ed9cc112680051a7291ed5e23b4b117

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 320.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f2bcafd9bd64eaa72d5ad51fd90dae7f70b47f5c37db8c41fad1188e0d9f738d
MD5 f203181ae6dd4acd2f2fde3cb294df46
BLAKE2b-256 28ec6973e3395fcfb712f7855bf14b9da6755fad5af91817239ba0286867e5f2

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 697.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 477149ea1031d21db416ef170117f1d5e2dded1a984aa3dd3cff45c2d84f1fe1
MD5 38e572cf45372d075eea71a6fb58888a
BLAKE2b-256 59674fddca51b0ba9345e66a86c3a7aefced93f8ce246f1f41c030856b213f38

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 637.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0166b01e6d79ba21fa3ec72547667f4896531e23bb4dbaa42023b979f7780ab2
MD5 ae8791e1a0f21c3aa8c1b48a9a68b38e
BLAKE2b-256 8750388efd4016dbe609629e55e3ef84ab2a31029d420cda41232369d716302c

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 697.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1956e4d05aed1537afa7f15774633f9f86d678e939b490cc053faeb0c710c29f
MD5 4a6f5ebc376d28f8182325357c77ae86
BLAKE2b-256 904f7da2ce9cfeac3cf193b5e0174ce40ee082b93f401915e32b68a1f96cc6c3

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 637.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e7ba2c063572881a9aac8976a47bed00d971e648e2a4e24536cb11baa05eec5
MD5 af4f78fcc988db1529ed4c295f0b0221
BLAKE2b-256 af4d76c08e053201a5bc412b0b3b658a8bf1b5c81f75b51a4c281cda8ee23de8

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 305.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3903e1f050a4be8cfbc41d1fedfb159a34fbb39d111c7e4a22c65dc5fc8e361
MD5 7780b4214e10a0e556266a8c785b9649
BLAKE2b-256 eba882f14eab03ad36f435ff2c9116face531958719cbf66e99178824054a56e

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 326.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 97770c9fee93c5bee95676fcc7dfdaa6d5897dff83eea61a9e7e0db2e2621e9e
MD5 ec1afe30bb6607f7147831365eff1836
BLAKE2b-256 b80c0c5f099b2d1d949e2d44db677e12f11374699bd04bdc9aea458b4b162ed2

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 320.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 95c83414933c4d8e8752958b7332ae10262b72b5e9e1b4dc8365655b2f89f7ab
MD5 a0b101dc1a2ae3e63bc194271a2189f5
BLAKE2b-256 49d7ee0cf10ace15276c7d0f13b7efb9b24467f18bf48c354c6f560f0c1128fb

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 696.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b3858e0a60cd08e62cb1621628e352ffc4018ee75b8bc43b66e5d0148ff729df
MD5 33c4fcd7829e43bd9e199caef16ca324
BLAKE2b-256 2a0bedae5b5f04e983e592e8d2406b1f5b71d1dbd440c282680b495c2cf79a6b

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 636.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 afaea45d33146f608a508d339f0eddc77dcfbf9a05b4623f9b46f16177650d53
MD5 5ea2caf9f3c79706292a09e1dcc937b1
BLAKE2b-256 a4691de275de9fc0a39142eb20b32a9fad89e8badce09dea427ff500e13c9d29

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 696.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b4ba665e5269151d284b830350a7507ef1ecb39c93352780d0164c91d616a8ba
MD5 f23229a5b1b1235546bace0c16fef960
BLAKE2b-256 c844ec186fd4d83a9d6e8d967ed14d49646488e3bd3503ad7731c8510ddff601

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 636.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 96b338b659e7f53bc8b8213834e8b4463b9bd5821aa219e6ff43587e2d616ce1
MD5 9e1d0dc51ddc7bed9dc7cb52e2cccfb9
BLAKE2b-256 69f07b5d22cb6ad3b0b459472e7c0a8706d126bd46595b4d90c8476b374666ee

See more details on using hashes here.

File details

Details for the file pyerfa-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyerfa-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 305.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.8.6

File hashes

Hashes for pyerfa-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1837857449375d9316e636dfc64dfb3d299cc1c29cd235949cad990127038751
MD5 68dced651a85c89c7fcf321f42c450d0
BLAKE2b-256 9428d0df639fcb5e02c1948aed53d0d0a75776e905861500ee07ab9700afa0e2

See more details on using hashes here.

Supported by

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