Skip to main content

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.5.3

  • Fix busted auto-release

1.5.2

  • Use ABI name for finding DLL

1.5.1

  • Wheels

  • fix broken test with fixed precision comparison

1.5.0

  • Wheels

  • pyproject.toml-based metadata

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.

Release files for mgrs 1.5.4

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

Source distribution (sdist)

Source distribution for mgrs 1.5.4
File Size Uploaded
mgrs-1.5.4.tar.gz 32.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mgrs 1.5.4
File
mgrs-1.5.4-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
mgrs-1.5.4-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
mgrs-1.5.4-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
mgrs-1.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
mgrs-1.5.4-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
mgrs-1.5.4-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
mgrs-1.5.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
mgrs-1.5.4-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
mgrs-1.5.4-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
mgrs-1.5.4-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
mgrs-1.5.4-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
mgrs-1.5.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mgrs-1.5.4-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
mgrs-1.5.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
mgrs-1.5.4-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.12+ x86-64 Details
mgrs-1.5.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
mgrs-1.5.4-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
mgrs-1.5.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mgrs-1.5.4-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
mgrs-1.5.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
mgrs-1.5.4-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
mgrs-1.5.4-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
mgrs-1.5.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mgrs-1.5.4-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
mgrs-1.5.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
mgrs-1.5.4-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
mgrs-1.5.4-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
mgrs-1.5.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mgrs-1.5.4-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
mgrs-1.5.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
mgrs-1.5.4-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
mgrs-1.5.4-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
mgrs-1.5.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mgrs-1.5.4-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
mgrs-1.5.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
mgrs-1.5.4-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
mgrs-1.5.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
mgrs-1.5.4-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64, Linux glibc 2.28+ x86-64 Details
mgrs-1.5.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mgrs-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 4.5 MB

Release files / mgrs-1.5.4.tar.gz

Download URL mgrs-1.5.4.tar.gz
Size 32.4 kB
Tags Source
SHA-256 checksum
How to use checksums
41ba8f5bfbf8d15fb5d34d275cd8201fc9917ebb10fb82913831e95a31930ffa
BLAKE2b-256 checksum
How to use checksums
8f51bcef7a556739c62ee89160adf0ddc3e09852628350b04a5718a140c8cb00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-win_arm64.whl

Download URL mgrs-1.5.4-cp314-cp314t-win_arm64.whl
Size 57.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
2c24ea9e62d2c4568bb53cb15c09f2e64baa508069ddbe9431ac5e3f56a6f6d9
BLAKE2b-256 checksum
How to use checksums
870d9503b3dcde9de04656be214d11d730840146516de056e5eea68b29de89f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-win_amd64.whl

Download URL mgrs-1.5.4-cp314-cp314t-win_amd64.whl
Size 60.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ef4509eef16174506909ed5d38ae699ad19e79048136ad38299ab81ce7a9caf5
BLAKE2b-256 checksum
How to use checksums
5ea4a694e7258b6d28e11eb3182cdcf275879e5fa36e2280a46cd0e2640b446a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-win32.whl

