Skip to main content

Documentation Status PyPI Package latest release

This is a Python wrapper for the AACGM-v2 C library, which allows converting between geographic and magnetic coordinates. The currently included version of the C library is 2.6. The wrapper is provided “as is” in the hopes that it will be useful to the space science community, and will not automatically be updated when new versions of the C library is released. MLT calculations are included in the wrapper (not part of the C library, please see the documentation for implementation details). The package is free software (MIT license).

This fork of aacgmv2 (github link) provides the interface compatible with aacgmv2 < 2.4.

Quick start

Install (requires NumPy):

pip install aacgm2

Convert between AACGM and geographic coordinates:

>>> from aacgm2 import convert
>>> from datetime import date
>>> # geo to AACGM, single numbers
>>> mlat, mlon, malt = convert(60, 15, 300, date(2013, 11, 3))
>>> "{0:.8f}".format(float(mlat))
'57.47357891'
>>> "{0:.8f}".format(float(mlon))
'93.61113360'
>>> "{0:.8f}".format(float(malt))
'1.04566346'
>>> # AACGM to geo, mix arrays/numbers
>>> glat, glon, galt = convert([90, -90], 0, 0, date(2013, 11, 3), a2g=True)
>>> ["{0:.8f}".format(float(gl)) for gl in glat]
['82.96859922', '-74.33899667']
>>> ["{0:.8f}".format(float(gl)) for gl in glon]
['-84.65010944', '125.84759847']
>>> ["{0:.8f}".format(float(ga)) for ga in galt]
['14.12457922', '12.87721946']

Convert between AACGM and MLT:

>>> from aacgm2 import convert_mlt
>>> from datetime import datetime
>>> mlon = convert_mlt([0, 12], datetime(2013, 11, 3, 18, 0), m2a=True)
>>> ["{0:.8f}".format(float(ml)) for ml in mlon]
['159.08043649', '339.08043649']

If you don’t know or use Python, you can also use the command line. See details in the full documentation.

Documentation

https://aacgm2.readthedocs.org/

Badges

docs

Documentation Status

tests

Travis-CI Build Status AppVeyor Build Status Requirements Status
Coverage Status Coverage Status
Scrutinizer Status Codacy Code Quality Status

package

PyPI Package latest release Supported versions
PyPI Wheel Supported implementations

Changelog

2.6.0 (2020-08-16)

  • Same as 2.6.0-rc2

2.6.0-rc2 (2020-08-14)

  • Binary wheels for MacOSX

2.6.0-rc1 (2020-08-12)

  • Updated AACGM-v2 coefficients derived using the IGRF13 model

  • Updated IGRF and GUFM1 coefficients using the IGRF13 model

  • Added additional checks to the C code for reading the IGRF13 coefficient file

  • Updated CI setup on travis and appveyor

  • Deployment of linux and osx wheels to the package index

  • Changed version support to 2.7, 3.4, 3.5, 3.6, 3.7, and 3.8

  • Updated test values to match new coefficients

2.5.0 (unreleased)

  • Updated C code and coefficients to version 2.5.

2.3.9 (2018-05-27)

  • Update to AACGM-v2.4, which includes changes to the inverse MLT and dipole tilt functions and some minor bug fixes

  • Updated dependencies

  • Removed support for python 3.3

2.0.0 (2016-11-03)

  • Change method of calculating MLT, see documentation of convert_mlt for details

1.0.13 (2015-10-30)

  • Correctly convert output of subsol() to geodetic coordinates (the error in MLT/mlon conversion was not large, typically two decimal places and below)

1.0.12 (2015-10-26)

  • Return nan in forbidden region instead of throwing exception

1.0.11 (2015-10-26)

  • Fix bug in subsolar/MLT conversion

1.0.10 (2015-10-08)

  • No code changes, debugged automatic build/upload process and needed new version numbers along the way

1.0.0 (2015-10-07)

  • Initial release

Release files for aacgm2 2.6.0

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

Source distribution (sdist)

Source distribution for aacgm2 2.6.0
File Size Uploaded
aacgm2-2.6.0.tar.gz 1.6 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for aacgm2 2.6.0
File
aacgm2-2.6.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl PyPy 3.6 PyPy 3.6 7.3 Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-pp27-pypy_73-manylinux2010_x86_64.whl PyPy 2.7 PyPy 7.3 Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
aacgm2-2.6.0-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
aacgm2-2.6.0-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
aacgm2-2.6.0-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp35-cp35m-macosx_10_9_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64 Details
aacgm2-2.6.0-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
aacgm2-2.6.0-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
aacgm2-2.6.0-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp27-cp27mu-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
aacgm2-2.6.0-cp27-cp27m-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32 Details
aacgm2-2.6.0-cp27-cp27m-macosx_10_9_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 35.9 MB

