Skip to main content

MGRS coordinate conversion for Python

Project description

mgrs: Converting to and from MGRS and Decimal Degrees

GeoTrans provides C code for converting to and from MGRS, but well, it’s C code :). This is a simple ctypes wrapper around two of the MGRS-related functions in GeoTrans.

This library has an internal copy of some of the files from GeoTrans 2.4.2.

ChangeLog

1.4.3

  • Wheels

  • black, flake8, and isort linters

1.4.2

  • GitHub Action builders needed to be changed to push release

1.4.1

  • Fix install requirements #34

1.4.0

  • Alias and deprecate RTreeError #33

1.3.9

  • MGRS now requires packaging library #31

  • Fix wheel imports of shared libs

1.3.8

  • UTF-8 encoding for all strings.

  • Fix #29 implicit tuple on return of UTMToMGRS

1.3.7

  • automated building of osx, linux and win64 wheels

  • Migrate from TravisCI => GitHub Actions

  • Warnings cleanup

  • flake8 validation

1.3.6

1.3.4

1.3.3

1.3.2

  • Better Windows support

  • Bug fix for 3 digit longitudes

1.3.1

  • Python 3.x support

  • Allow user to override precision in UTMToMGRS

Usage

In a nutshell:

>>> import mgrs

>>> latitude = 42.0
>>> longitude = -93.0

>>> m = mgrs.MGRS()
>>> c = m.toMGRS(latitude, longitude)
>>> c
'15TWG0000049776'

>>> d = m.toLatLon(c)
>>> d
(41.999997975127997, -93.000000000000014)

>>> y = '321942.29N'
>>> yd = m.dmstodd(y)
32.328414

>>> d, m, s = m.ddtodms(32.328414)
>>> d, m, s
(32.0, 19.0, 42.290400)

You can also control the precision of the MGRS grid with the MGRSPrecision arguments in .toMGRS(). Other than that, there isn’t too much to it.

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

mgrs-1.4.3.tar.gz (31.2 kB view details)

Uploaded Source

Built Distributions

mgrs-1.4.3-cp310-cp310-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

mgrs-1.4.3-cp310-cp310-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

mgrs-1.4.3-cp310-cp310-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

mgrs-1.4.3-cp310-cp310-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

mgrs-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mgrs-1.4.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.3-cp310-cp310-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mgrs-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mgrs-1.4.3-cp39-cp39-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