Download URL mgrs-1.5.4-cp314-cp314t-win32.whl
Size 58.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
5264e13eb64bfc4673fb02605f14b7489c19f7add7c66bd4360f70dec0bdff17
BLAKE2b-256 checksum
How to use checksums
0222c64004c788b2e2c3475d25903b93ac0b5155eee3ad9cf54404e811a7c633
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d3c4481277f707223b6b70966c8ce75d2d17584cfc6c78572cc637c0f79fd984
BLAKE2b-256 checksum
How to use checksums
10269fe446409ada0c47a05eb28422dd47cd6cdc3a98a1ebf3bc86f40f68881f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
076ff2a607d21f72d38480b2e90aa6729463f6f259a689349faf9065ceffa9a8
BLAKE2b-256 checksum
How to use checksums
b933804abe4ca63b5172bbe8dcd2c12c439fcc76f7ebb36479f4599b74f03201
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bb65a8b3a20d70d1f8b3b414d9899a379554dff69bfc0de7893fba4b779d6386
BLAKE2b-256 checksum
How to use checksums
04d6161481861fe4631b0ffd2042ff9c5d73562a16553f4d05c02c324056f308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e7becdd5fc87a2f1b091a8c7950ecff5b5da09cd417c27ed176b56438a53a840
BLAKE2b-256 checksum
How to use checksums
a28614f36feeb55de8636a2f68c1fe2be54079a6467acc38222b42e9189e4a72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp314-cp314t-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ac5230e4cac3413463bed15ed658ca8de9920bab6980887575021ed8650140c3
BLAKE2b-256 checksum
How to use checksums
93fadf5420e7ca8267476a9dd2e4adf1f09d2220166c80b393d1f89f5af470db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314t-macosx_10_15_x86_64.whl
Size 58.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
93be5b139f921aaf2c2f37913a5de1c12b3b3f3a36c9d8f2afb90d3f51f48655
BLAKE2b-256 checksum
How to use checksums
dbcfff77ef9434e000cfc53c683adf26cb4093f2b8f5858f360f9ba3bc339b02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-win_arm64.whl

Download URL mgrs-1.5.4-cp314-cp314-win_arm64.whl
Size 57.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
88a9ef905558b9b8793596cb3c0ad56ba36143031800ab7733e790ebe311e417
BLAKE2b-256 checksum
How to use checksums
6da7d0af4b1263dea6293444beab112facc7d75148ce77489f328a154c979b2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-win_amd64.whl

Download URL mgrs-1.5.4-cp314-cp314-win_amd64.whl
Size 60.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e14de6e25c0cdfa25c8e4fa50c3ebbc3c928ac9662af4c06a310ec2c9727b486
BLAKE2b-256 checksum
How to use checksums
371b3bf36eea83aa200d8fb4791d1586b51afe4822a0aeb9d79788e965819feb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-win32.whl

Download URL mgrs-1.5.4-cp314-cp314-win32.whl
Size 58.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
48b9b9a3fd699a2bf75cd022e5ca378c6c491ed3310763f0fe544a9b04b3118a
BLAKE2b-256 checksum
How to use checksums
640fe3ec83e6a4d7829ac5b839b656a01fb925020b2479d5d6293aae20f9c954
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3376bcd1a7fd3b417b3669b97bc69cf92fd6fbe868574e122348bfe2c310279e
BLAKE2b-256 checksum
How to use checksums
635f74c18191fdd9ea7b0b1020561d3cc187ed569e31930747d01efe6592c7a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp314-cp314-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0d33c83bb321ad45640bede860b13fc4df52dd32f04ba011800aedf48a239c25
BLAKE2b-256 checksum
How to use checksums
8fc36c3144c7f7978d7a8aa72c1cdd0838627d186c502a3614d29b20f473746d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a5746ca68f426e4d25846a8ba04163ef013723f9dcf1920e92614a3e08897abf
BLAKE2b-256 checksum
How to use checksums
2812d7badc4d71a3b9a06d599f443bc0023b83f5662ccfce97493a5879704ead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.8 kB
Tags CPython 3.14 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a2d18a7ea60746eb8f4e58be42ad297410a09183cc2bb004d3de2cf03e6f59bd
BLAKE2b-256 checksum
How to use checksums
8bbcaf081a84581a28c8615bca141967531603f14351e67a75bc13cfcd5d1fef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp314-cp314-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b7120dc4a509a5bd8f7f8ecbf18f11906e5c9129ec8829d92f21976723e24687
BLAKE2b-256 checksum
How to use checksums
d668579ac9617e345ac4bc20c2a7e60905046f7dafb734920b9a55492427ca94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp314-cp314-macosx_10_15_x86_64.whl