Release files / aacgm2-2.6.0.tar.gz

Download URL aacgm2-2.6.0.tar.gz
Size 1.6 MB
Tags Source
SHA-256 checksum
How to use checksums
7b283c043c49c284bcd3b0ee10e16e113c4aaa368caf34ba1e6681d07c3d7223
BLAKE2b-256 checksum
How to use checksums
dcc71754a1fcdf0b77192ce8ca09a253662885caa5389a20909a9f7551657c3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release files / aacgm2-2.6.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Size 1.6 MB
Tags Linux glibc 2.12+ x86-64 PyPy 3.6 PyPy 3.6 7.3
SHA-256 checksum
How to use checksums
9662389fbf416c3ad87f2fcfc83e638c428784361d1f56d6390985bb84514ce0
BLAKE2b-256 checksum
How to use checksums
e0fd694fcbb3587f67720e1b77120582b746e68601577a08696e3f4b095ef24f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-pp27-pypy_73-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-pp27-pypy_73-manylinux2010_x86_64.whl
Size 1.6 MB
Tags Linux glibc 2.12+ x86-64 PyPy 2.7 PyPy 7.3
SHA-256 checksum
How to use checksums
cb41534e4f5426a5d73960205f3825123049f7ef09ab6294b88a0aa0fe435868
BLAKE2b-256 checksum
How to use checksums
ce6caec9be1fdd8502350393659de2824c219f1b6d664497c49177538bdd15fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp38-cp38-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp38-cp38-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
aaa5610ae68459604e5a8b9ac678f4c6f3f93957718d8f1a206ad6935b772a8c
BLAKE2b-256 checksum
How to use checksums
d5d56fa790b16d4d9cca2e435e12dbac74814bf2293925a113f23f8ba0fff1fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp38-cp38-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp38-cp38-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
cf66bf1e9a87e37ccb6fe12a81a44645b338e8375b3da4e7dc38f6fe189cfbd1
BLAKE2b-256 checksum
How to use checksums
d5eb9aeae0e568f3a7015195ee5fba73f97d8d85beb5f07cafd34b4e6ab18142
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL aacgm2-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.6 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b1f6721b3228c385595d505d61b6f83d1cbd7d1b56cd6572054d5feb7f2c6837
BLAKE2b-256 checksum
How to use checksums
ed127f473ce9ff03acf3bb998bbf48ce73a78846f1ae3f2e0946e813051717cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release files / aacgm2-2.6.0-cp37-cp37m-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp37-cp37m-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
c8467eaeafdbcb967a74220949eab6f4e4576a99ff0f1147e283cfbf23c44996
BLAKE2b-256 checksum
How to use checksums
b1c9f23a39f09d7f80363d72f09d40b3cdb55f682384cd8f2616144cc9654fc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp37-cp37m-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp37-cp37m-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
a8187a6b03d8cd7d5b8a78fcfa6d542cea3369fbe90f56fa6951e31e6c01eab8
BLAKE2b-256 checksum
How to use checksums
58f1a818e1164b923940281576010975b2354a57201c88126daea1b0f8720ba1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL aacgm2-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0e53b9b33e5dc2d3923831aa08f1e939005017005fa85e6f8027f0fa65851267
BLAKE2b-256 checksum
How to use checksums
cee4f9125833b8fe6f5e4d94c30c85621076e260b4fe88a9c5f211b6d103fe63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release files / aacgm2-2.6.0-cp36-cp36m-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp36-cp36m-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
80f0281436aa43b48bb7ce563124fca6d5ca8950e49d6fdafa19c6bbea6ea063
BLAKE2b-256 checksum
How to use checksums
a55e3ba682895082391622e6f5bcb10192efc73a709af1b030039f78f516b7db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp36-cp36m-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp36-cp36m-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
5e8e087c653d0b001e300f191273462ca9e92a42939278cf36c64f7fe5710761
BLAKE2b-256 checksum
How to use checksums
e72a81047ecb50f26a891f97814bca280ec6f666b04997944715e4ec67897e73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL aacgm2-2.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
Size 1.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
db183645fff57e2e7c691084193f1488cc49f63fc2e123de4290300e3389a838
BLAKE2b-256 checksum
How to use checksums
56204dfba7ab60d914e78133a0ed84982e7f62f283d545092dafd279cd7e453b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release files / aacgm2-2.6.0-cp35-cp35m-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp35-cp35m-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
0f1e41671f5ef5a57b6bb11a6bf44ebb8c3038527056bcec419807ea5a65b6b5
BLAKE2b-256 checksum
How to use checksums
a4859ee6a75b2cf653ca1465a437fd77b1d15d6cdaba2ef89098aa61e7245922
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp35-cp35m-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp35-cp35m-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
c59b92c405cb66c241a4282ab83086fb8d129607b36ffa7beb7fbf2ba528ac27
BLAKE2b-256 checksum
How to use checksums
ce48426fbee4a7c7f178be6bc0665585a7b7282cd5523c904bab8e17d683d274
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp35-cp35m-macosx_10_9_x86_64.whl