mgrs-1.4.3-cp39-cp39-musllinux_1_1_x86_64.whl (52.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

mgrs-1.4.3-cp39-cp39-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

mgrs-1.4.3-cp39-cp39-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

mgrs-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mgrs-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.3-cp39-cp39-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mgrs-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mgrs-1.4.3-cp38-cp38-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

mgrs-1.4.3-cp38-cp38-musllinux_1_1_x86_64.whl (52.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

mgrs-1.4.3-cp38-cp38-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

mgrs-1.4.3-cp38-cp38-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

mgrs-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mgrs-1.4.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.17+ x86-64

mgrs-1.4.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.3-cp38-cp38-macosx_11_0_arm64.whl (21.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mgrs-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mgrs-1.4.3-cp37-cp37m-win_amd64.whl (24.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

mgrs-1.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

mgrs-1.4.3-cp37-cp37m-musllinux_1_1_i686.whl (47.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

mgrs-1.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

mgrs-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

mgrs-1.4.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

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

mgrs-1.4.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl (21.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mgrs-1.4.3-cp36-cp36m-win_amd64.whl (24.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

mgrs-1.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl (52.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

mgrs-1.4.3-cp36-cp36m-musllinux_1_1_i686.whl (47.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

mgrs-1.4.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.9 kB view details)

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

mgrs-1.4.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (47.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

mgrs-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl (21.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file mgrs-1.4.3.tar.gz.

File metadata

  • Download URL: mgrs-1.4.3.tar.gz
  • Upload date:
  • Size: 31.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3.tar.gz
Algorithm Hash digest
SHA256 fe8acbfc2d59a721affeef9bb38b17b337c0f1e9a64fb9a9b7f64aa17b7017ff
MD5 762745623466a20939e171f143ab5e18
BLAKE2b-256 bb04e6295f626192c724adc637c1a8c4433d16c92897c4af2e42143eda519c48

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4752ff976df4f2601ba0a5237afb2f0fdf94628275bb1e858bf50c7999497ef6
MD5 94e8f5670c4c6e0c958f5e0bc9d0e924
BLAKE2b-256 e6e1ac8bf05b76af311bfde91babbcfbac6601303e5a07cb8d7a3b61aa6b1237

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fab7bef698815323ce5f795da364896b00b596377269885e2a3de899ddb0ee34
MD5 4d5488f967925d9d7b071295b9bf2a5c
BLAKE2b-256 8f55ddac30894a2519a627be5b557f44c8eb83d68b1fd29f83b1f69312e20d14

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dc22b5d8e0b9573ff34d2e04213b9218288ff29d435a15d4cf9e286592ceea09
MD5 17aafd73873bcdcc8b8c7e5c04a0aa0d
BLAKE2b-256 e35c133e793d915d36407fac560aef0c187d99b0e2e711f6a0a14ce35ea2285d

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66b4b1c4330706e8cb8bfee47e9397dff502994e9a7f0ff614cd75063d0fb22e
MD5 df41da61a478b05ffe621804f2ea2da3
BLAKE2b-256 b74eb984800cf8182c138dbfa78806ff90dd8a72026384c3a61202ccf1d2a761

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11b6c3c8830331cd6c17e4502704122b28c2e8b17d98f2dac52976e977cf87e0
MD5 06e51cdf5941f68c1ae31c1ca8d0fda4
BLAKE2b-256 6ff5740b34363627c44042f2c6b5b97c2b506ca86dc143ea73e0ce7ab5b441de

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f328ed33e9e55ad2d14714ddf9c894b4e4e992b133920acaa50e319704dcad0
MD5 8857ce8883e0ddbd1fe6bc94a90ecb15
BLAKE2b-256 9a720b9cdef62b4c04ee6d50ee319027359a1fa879c7d06029f189329035b548

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 757c35893a71c881dc15e1b9bfd159c05761b37b13230ebbebac706892e74580
MD5 cd46a0498e0a289d261ad2b41368b771
BLAKE2b-256 b4133b170e5371d68c66b01426cfff18ce227172cb0a218d756267fed8371811

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaf316a67c5534fa936f5f9b0eba676e4a601793892d8369920c619403bea8c2
MD5 ec42e6acd6353970530819385a062bc1
BLAKE2b-256 f19f68dcb853d8542655f3c854ee88e8f343071a10314c1786337d7dbb15de96

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55466f2eaed987d4ee3422d7e8e8b632d9f8219657b0a1b9f7f0e5cf8c84443f
MD5 18e6b7dc91700ee6ceab123994f95caa
BLAKE2b-256 f44e0fe8f87164eb529edfd908caa3bbbeb53b6a5f07f2bb4588c2423edd6490

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b58ea53d603943659dc52da07d4bb30f592f5d28b2098dfdd49cf98c9734df3
MD5 f7228ec094798be0fe1fe183517c1119
BLAKE2b-256 ede931cfd83558e3234410b028508c4fa783afc32d73717f54a652d4de6eaada

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 176d96a2732f6ef058dc2d19202501dc88ce2f0b62f218b4e65fecee58c82ee7
MD5 ae1a48494c1730c7bff6926b970cde93
BLAKE2b-256 47579ee4a75fd41a0b9ee9675da4dbb8297540570dd77341999676cddf14698e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eced3adf999deb1032b8e7dcc3524448af6ae5429871786404a420e02672761f
MD5 c56d93741f0a79a04545bc59a31d8981
BLAKE2b-256 0ca42db038814bd5887a96a0ecc2c6a53bce5a977de75f2afedbef179302c423

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fc7394750f21a3885ba8cd9c975eb8cf5ca09ba713f03ac014d38536d4dc479
MD5 05bb6476e04ef6e950727a581bebee50
BLAKE2b-256 bb23194695a76c57ff672b8031327676d35048b4708a1477d06c52455acd8853

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c768a81f6fedb7ac97d4f44fb40ee7d8eddede96338adb5ccfc0ffa48c00e349
MD5 6c4a9104d245cadc428abd8d5832ce66
BLAKE2b-256 4a7b40e14ab31eca802d462c6d4a12974781011b57774d15ffd940642f7c2bca

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f4395049518f62c92462886828eda59022308aad169e026c0a4d831f4e24203
MD5 0838f2f0644e9cbe3c018d0483cb3d2b
BLAKE2b-256 8861029a6b54a008fae60e8fec848a6db1ba76fdfcb75ac0dabe2dce5f60a949

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35ef369bcfb0ff90162c6e5c65246a9e808e9cd8c3e45006149f3542c77abb1d
MD5 42675b6b170e41b999d72bc79bfa5697
BLAKE2b-256 f7384e61d44b4ace501b8a0255c4a721de64b3e7dd86b5ffb2280138c9950067

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 874be3820b87aca1a7bd3f03a5d5af4b3b12770d2c2412bdbd4527a1c3abcc92
MD5 da9328f24c41d2649e6f5d21f744ecd1
BLAKE2b-256 53672611d9e9919f362efcbed29fe8edb03881124fc38a70eae4727d440c0a47

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8eddf4abb725db8dcb1902c3393c5605693bad476eb06d8f8d068558a720d64a
MD5 516fac060323f2db57d4710c39d06f25
BLAKE2b-256 25aaf553926f96009ef737164be95db89c00ad3dd3f11ff499322703ea676e66

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1772ba1bfe0faba675134a21beb7f2f9fb41be71c13875b769352a9ab8ce7c3
MD5 ddc065514d85cd39aedf8131318aed1b
BLAKE2b-256 5222543ea0cfb195fc916ce2a43832672e28ec7a680e38c4aa6495f189c3049a

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2389f3e2ce9654dfcba624393fe0c93cc01d0d0750bdaf017fce40668433f555
MD5 e947a5837df9169cb7c4ec62e024d50f
BLAKE2b-256 be6296d2a1c252840eb90a5bb1cceb4d87add96df58466876d8dcc19d0e00cf9

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1592c0a69665eaab753c077cae2a403e1648612f4b44cfe97c6bfc76f87d739d
MD5 97d163750b8462dc8c4c77e9cf8e4424
BLAKE2b-256 74a8f49936f399fefdcd797b32bf3e2ef761112bd4ae90c64ef950b1dab08321

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8bb64f166c346df1b1f0d802de95315133a6a366b832e3e7c6ea9ca7f31c2475
MD5 60336d66a2f9111cd2d00d5052aed2bc
BLAKE2b-256 d64c9f1538900ae3960fa57c1b2d5c12acdf4a6f222f7784d4f4fe6f5689a490

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c7bd79bbe4b4e237a7cc7a1ec3cfa10f07ac255d4c08e76d5cfadb13c307c78
MD5 8bcb07cfdb8c604c8c26b06c98f05022
BLAKE2b-256 b34c648758f7cdff4cd1002a1a3904440a6f58a887b0fff8ea4db8bd1433684e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ea0e61baf8ac65e610300e96ad55ccb4c7be33225f6026abc8d6464d061470e
MD5 6d888af1ed28a2c3997eadab3951ce5d
BLAKE2b-256 e2c1f1bc34822cc75450409246368af34d5f26eb08c4ae4303fbe5dc430a8dbd

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d95b2a4d7a09b65601137b16203e8b5104ba8673cc7c1b1b9123b9ef985ddd7c
MD5 97a204e4564692eb6598a8467ecf5cda
BLAKE2b-256 5b9f88cc606756fda98987a8f03bddfc34b0ead084f0599fc702f760959e4805

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69694e74a26c37014b58a770446d32fe86241eb48a0d4688b3cd2515e0953945
MD5 39d1da11a38eaa5d0b015878b783183a
BLAKE2b-256 329eb2e0ea43c8346b5cfcd0f2697360a1b9c2de967c1796e75adc7437ef3035

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6616034bc5ba79ce3886be52af3512372d7c3db907be897ad8984ad1770a8749
MD5 c43bebc823d2b4ac1cbfbbaecb27a54c
BLAKE2b-256 f1ec09aa08ea159271592628be76ea11fee69f9995795888a984de624dcc57a1

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0b757debd3a8ffcc98575893bc00ab28ef90d0b10e9e4f16bd487b251207cd48
MD5 3d03a246f52cd4afca243bab3a01f91a
BLAKE2b-256 e8d1d809c4dabba35a743d3d1a2f2db01cfba02643737582940457175257fc9e

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b171865a98b42da93d04ece1b3c0bb8e5752d334ff30c67e548ce26d831d63b
MD5 3ecc36a01d4f1a6d8a551eeb1a9bc7ee
BLAKE2b-256 ab86fffb74d3a3f9109dab67ee677130c1b3ff572ce465a3556738a023c2f369

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 97bb920874425bcba7df6242b4fc168636f862a6261fb172271f05d42e3dfa15
MD5 7501b69945010a5189c6d8d7f4901f95
BLAKE2b-256 fbffc750ddb1ae1d9077ed3c0249f6fa5b4c1e5098f03c5e96a72c8b17831175

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b6628052aea3b386f3d7273018a84d7afe7c1f658ca45a91d670dca7fd75262
MD5 d0e758624e4738c52c07efa76c95f8e2
BLAKE2b-256 ee485cf030e3e0eccdd405f704ac97a6759651024c5bb51261191ad71d2b7905

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cfdcb62aa618a221e1ed9736b8c2669b16b8b9bb9fe96a5f75dc0a7c1096037
MD5 dbe04f109a6ea4e817606346c1c67633
BLAKE2b-256 ea2dcfc7b159ce63b375f24853eeb69fd9dfed1d6e43f738dd8adf21570a7198

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec8c78f5fc1274e144328670a652aa30f613904941a3ba51eaef44ca582b5e47
MD5 00a711219ee577817017ae8f6f3e1c42
BLAKE2b-256 b8cf67be4a20a621afb2be5ddd9430080df61cbe5d0bb5fca16cc2d35ea0ad31

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f00e3be1aa06b2046f248ebd89fead6cb7e76c9807ac79b2b12604259f0dcbd3
MD5 658bfac19f1c3be0be26c89399e2dd6c
BLAKE2b-256 2368b505a1b0c4e2be0d611b5eb6ee9e952ecd4703de96563228bacf4587ab8d

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a674c0db69c5b6971a770ca198fa61210bbcdcd8bde28171e9dafd1157f14e8b
MD5 39c615047589b52a43a4088f399f7826
BLAKE2b-256 365558276a235acb0e434fae07a814262e863884f9f0f7c2904d918f68cf66d9

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b2ecd7a7f5f34b7491c25535aba05480c83a39dea57d6cc5d5138c01a621d4c4
MD5 ed8fff556eca2a877bff7c12b2e4f0d3
BLAKE2b-256 5eea6eadf4a258943be415525d3a1f6e959ff78ec6f15b280b388dccce694c92

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3b191c5880febdf336455c5a8cda913299e9951951371ca94d8ea6aa135e062
MD5 7e22da56db3c0d143f6840363e39e76a
BLAKE2b-256 498d1f54fe2f0fb32003f741313837a8633a147b3232525aeb9123400a89b30d

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 707830a56ec1ebbf95e9aa6efa42e487cc0b5b19486e0eb0b960e2f585f00485
MD5 41ce1de18c04e8641626e20aa424d283
BLAKE2b-256 3d5e1bab58e6904c69c4ae9be41f9621967af58c0dbd2e81658ca32a4b86011b

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f401f6600b3c726ead322b034072d7e6e5c19329ec3ad289a21d608bf6ec26b4
MD5 1d70205e583a1303109be60ad45d3479
BLAKE2b-256 2d0cdf7b3672f1905070fad6c458454385b2c7c48b7cbca0f4fbe73b66a2acba

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b684951eb1b1024dd4c8fea32ee3c07aed6b95de65beffe4a14186dee955c4e
MD5 6f12bdefb234fdd1788ab13cd44a809c
BLAKE2b-256 45931da4d51973cea6c2134cbbfc340aba58a8341882a29aed7393e203665fa7

See more details on using hashes here.

File details

Details for the file mgrs-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mgrs-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.11

File hashes

Hashes for mgrs-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 477d991254a83710ff0e7ef481fe884638a6723ef837f0a0c58a7a6b6fd4f663
MD5 37357b062b7dde6c1b26ec2ff5a67ec7
BLAKE2b-256 220afbead61e61fea2f73c631fc8cc504d00ac5b9a612a0c7e624e75da64fa5e

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