Download URL mgrs-1.5.4-cp314-cp314-macosx_10_15_x86_64.whl
Size 58.3 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
b9ef2900a8aff032dfff24b6304ef81396fca844c826ce81cb4aa2ff704e9b79
BLAKE2b-256 checksum
How to use checksums
c3cb1c40573f27d7c6c928e442d0a27f50cd93a25cb73a082ed359eec06e80b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-win_arm64.whl

Download URL mgrs-1.5.4-cp313-cp313-win_arm64.whl
Size 56.6 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
0c9706bc655797f80ef4d258d636341403f49b4477372694e37bd7b750cb3a0c
BLAKE2b-256 checksum
How to use checksums
03306808c2fbf0ab0a2e44d15c962b192d7f11265e929d19d36d99a304000644
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-win_amd64.whl

Download URL mgrs-1.5.4-cp313-cp313-win_amd64.whl
Size 60.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
716b19c16ed13a25bfd2b326308d97a704d516b33499558119ae04a76b35813b
BLAKE2b-256 checksum
How to use checksums
d2049b4fe3b98fa345bd563c67497e0ef41d1dc05f1b9735cecc1d17c3312a8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-win32.whl

Download URL mgrs-1.5.4-cp313-cp313-win32.whl
Size 58.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
5f33feefef844ecad512cfa93c7c9e09728cfeb142dcc0b0c289e3204e11b1df
BLAKE2b-256 checksum
How to use checksums
437ada3aa9d6a58e712b616439da573b998949f3da287d0aaa173dd03a4104b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ceb021a9dc38d65d43737864630a62f25616ee83a134ec78983eb942782611ed
BLAKE2b-256 checksum
How to use checksums
258a648f94e3d422fcae8c65e69583c7c9586e737d15630526265ac25d00e714
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8a037d7017f92085e657c54886c0eb58e2af26f99773fc949599fba49fa83128
BLAKE2b-256 checksum
How to use checksums
548fc6a22e353adc25d17b9c7b8c1ba72c0fc165b0e55b2839b31b0a54184f10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d8a879e8ea24a38ecf2772efb01d6d2dc470eaf09fcc112cde51919bf8674567
BLAKE2b-256 checksum
How to use checksums
17160baf35122017d784d8b4abd4bbf3973277c13abb52a7feeff10512e41d3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.8 kB
Tags CPython 3.13 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b5f09ae768d5dd19d4431d476e35ea4f19563bec044970b338007f456bb4bee6
BLAKE2b-256 checksum
How to use checksums
144532a1d0b1ab9754e7c674d12a5421d06a089926e4c3dd22e7acc347165d25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp313-cp313-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ad46928534d7b8aa34810ec646a141033f7fb5c4082102776c3ea7687d286af8
BLAKE2b-256 checksum
How to use checksums
3fb6ff26f5279131baa7eae1000307726afde1ec14607ecb4326cc3ddaa8dc06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp313-cp313-macosx_10_13_x86_64.whl

Download URL mgrs-1.5.4-cp313-cp313-macosx_10_13_x86_64.whl
Size 58.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
eae9ddda477073863d110349b810f96ecb7ba8d51941f94c8592fd42e3727f75
BLAKE2b-256 checksum
How to use checksums
b47bc675c3455ce0d759a9fb7daca78fe3afe0f8fd86e8e97c5dacd53bf097e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-win_arm64.whl

Download URL mgrs-1.5.4-cp312-cp312-win_arm64.whl
Size 56.6 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
60a58b83e7aed196e0ce4c5ff5a1db3a3bd0a1f9b06d9909928c6dccc8118094
BLAKE2b-256 checksum
How to use checksums
892bb31af559eab2d040f0ac1d7716ea8f8152ce89dae50bd98e2efe0cb414b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-win_amd64.whl

Download URL mgrs-1.5.4-cp312-cp312-win_amd64.whl
Size 60.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
893ef8462bf68fde227427d51a0984bb24a498305e174850cd1e021d44110b12
BLAKE2b-256 checksum
How to use checksums
afa3595f4f545c5991baeeeca45409523b58ae3dd8819c14fdba55dffd75abfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-win32.whl

