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.2.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.9Windows x86-64

pyerfa-1.7.2-cp39-cp39-win32.whl (320.8 kB view details)

Uploaded CPython 3.9Windows x86

pyerfa-1.7.2-cp39-cp39-manylinux2010_x86_64.whl (698.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pyerfa-1.7.2-cp39-cp39-manylinux2010_i686.whl (639.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pyerfa-1.7.2-cp39-cp39-manylinux1_x86_64.whl (698.1 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.2-cp39-cp39-manylinux1_i686.whl (639.9 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pyerfa-1.7.2-cp38-cp38-win32.whl (321.0 kB view details)

Uploaded CPython 3.8Windows x86

pyerfa-1.7.2-cp38-cp38-manylinux2010_x86_64.whl (732.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pyerfa-1.7.2-cp38-cp38-manylinux2010_i686.whl (663.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pyerfa-1.7.2-cp38-cp38-manylinux1_x86_64.whl (732.0 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.2-cp38-cp38-manylinux1_i686.whl (663.4 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl (306.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

pyerfa-1.7.2-cp37-cp37m-win32.whl (320.8 kB view details)

Uploaded CPython 3.7mWindows x86

pyerfa-1.7.2-cp37-cp37m-manylinux2010_x86_64.whl (702.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pyerfa-1.7.2-cp37-cp37m-manylinux2010_i686.whl (640.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pyerfa-1.7.2-cp37-cp37m-manylinux1_x86_64.whl (702.2 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.2-cp37-cp37m-manylinux1_i686.whl (640.5 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

pyerfa-1.7.2-cp36-cp36m-win32.whl (320.8 kB view details)

Uploaded CPython 3.6mWindows x86

pyerfa-1.7.2-cp36-cp36m-manylinux2010_x86_64.whl (701.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pyerfa-1.7.2-cp36-cp36m-manylinux2010_i686.whl (639.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pyerfa-1.7.2-cp36-cp36m-manylinux1_x86_64.whl (701.1 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.2-cp36-cp36m-manylinux1_i686.whl (639.4 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.2-cp36-cp36m-macosx_10_9_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyerfa-1.7.2.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2.tar.gz
Algorithm Hash digest
SHA256 31776213ec36e6bb5382b526be02e417b8697d791c6837199342c19e7dabe8e8
MD5 e12cb48fa36e619ea8f869e472357d4c
BLAKE2b-256 e3afae39c2b1f652895238888f186579b7eedb9f55fdbde78ad75f34597059bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a0742218178e01669ca56e67b6877115a0773fa1960edefbe24813fe197a8e08
MD5 647106644d3284bf89aa1d47c5135a13
BLAKE2b-256 db9a6180b67f564c32ce8671b4be484cd9def9e739c76efd50f468fe1695f249

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bd2186f2e162e1ed2bbbb4358a87e9421dd587000a6c664dc8fbec8f25464e19
MD5 a71127647778e3a179e3079609bc704b
BLAKE2b-256 b47145c59640c41bf1bb3fb260d0101fb4fffa35a606b47dd8d1d5980751ec74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 698.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e5441baa3100bd04691a935d11c5090dc811313002a7a117cc239d9e6c1f6f2
MD5 7b864de4a1d29e8fbf817112989af044
BLAKE2b-256 d65610879fc383d65234aec299ebcefb9b740f9fa7ecf9528ed9b40f7939d68d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 639.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ba8765e4dc7bf36fd4851d7217ad1417f57ec88670a5857b3e32ae1aa8d0eb0f
MD5 cf13719b291eb6538a57c03397781bba
BLAKE2b-256 4cc36e7a48b60245e92e3969e3064678d55b9be04329d276c5ed03569070e0d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 698.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 32326d2cb8333585c6d9aa804d1f673d98c449f864a377dbc1d246b207bf860c
MD5 071d59a082de3625f1f12b2cd6000bb3
BLAKE2b-256 f21277752c2a3e9e392ed56a16b128fc569e583a313f1c43086ac37ad59a3a74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 639.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75a39f680efcdb7ea2fc21731723d91c0c134403cf57954f1200a9a4272a6524
MD5 b35d423363f354a735e29cbec046cf97
BLAKE2b-256 ce1a33740029ca8ee9399128bc375602851310ae487685671dba772260ac19b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e75a7a5799e4ad187b77f2afd5ca39116ba00f0df109012f5ac7ad4279165495
MD5 aea226de085200aa03fac2a2309b2319
BLAKE2b-256 b4a32db308dd57e2653c4dedf9101769f89cf9e89b3f0ba16edef6ee20646c57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 94c405c00de83bea864e3d01d39b4b4b8bb4ccc85e8306f4ded0fdc960f2d9f3
MD5 6da621964d4422ddfa8d58efcc09115b
BLAKE2b-256 d5bfe07c721392d7284fe23a367da2dbdd16a2eb02ce7a5b0fe22b5f1db034b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 252163a61c33a9d2f1290a9b41f47a80cfe19414af866371f952e67aa8489cf5
MD5 8b20608b0d93a86abeaa766b339a5d6f
BLAKE2b-256 696ec744fd72960c63e29e26061f8a12ac0e5e60376320e274e27c4fbc982d42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 732.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d120b34e9fc055108f636cce8e9dd0b23294b7266c61587bbaee15a2d3e3b956
MD5 13a11e1d76d5993f120090d8bfe8aeff
BLAKE2b-256 12ef39c01df922a6910fd8ff7a8f72a40eeaefb2fdf8fb540a550895ae734f90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 663.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1067401b4c1e3bd389f5c988a4e53a7aa8d21062d4cae480417f8b63cd17b8d5
MD5 8aa3b1ba235d034d511c515c4a7638e7
BLAKE2b-256 4f3b4f8a252171dd8bbf4c96e982eb229281655b0f46772099a10672a8d1a28e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 732.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ce28d076aad6cc173a5f7cdaaa023c0f893d6e3bdae4d47ce26d787df4603a17
MD5 868fcfc2df752528f6824447abe24d07
BLAKE2b-256 e30d1a87ccd8680e3d3110d62e1d19a9b096e26c7e66b7e1325252b98b5971fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 663.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6a4fc532b9023ebeb0ecf05ba92cc340fe0dd578ca8a57644c359ae49a7a32e
MD5 fcfbb1a4386b1de7f1ffdfbe942fedd1
BLAKE2b-256 0788cfcd3ee0f050559244399a5479eea243be8dc9d8e33d1b566b364aefbdd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35a7a63d995395d52eebcdb472e3ac1987164c95dd4acc3c3815a0e9cab2353d
MD5 6592f2ac32a66594b56b931abf63ef53
BLAKE2b-256 a6e43a371b2038a60a9d78df87489a3cbaa76a7eed38cc3cf623081795d6d9c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6906b95a752c33da9d717c60bdcfc0004548e6b3f4d2d751aa8ee262aa6b7c78
MD5 8bcc52f2e62caf6654d724dde6439162
BLAKE2b-256 b953cdf5358351215ceac844443a4fbe0690e84c1daa543562c70c6f0fc1b5c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e7dd0dfb1483302315c37b9bd0e0f05a1c5a7c96982fb111547272b030a8b0a9
MD5 5c3906dd4672969b7e665ba27f62811c
BLAKE2b-256 027ffc1a32ea982f3afa9dabefc1dd1e8fd00125fe3272e97776f868cdef1396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 702.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4282afa9991deba2b26d97aca3c06450c74cf30e5a6b0a38118fc6f8b3f3e58
MD5 4829490bd53d87632d75657aca173ecd
BLAKE2b-256 8388af9d5668e6af9a1f564014ff9ea81143da7c63da10cee312076890e93c4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 640.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6bb62da1b1ab7a80059340d72dd22cacbff437150feb824d91462e259bae8b58
MD5 20115b2b516abc850b9a109becd20c5d
BLAKE2b-256 39be8afd0833112c6a4e56fbcdcd9cc989a52b8f0d54530f2f2b1fd8b8ba65ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 702.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a1a1ec5977f246613adcb6b302a768fd05c03f330502dde2c422fb5e36685c3
MD5 5c978467257bb53a8c335740ac225e04
BLAKE2b-256 6f7faaa8ae9a33d4aa705532c8562a8c0c15a7019fcb6ba0f0267abcc424a600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 640.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2357dc8582493ad0537ed39be5a493457992c043ec788829dc41d4b3d2f3349
MD5 39ac9a0bf81f8535fbdf744d42e2f2d1
BLAKE2b-256 e2206953793bf04167b3fadc1cedaf46e8d78a6355852da4b7dbdceb9033b03d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b44306c4f8126e05fff84e993e41f717b7490796e27a8ed2af66fd08d3d448e4
MD5 27e5493cee796ec04afe5c4e100a0cdb
BLAKE2b-256 e653378c8176559e8bbd103d61d43c1ebdcab5b9a62b6fa52133167d93cdafc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 317fb9ce3e486b51470854e6656cfdf0cd380173b4ac9965f0e16a52b7452d3e
MD5 f1b208d3940ed3eebd6ef6c85288e268
BLAKE2b-256 be45ef04d6fa9c94aed26aa7163c3257afbb04535c0c9f38ba9745baaef30806

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d32835fc2ddf67de6c2d0f07274cdbff9fb74ee6992b8046d91a6cbba5a999c2
MD5 d4a7a1dc57de82655793cf278f73a04d
BLAKE2b-256 f1a0c671b75fbefd275d8d74ee2ff8885d9eeb48676ff322ff0a243a4745044b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 701.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ffb92d6dd0b951de93e74967675c0acc8eb9f8df75b66492bbe57b83bfed10e
MD5 58da8cd8bcfc3461a430895b1bcc78ba
BLAKE2b-256 d074100ccd407e1523c9e51183e04223c1c3bb8f1b154ef01d65077011d8ff2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 639.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9cb49956dc3859f42229869dc011b38550d34a9922666f540ef474c3f90930eb
MD5 03180b52f28691d847886be9b4ddac0c
BLAKE2b-256 f16102cb8c86c124b1749060d3139550c4f4be3999e52d3225c278da5d4989f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 701.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 152cea1d8feccc098ba762e47a097da0190a46452845f29de5d4494ee5461a0a
MD5 01c376fff8e71cde52dc6526c72bd689
BLAKE2b-256 84650df7e85f015d53a08e2b8dd3b6821ea86088b435ee50d60790bbbeff903d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 639.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0f440d352e7a16c8ca96c9eb28cc70f8f280b93a7834ff4bca92dfc41ae3427
MD5 0d36f9bce9776790e8ac66c5c3f67595
BLAKE2b-256 30f4ecae5a5d40c8a6f905646f286070d55eb7a329e0535e6c735c7be2eb784e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyerfa-1.7.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8609be0e659c99fde396b723bbbae9d5074deb0afeba5736c42591877ec01115
MD5 89c8ae98a7ef2eb80217170d5dd9284e
BLAKE2b-256 6bf55dd6a1007ad9a36f8eb3e3578d3456fc45309a8b252a48aef9ad3e367859

See more details on using hashes here.

Supported by

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