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.3.tar.gz (768.3 kB 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.3-cp39-cp39-win_amd64.whl (328.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyerfa-1.7.3-cp39-cp39-win32.whl (320.6 kB view details)

Uploaded CPython 3.9Windows x86

pyerfa-1.7.3-cp39-cp39-manylinux2010_x86_64.whl (698.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pyerfa-1.7.3-cp39-cp39-manylinux2010_i686.whl (640.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pyerfa-1.7.3-cp39-cp39-manylinux1_x86_64.whl (698.3 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.3-cp39-cp39-manylinux1_i686.whl (640.2 kB view details)

Uploaded CPython 3.9

pyerfa-1.7.3-cp39-cp39-macosx_10_9_x86_64.whl (303.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyerfa-1.7.3-cp38-cp38-win_amd64.whl (328.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pyerfa-1.7.3-cp38-cp38-win32.whl (321.1 kB view details)

Uploaded CPython 3.8Windows x86

pyerfa-1.7.3-cp38-cp38-manylinux2010_x86_64.whl (731.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pyerfa-1.7.3-cp38-cp38-manylinux2010_i686.whl (665.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pyerfa-1.7.3-cp38-cp38-manylinux1_x86_64.whl (731.8 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.3-cp38-cp38-manylinux1_i686.whl (665.5 kB view details)

Uploaded CPython 3.8

pyerfa-1.7.3-cp38-cp38-macosx_10_9_x86_64.whl (307.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyerfa-1.7.3-cp37-cp37m-win_amd64.whl (327.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyerfa-1.7.3-cp37-cp37m-win32.whl (320.9 kB view details)

Uploaded CPython 3.7mWindows x86

pyerfa-1.7.3-cp37-cp37m-manylinux2010_x86_64.whl (702.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pyerfa-1.7.3-cp37-cp37m-manylinux2010_i686.whl (642.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pyerfa-1.7.3-cp37-cp37m-manylinux1_x86_64.whl (702.4 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.3-cp37-cp37m-manylinux1_i686.whl (642.4 kB view details)

Uploaded CPython 3.7m

pyerfa-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl (306.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyerfa-1.7.3-cp36-cp36m-win_amd64.whl (327.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

pyerfa-1.7.3-cp36-cp36m-win32.whl (320.9 kB view details)

Uploaded CPython 3.6mWindows x86

pyerfa-1.7.3-cp36-cp36m-manylinux2010_x86_64.whl (701.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pyerfa-1.7.3-cp36-cp36m-manylinux2010_i686.whl (641.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pyerfa-1.7.3-cp36-cp36m-manylinux1_x86_64.whl (701.6 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.3-cp36-cp36m-manylinux1_i686.whl (641.4 kB view details)

Uploaded CPython 3.6m

pyerfa-1.7.3-cp36-cp36m-macosx_10_9_x86_64.whl (306.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyerfa-1.7.3.tar.gz
  • Upload date:
  • Size: 768.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3.tar.gz
Algorithm Hash digest
SHA256 6cf3a645d63e0c575a357797903eac5d2c6591d7cdb89217c8c4d39777cf18cb
MD5 71f05201a3500d38338cb9bd01cb4dde
BLAKE2b-256 2f87a3a31eddf7952c2741e2871aed365aca21423b546a51fd0375306f66e460

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 328.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0046fa759ce8e166d9f1bb9ee1dab521f691ce4f1c7ccc27347246c07b41d278
MD5 87ada2676280e318b89a628635d33a2f
BLAKE2b-256 4de781891b514ce11ea958bdae187c963bdc190b3717fa044b001f27507e30d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 320.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 280656b5c425ff911a8c33dd870606cca7541efdd4677783fc8e53374f3165e6
MD5 96284ca14e4a4151b43407865ae83432
BLAKE2b-256 3bdd3bcc144518f39a6239653a38f0d95f132a4da4c40757af082fa351ee3c92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 698.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d8c3e10f85d44f81432c72a6c38ca7f4880e708f741a46cdf24611462e8de9fa
MD5 ea439b257c70b8fadc15efc1b28c345f
BLAKE2b-256 399944d83b1fabf4a0bd9c7dc6064a928cd04942048eb30cf6c4d6680a8ca830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 640.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0b7d4f76d73ddb0aeeb06d51818335412e7e98da5469b1719d7eb91adeee70a
MD5 ca7bc70f2e07848f35864ebb92c3ca2d
BLAKE2b-256 e4993ac80bf090a3314043c63f1028a96d969053e199eab01cb1641e3299c7e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 698.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e64d5f08b30b62c80530620384894b3c3e0945ad178a47e3e2aec7001cf738c3
MD5 7833f0a4c14e0cd697b08ea804bc4a32
BLAKE2b-256 8ede162a904803c630b7982b90517b9d2475315e15f518a3e8fa9d4d0433f54b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 640.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dcdcf45e0a083df71ee0d6488effeac86f2fea1589f82dc7b850aed7fc8f74d
MD5 73d707e4bc8936967f7a94dd1c6fe96a
BLAKE2b-256 ec3517a1da944361277727759d2578d6b0300f4f84c3c9ef487ae4be2f776d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c65b889a41866d842877fb897b379c7a995a8f75e6a94a5ceed17ab24c7eb944
MD5 a32e6bef048fb55a060fef3f8253c5c5
BLAKE2b-256 04aae68e7d723ca48393c6bf93616a7143a4a92f2eb9aa7fed618f7e9cb479fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 328.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b6f8d66439bc3c6f2366cafbbcb4d39467e95ecd3ebe901e8204c7886ed0dcbd
MD5 0a9f0a8b3905622e6846b54ae36429d6
BLAKE2b-256 bc6b3600847394a258d29b94b0221cd072705ede8fac2a32b019d7aff2e7deb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 321.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7397ca80a1a72c5277d6e803a9bd8c535c7199afdf287fe48515026a429e5821
MD5 74bbd54efabd2d4551051b4035e8ed18
BLAKE2b-256 8baf18f92133ee688a932aa69755a6cca13f0d888835a37dedb541f8b07728a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 731.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 83767b545c5f1bebf5fc7cbcf49da3bf106849f8daab3a92970e901fd4ba3771
MD5 2d235258524a229bb25f5cff815e88cd
BLAKE2b-256 59da1d755fd3b9023401e91ccb778608fdd056d081d7a41831667605d16959b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 665.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b0bc078f6dacf3e169fc66b2a38de2f820388551317f4a86af54009c29eb5401
MD5 b47083832667b17956f45083f596cdf5
BLAKE2b-256 2c53da01b63cc9423ecada3c735bfe3ba9434dde1cb85473148cc5aa7d9cf8fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 731.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3af5921651660c136fb1bbcec34d25a2621b0c8c985f1154c0941eb239f04dad
MD5 29bf4e9dc515e2e3bd4873a06de77039
BLAKE2b-256 9321814f788a0930cdd9822a55d78e62704e45bc9d88e7926adf4eeb26fd86bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 665.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 20ec4b99a7ec45071c21ff938da4929090d3c3c9ba98faace62296c87a6fe804
MD5 74eca9202ce4ba8693d8230e37432033
BLAKE2b-256 d1ba278d015fbcbaa8d31d9d0c7e9b4aae136da3a131b05dc1ec5a983a08630a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 307.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24932f31405cb3c29e3f4954af36bd2251ab968f382f3736cd885b046fa0c68d
MD5 fa721f326ad9b68016633e965475d3d7
BLAKE2b-256 01881de1cc5efd3327caa094910c2ac9847b2ccfb2440a1ff1d6f3d9a12e801f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 327.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7a8eac2b30ca56d099a270a89e486d117efede516130daef4be1421d42213376
MD5 6c4ddf7b10c81b5b04a3cdcd63ecf72d
BLAKE2b-256 f9050f83f1828d68f013e94331fbccfdc8cda43e22157df494cb0c7ccd540e59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 320.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cd29258530e8005ebee8fd77c69bf97af231f8b0ce8960f3617446b0394b7690
MD5 dc4e96132a1a72bfd1cbbca41a1d686e
BLAKE2b-256 35f8f8f603ab1a2810e404c04ff8c951aedaafd353565082aad558b3d2008c96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 702.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3d973f78244aaf9c4b3c8e12eed79d8471a67399811ce1e5e214bc741a97d52e
MD5 29cb31c5068daedc0dd665e4d606c3d4
BLAKE2b-256 185ebbbb6553f244c81ad7d280e8c3877e86b48116213dfe060707354de40f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 642.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 496197facb43c6e2074bba7fd91fe1c93c2e6519ee23f8b5673894587ae9401d
MD5 346252d167fe2fa170876530df8b941a
BLAKE2b-256 d7e14e14ecff43c3279f374ceaa77f2c654c054a3533171abc80efccebeefae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 702.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6ae53d73863d3c65b949bcfdbdf4f62cca342346528e28a2b820c5a4615a10c
MD5 497cee8dd5a5f1cbcc0dc66c6d1ce06f
BLAKE2b-256 d029fa56379451d502b83bb9228ab00070c8065212892dc8d7d882e5aa6d283f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 642.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5244f2440294f4299f97e4029717f3de3234dbd16c63f4e1f9f68e3c1efb47d
MD5 1adf1fd1feb90255a5953f1619c2211d
BLAKE2b-256 629d8b26d8f7e532ff610ca1b66e03071a134093ec7344daa1cec85e60905222

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d3fa11c322984a5c5adc35ca860a7321a7f6919c6ec4fdb37202c22dc3ea62f
MD5 fe0c2dd8487b7a2d0593b44c57dea1b0
BLAKE2b-256 3e8615e0252fdd44a9bbd857d9d7e45dd022b73d31cd3e1a543e488f0c0188a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 327.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3e31241d2e7ee28f74e4c27e31b69ca4f770c37787f33016599aadf865ab8b0e
MD5 748b847aff41017de221a46f4b58fdb3
BLAKE2b-256 6de23046b00370d1bc502b4e74b456f0d1fc4ab281ebc07003d7c422cd715659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 320.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 424e1b1d1c153014d8c945b6541a14df91d826f26f709b47ece0aabaff77f00c
MD5 ec3be740c6248d7a9ef1585094084c66
BLAKE2b-256 91834a620b482989f9b2d4723e1be6cd706747dc1a65812b71a322a2fb34fe39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 701.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 952bed5eeab094ccae87ffa4da3687244a11762561e686e5765d8cf49706fa73
MD5 db86418280fa01bfc09d7f107fb00749
BLAKE2b-256 cdf0ae8fb5f8e8aa437f77fa0aa05b1243092c82678f0ef5a98e8bc729ea8209

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 641.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8ff4866f71aed68d4ddc54bab25d87b9ae5872eae95e9f3f26f164e872744084
MD5 3a5e17545811242ac4c790876081b6aa
BLAKE2b-256 af82dfb1e035e44601ebecd95b57870104a2d212d3acfeb5118457ee5cd2919a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 701.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8001f9a0c713d69d4dc837bb8d4dadc76385a51d639756150b8cd8c21f2f6db
MD5 b0660bef2cd8eee82ebbad3886a80d51
BLAKE2b-256 dc5d10c37061a4621598e19f33f05f4e7f5507ffdff2cd9717e0a1e00e4bb39e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 641.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8baf8a4904d415127bed0137207f1bbf5764e9c96b35a98147e3b9159e952c18
MD5 8ce1b34e3b98eaf3436d38a1d2207ab4
BLAKE2b-256 d41a960bf3103b1e9e2aa75bc726de5a209301a1c2082bc7dbf5d26838d8d961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyerfa-1.7.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 306.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for pyerfa-1.7.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34083499af3cf1dab5673bf287b0025cd66fc54838f46b0bcfa539c08907cef3
MD5 7cab07190d884a7bf0b28915d97ca0a9
BLAKE2b-256 bf2009b489fa669d45c4b5cc62cb6a44eecc630a0fbd8ae1a7763f970c0072a0

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