Download URL mgrs-1.5.4-cp312-cp312-win32.whl
Size 58.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
6c1c2b482de09b4b0492a8e76c23ba0b7ed691341f805748ea643bd1363d912a
BLAKE2b-256 checksum
How to use checksums
f337a5b94632455c03c24f6c1b9db6baddc36a4db7953cf0988138f4bdc910d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2326d1dbcb8d627c1dee9c8732a94f7927cdd815ab3ade2fc1a1848f89bb6d72
BLAKE2b-256 checksum
How to use checksums
d9711cfbf4669c3599c8f8da598583eb91d5c55cd1cdb304dab207c53b2e9f97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0dde60f7490f452ef65453f011e6c44c9ddfdbbb95e6db68c677fdcb99b00b9f
BLAKE2b-256 checksum
How to use checksums
6f49aa6cdc0337eeacc720eb6b81a1a0cd76dcfd6cd69cf79be6f84d07ceb669
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
24bb114dabd453a7536dcdc2b041f0cab581355a2daf4cac1db1cbce6bf1d584
BLAKE2b-256 checksum
How to use checksums
5fcd05ddcd8d519a957898595144197bd719ddfeb6854ed569daa16553bbf2d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.8 kB
Tags CPython 3.12 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9b0d9882cf87bbd2ed3b31906fab87107e81f3b27aa78de204aed0c34c6059a4
BLAKE2b-256 checksum
How to use checksums
81efac17ff9d720c15a1b683021735ac7d1b5c816a2ae9daf7856561d280c66a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp312-cp312-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ed818bfaeccfc1b2672fdbeb5c0921125d02e76792504deb37eff980aa0a5b6f
BLAKE2b-256 checksum
How to use checksums
d6128896050e4a63a1c263ce1d1f17d4c2e23d20743cc1999034ae3ee6e85a88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp312-cp312-macosx_10_13_x86_64.whl

Download URL mgrs-1.5.4-cp312-cp312-macosx_10_13_x86_64.whl
Size 58.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b5c335c5b51016b5cee09cf3def7e265da707dbd2ad17527409ea95e6981cacc
BLAKE2b-256 checksum
How to use checksums
e7fc17679ba80ec7d57345ec5d15852f2e7b306fd687d9e467a37bb4bb847026
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-win_arm64.whl

Download URL mgrs-1.5.4-cp311-cp311-win_arm64.whl
Size 56.6 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
38f7f015805aa0c77f1bfdfdf98583d048bc4d12c71d5cea586dd6f38b641b61
BLAKE2b-256 checksum
How to use checksums
a0ef7e52e4c7b9a87a7d7f1fafa668b93ceeb943e4ebf565ed12d905670b9bd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-win_amd64.whl

Download URL mgrs-1.5.4-cp311-cp311-win_amd64.whl
Size 60.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
71de610e84f2d998c5216e414d4cc14722eafa177968d9bc72be00d9d87f188f
BLAKE2b-256 checksum
How to use checksums
0b569ec7aea85ac4ae67a4ab66b4388d26b3f81ff6f825ef75a0b451b8f9b918
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-win32.whl