Download URL aacgm2-2.6.0-cp35-cp35m-macosx_10_9_x86_64.whl
Size 1.6 MB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
330ca67b0751dc9d1d5f7e2e6b0a0915f98ac0186d53a195028a1fcc6764c0cb
BLAKE2b-256 checksum
How to use checksums
c6d6ff713c94b6fc8c5f9db18693718786337f461159ef72561b6327505f9fb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release files / aacgm2-2.6.0-cp34-cp34m-manylinux1_x86_64.whl

Download URL aacgm2-2.6.0-cp34-cp34m-manylinux1_x86_64.whl
Size 1.6 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
158858d74a26aa9f1c2456ab5d4ddae9d2480bff146866a48f9fc64dd72d375e
BLAKE2b-256 checksum
How to use checksums
0c15244ab037cc22e39c0de83169f7c3b3e6f781e2f6b1e80c4de0afdb9a041a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp34-cp34m-manylinux1_i686.whl

Download URL aacgm2-2.6.0-cp34-cp34m-manylinux1_i686.whl
Size 1.6 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
db66a7cb3bddcf59d73921c2e258f3999e6cf2fea5aae937ede33196225a6da7
BLAKE2b-256 checksum
How to use checksums
75689b626060afb65414e077d76259f811a4f2a5c56233352657223616be060e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp27-cp27mu-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
20aed39033c6a2611651330db58c103cb4e7765de9c0623be818522be7dcac7d
BLAKE2b-256 checksum
How to use checksums
a0ab76aefc905321926ba9c6628c876c73fa4678d64d7598c1b1a9b8c56da11a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp27-cp27mu-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp27-cp27mu-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
50179e9f4dbdd156ebff1359e7cc85091068454cfd4414b0fbff9f5df708822e
BLAKE2b-256 checksum
How to use checksums
8dbfeeb87eabbaec2c5659bab2691e555d54182e8abd84e95fbfd2a25839ea10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp27-cp27m-manylinux2010_x86_64.whl

Download URL aacgm2-2.6.0-cp27-cp27m-manylinux2010_x86_64.whl
Size 1.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
42c0d9c0cff76a7956c4870f845b51fe5a9a21d1e50077dc22c4916029a0168b
BLAKE2b-256 checksum
How to use checksums
5c77734f35761e9e689b3409de1e1365c194999a18b07e0848260c785d4424e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp27-cp27m-manylinux2010_i686.whl

Download URL aacgm2-2.6.0-cp27-cp27m-manylinux2010_i686.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
288c77920034d5bcb70e61c74a541e85d5cdca9c4fc53ef828f8bdb7f3c7f485
BLAKE2b-256 checksum
How to use checksums
984b1148c1025497740c1120c54e44a643f7a0bce194082c75887a82778802c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

Release files / aacgm2-2.6.0-cp27-cp27m-macosx_10_9_x86_64.whl

Download URL aacgm2-2.6.0-cp27-cp27m-macosx_10_9_x86_64.whl
Size 1.6 MB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f3f5a3da900e92aed629d880e4db332a4397af9dd5e07bf25be90165063c11f7
BLAKE2b-256 checksum
How to use checksums
27b73322d451e236dab04203a8d2a94417d0b9019fef855e3d649a69b7e08632
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4

Release history Release notifications | RSS feed

This release

2.6.0 This release

22 release files

2.3.9

2 release files

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