Download URL mgrs-1.5.4-cp311-cp311-win32.whl
Size 58.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
5573ed7dc29c3d947f43aa25dc3026b61f9df9292877bcd31b9b5633ba343593
BLAKE2b-256 checksum
How to use checksums
1d8535c2ce4e93fcf3cca6ee4b566cd8cf5214f91110b6f1d6cd14a274f3f5ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f253b5174e38df771b58fadc5b7eec512de06db102705262ec3157c7eeb3ca4
BLAKE2b-256 checksum
How to use checksums
3e49943de6f73dc8e1daedf326a8968d1cf40abd1c852da768a995e0a8e77379
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c6b88ff93308f6e5c4543ede2aa9eb570ecae2d2ef6d6215bbe545b24223c85e
BLAKE2b-256 checksum
How to use checksums
a8e051977648f032aab940381491bff40e382b61cecce484e02753560b2d451f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0fe4810e4eb9a907eb60ea70320823577760651ebb5595b39ba06f27a2ec636b
BLAKE2b-256 checksum
How to use checksums
fedd6532d81b4507c408bd6e1fa679cb72a4f2733324e27d30cf0598c05ec331
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.7 kB
Tags CPython 3.11 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b770c4dae4eba1de633f25e2c90c164ce7b72ba9f19d585c087bd57201e904e6
BLAKE2b-256 checksum
How to use checksums
572b597d2a3cf2b377121af5bfdca81e1beff6dbaf0cd7f81acc13b5aff859ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp311-cp311-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aaf9aae1cf2d61d3f10874f82f9dc45b0b0408cbb97d77284724038fc118499b
BLAKE2b-256 checksum
How to use checksums
e220912bc6862cda5e0a8799fc9fdfaa73f416d32f60880b729efca00bfb8f0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp311-cp311-macosx_10_9_x86_64.whl

Download URL mgrs-1.5.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 58.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7663f1bfd845715d9a6cb943050d949a6eb3dbef003a1dff7e7b2e3df3196459
BLAKE2b-256 checksum
How to use checksums
f5230738261d4e9788e82019ac1c7ba67fbf65f598d4d56d9bd799f8f610e4bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-win_arm64.whl

Download URL mgrs-1.5.4-cp310-cp310-win_arm64.whl
Size 56.6 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
5459b238892a2eff3b62438e24d03eff65e59cdafe3b84e7858cd59633c1f13a
BLAKE2b-256 checksum
How to use checksums
d09cc264da3cf38f3616a90f23eb935377bd88d686f3ec5c1e830f828c40e24b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-win_amd64.whl

Download URL mgrs-1.5.4-cp310-cp310-win_amd64.whl
Size 60.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7dda508a9c19fb28668de28f80f9c5e9031501dcee7e3344ba267847e352c31b
BLAKE2b-256 checksum
How to use checksums
7931ecc23e73d0757470b30998cc2a7f4bf7c842db447487d5debbf4cebc6589
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-win32.whl

Download URL mgrs-1.5.4-cp310-cp310-win32.whl
Size 58.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
2a4dd38bb17f4a469fcaa911c645f9bca53099d799b578a184ac91f6464f59a9
BLAKE2b-256 checksum
How to use checksums
35e3749badba61e8d04603768c4951d58827a7f80c9458ad22f7fc97fda7e437
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
28d16ef86aba649fce679a519edc6d55bb116104faee27b46bc5d255c9e1493b
BLAKE2b-256 checksum
How to use checksums
c34adfb4e37fe32913107d971b311279cc4cf0758d0ecebbaf6d9ed9366896ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3122ae45380f8ef315f4cf91fbb7b668913194e9899bd89df5cc7c30669ca3eb
BLAKE2b-256 checksum
How to use checksums
1996155ce6dc23f3f0ad3f5604d933eed90bdfb5067ba52c863cf934586a517b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
af71f36a26efb6622ecbd32ae6bc4b56dc76aa90dc02218f7178314a4b1c49ed
BLAKE2b-256 checksum
How to use checksums
32260ffa66ee6f3ae007384703a564a41663c05194151f87980bf062dc916735
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.7 kB
Tags CPython 3.10 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5626f204abcdee5ac3b93c2841251c06e2a04e1e3294c26d59cd9d272188decf
BLAKE2b-256 checksum
How to use checksums
83c4cc4b094613620ec79e332fc268c6a5f03fa03bd20ed33c744b328c29bd8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp310-cp310-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1d0463c68b7394855028ee336b2062b26ead03463dc170b28c7c0776254dbbc2
BLAKE2b-256 checksum
How to use checksums
303573fbc96d79ada961469caecf39bd91af43746726f59a2626fa2c27eca08d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl

Download URL mgrs-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl
Size 58.2 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3f891afd1cff7a07789f6f939f36d4c00e0cbb66f824a3e3e253e93052f62770
BLAKE2b-256 checksum
How to use checksums
6bbba5eebb8b7e0c531ba6a8ab480ed488e75010f5fa2b9f8119c742af1a627c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-win_arm64.whl

Download URL mgrs-1.5.4-cp39-cp39-win_arm64.whl
Size 56.5 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
c3f7162b55d4dd58fbe38b315592dc6a527ff5d311c7000416bfbce09cea0380
BLAKE2b-256 checksum
How to use checksums
7bc5dea4b5207cd385e66ec1c96052a9a386b1069273b217f65284b2e98e5b15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-win_amd64.whl

Download URL mgrs-1.5.4-cp39-cp39-win_amd64.whl
Size 60.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
babcea3b260ac047face9fc99992c2ca1a682c15e04ea2ac6e30ac9aee8dc75d
BLAKE2b-256 checksum
How to use checksums
798efcd42941660785cd711fa3ba6b388d928be03599d9e1b3d13733fa40fc83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-win32.whl

Download URL mgrs-1.5.4-cp39-cp39-win32.whl
Size 58.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
513d99d7c03a4a91a620b5206f6708df406fd08d1ab8f068183acda993a23c28
BLAKE2b-256 checksum
How to use checksums
9f6bb5974403959db1cf505c12c0a96897b1477093b29c3e0248d961a4bdbaa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL mgrs-1.5.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 87.7 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1da8f3b64aeac8c4bc6b93485188d665754484c9c7fc062d720b8ba2e938eb3e
BLAKE2b-256 checksum
How to use checksums
c4cf2d9af858597bddccfc7ee080a215050f4d45a409976eba6ffac0dfc79bf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL mgrs-1.5.4-cp39-cp39-musllinux_1_2_aarch64.whl
Size 86.5 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ae335243cc86dd941085be1de5e93942e362a949dc1a66693fccca82176fb0fb
BLAKE2b-256 checksum
How to use checksums
88d25ae979632d743d6bb29760c1a1bdb07ef78d6906bc6f1906986702f7a1ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL mgrs-1.5.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 88.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5379d5b3864c1da201afea138d230bf809268429dbd4a473df87755f1b949c72
BLAKE2b-256 checksum
How to use checksums
30c3e7a4bae73aedd7e40b730f20799968fe000d384aac62f176b79b169a4eed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl

Download URL mgrs-1.5.4-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Size 88.7 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7da09cc32ac84cec924bdfcc89687588d0ba01e8a7cd8d02d0b7ff55c1206da2
BLAKE2b-256 checksum
How to use checksums
54057289fb26cd5bf6a7810a4550de75992ee148c6c951cbce978b0f9176f335
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-macosx_11_0_arm64.whl

Download URL mgrs-1.5.4-cp39-cp39-macosx_11_0_arm64.whl
Size 57.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
69a62b56705dbf5383678f409bbd9a0f12cd9003904b4c05b478656511164849
BLAKE2b-256 checksum
How to use checksums
7b3fc05577051e3985daa3c894f761d54e527a86dd7b26a71ee490377d548693
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release files / mgrs-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl

Download URL mgrs-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 58.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
10e3657d3625a26ac54c798b47430a124dcab1bf0628655ae9de3e90e9fc2e48
BLAKE2b-256 checksum
How to use checksums
6bdef5c0ef39626a0dffcc340f0d3028800a465dde07daf6dbca928ea5c93386
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 3, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.5.4 This release

64 release files

1.5.3

64 release files

1.4.6

56 release files

1.4.3

42 release files

1.4.2

10 release files

1.3.9

10 release files

1.3.7

10 release files

1.3.6

7 release files

1.3.5

5 release files

1.3.4

4 release files

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.1

9 release files

1.0

8 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