mgrs


Namemgrs JSON
Version 1.5.0 PyPI version JSON
download
home_pageNone
SummaryMGRS coordinate conversion for Python
upload_time2024-07-07 12:13:05
maintainerNone
docs_urlNone
authorHoward Butler
requires_python>=3.9
licenseThe MIT License (MIT) Copyright (c) 2016 Howard Butler <howard@hobu.co> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords gis coordinate conversion
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. _home:

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.

.. _`GeoTrans`: http://earth-info.nga.mil/GandG/geotrans/
.. _`ctypes`: http://docs.python.org/library/ctypes.html



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

* required positional argument for wheel.425tags.get_platform()
  https://github.com/hobu/mgrs/pull/24

1.3.4

* Truncate, don't round results https://github.com/hobu/mgrs/pull/15
* Apply license

1.3.3

* SOABI support #10 https://github.com/hobu/mgrs/pull/10
* Clean up some compilation warnings
* Travis builds https://travis-ci.org/hobu/mgrs

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.



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mgrs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Howard Butler <howard@hobu.co>",
    "keywords": "gis, coordinate, conversion",
    "author": "Howard Butler",
    "author_email": "howard@hobu.co",
    "download_url": "https://files.pythonhosted.org/packages/ab/16/6d6f90f43d6ca1b5560c763f60bf5142ce54024f14164d404c9311cb1137/mgrs-1.5.0.tar.gz",
    "platform": null,
    "description": ".. _home:\n\nmgrs: Converting to and from MGRS and Decimal Degrees\n------------------------------------------------------------------------------\n\nGeoTrans_ provides C code for converting to and from MGRS, but well, it's\nC code :).  This is a simple ctypes_ wrapper around two of the MGRS-related\nfunctions in GeoTrans_.\n\nThis library has an internal copy of some of the files from GeoTrans_ 2.4.2.\n\n.. _`GeoTrans`: http://earth-info.nga.mil/GandG/geotrans/\n.. _`ctypes`: http://docs.python.org/library/ctypes.html\n\n\n\nChangeLog\n------------------------------------------------------------------------------\n\n1.4.3\n\n* Wheels\n* black, flake8, and isort linters\n\n1.4.2\n\n* GitHub Action builders needed to be changed to push release\n\n1.4.1\n\n* Fix install requirements #34\n\n1.4.0\n\n* Alias and deprecate RTreeError #33\n\n1.3.9\n\n* MGRS now requires packaging library #31\n* Fix wheel imports of shared libs\n\n1.3.8\n\n* UTF-8 encoding for all strings.\n* Fix #29 implicit tuple on return of UTMToMGRS\n\n1.3.7\n\n* automated building of osx, linux and win64 wheels\n* Migrate from TravisCI => GitHub Actions\n* Warnings cleanup\n* flake8 validation\n\n1.3.6\n\n* required positional argument for wheel.425tags.get_platform()\n  https://github.com/hobu/mgrs/pull/24\n\n1.3.4\n\n* Truncate, don't round results https://github.com/hobu/mgrs/pull/15\n* Apply license\n\n1.3.3\n\n* SOABI support #10 https://github.com/hobu/mgrs/pull/10\n* Clean up some compilation warnings\n* Travis builds https://travis-ci.org/hobu/mgrs\n\n1.3.2\n\n* Better Windows support\n* Bug fix for 3 digit longitudes\n\n1.3.1\n\n* Python 3.x support\n* Allow user to override precision in UTMToMGRS\n\n\nUsage\n------------------------------------------------------------------------------\n\nIn a nutshell::\n\n    >>> import mgrs\n\n    >>> latitude = 42.0\n    >>> longitude = -93.0\n\n    >>> m = mgrs.MGRS()\n    >>> c = m.toMGRS(latitude, longitude)\n    >>> c\n    '15TWG0000049776'\n\n    >>> d = m.toLatLon(c)\n    >>> d\n    (41.999997975127997, -93.000000000000014)\n\n    >>> y = '321942.29N'\n    >>> yd = m.dmstodd(y)\n    32.328414\n\n    >>> d, m, s = m.ddtodms(32.328414)\n    >>> d, m, s\n    (32.0, 19.0, 42.290400)\n\nYou can also control the precision of the MGRS grid with the MGRSPrecision\narguments in .toMGRS().  Other than that, there isn't too much to it.\n\n\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT) Copyright (c) 2016 Howard Butler <howard@hobu.co>  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "MGRS coordinate conversion for Python",
    "version": "1.5.0",
    "project_urls": {
        "changelog": "https://github.com/hobuinc/mgrs/commits/main/",
        "repository": "https://github.com/hobuinc/mgrs/"
    },
    "split_keywords": [
        "gis",
        " coordinate",
        " conversion"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3881549d72d039a57be0a14fe556f6cf670251a703a00aca9f83b64e4910086d",
                "md5": "57ed11a509e89123d7a28f5d223f9a39",
                "sha256": "785e50655360fc14de732591d53479144c2b980bb1f1d8e3130969e7bda28ff2"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "57ed11a509e89123d7a28f5d223f9a39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 56901,
            "upload_time": "2024-07-07T12:12:15",
            "upload_time_iso_8601": "2024-07-07T12:12:15.344675Z",
            "url": "https://files.pythonhosted.org/packages/38/81/549d72d039a57be0a14fe556f6cf670251a703a00aca9f83b64e4910086d/mgrs-1.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2862a62d73338b74c3e3d5e921d10136c5b1f8476ea613bc5369db8035194b12",
                "md5": "9e700c7777d9f721648a88375db7dd06",
                "sha256": "bfa656b865224552c738486629a117f76e20ab0e309d87fa8c94a4f96b8bf555"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9e700c7777d9f721648a88375db7dd06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 83294,
            "upload_time": "2024-07-07T12:12:16",
            "upload_time_iso_8601": "2024-07-07T12:12:16.826243Z",
            "url": "https://files.pythonhosted.org/packages/28/62/a62d73338b74c3e3d5e921d10136c5b1f8476ea613bc5369db8035194b12/mgrs-1.5.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dd53dbc98e74b1b5892907b3be7dd8c76b6ddd141db53d158b91f824b409238",
                "md5": "8e93456f8e5a5cc37e391bb072c4443e",
                "sha256": "06c02a5d5bf8b0e58bedd9f216bc3cc63b49db5b302f3982a5f8f80d2d4c60de"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e93456f8e5a5cc37e391bb072c4443e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 88581,
            "upload_time": "2024-07-07T12:12:18",
            "upload_time_iso_8601": "2024-07-07T12:12:18.383576Z",
            "url": "https://files.pythonhosted.org/packages/1d/d5/3dbc98e74b1b5892907b3be7dd8c76b6ddd141db53d158b91f824b409238/mgrs-1.5.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca0420c3d6a423bb6bce71cf3b254af5abb601db3076e676d4216bffdd4a443a",
                "md5": "a44b4070f6dd027c27713a94c05013e7",
                "sha256": "137296c2df8fdfdfcaa6e21d81a27da5451846bca7460862072908f804639431"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a44b4070f6dd027c27713a94c05013e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 84847,
            "upload_time": "2024-07-07T12:12:19",
            "upload_time_iso_8601": "2024-07-07T12:12:19.650321Z",
            "url": "https://files.pythonhosted.org/packages/ca/04/20c3d6a423bb6bce71cf3b254af5abb601db3076e676d4216bffdd4a443a/mgrs-1.5.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ca2542124c526e03cf37e2c7ee88efbdc13771eed9cc0b5f7e984a4416823bd",
                "md5": "c3a32344aefc30443ddd6b43b2dfef9d",
                "sha256": "42a47c3feed7cac9dcdf5fcc6066a77a878c30083e75acbfb5566cf446441d99"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3a32344aefc30443ddd6b43b2dfef9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 86744,
            "upload_time": "2024-07-07T12:12:21",
            "upload_time_iso_8601": "2024-07-07T12:12:21.079807Z",
            "url": "https://files.pythonhosted.org/packages/4c/a2/542124c526e03cf37e2c7ee88efbdc13771eed9cc0b5f7e984a4416823bd/mgrs-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bec2d85fbd95921acbf25a7cbb94d4cda24b895e52ec92c790d95baaba820e8",
                "md5": "b7997e9769aa791115e0158c05aa3d1e",
                "sha256": "4f60fb1bad0923215a3156d9b833dcd5eeeb64e3309513159f0ab2d7829c1068"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b7997e9769aa791115e0158c05aa3d1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 57922,
            "upload_time": "2024-07-07T12:12:22",
            "upload_time_iso_8601": "2024-07-07T12:12:22.264042Z",
            "url": "https://files.pythonhosted.org/packages/7b/ec/2d85fbd95921acbf25a7cbb94d4cda24b895e52ec92c790d95baaba820e8/mgrs-1.5.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a62d91cf1995aa2cd14061a2be1b1569b430913381a685da544590f95b713f4",
                "md5": "0525b309a5c4aceca06579faabf475e0",
                "sha256": "f78c7e5014e5cae6c5513221a299379306561de432ff7373c0aee2a4ed90b560"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0525b309a5c4aceca06579faabf475e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 60028,
            "upload_time": "2024-07-07T12:12:23",
            "upload_time_iso_8601": "2024-07-07T12:12:23.425109Z",
            "url": "https://files.pythonhosted.org/packages/3a/62/d91cf1995aa2cd14061a2be1b1569b430913381a685da544590f95b713f4/mgrs-1.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3645384af3dafdbcc181b84eb93a28d55a291b4c1cc3e2b2f112923037f7ad68",
                "md5": "0490160962ec27fdc8e45d94a5ce95e9",
                "sha256": "8f29e88b7fb458c2d574dd1f771347e6ec5bd548ca8a5aeab1b1a39cb93b25f6"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0490160962ec27fdc8e45d94a5ce95e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 56900,
            "upload_time": "2024-07-07T12:12:24",
            "upload_time_iso_8601": "2024-07-07T12:12:24.573749Z",
            "url": "https://files.pythonhosted.org/packages/36/45/384af3dafdbcc181b84eb93a28d55a291b4c1cc3e2b2f112923037f7ad68/mgrs-1.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca415c554b4eae8f13ae341cb3380c3b2b47b56213934a0f418bb879c21c7bcc",
                "md5": "a279a1d524128ce9d8470898b9b11740",
                "sha256": "73e175cd4795bc08309a33499294c85cdae2f2e86e7fbe2b79ea5fc7e6663e87"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a279a1d524128ce9d8470898b9b11740",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 83297,
            "upload_time": "2024-07-07T12:12:25",
            "upload_time_iso_8601": "2024-07-07T12:12:25.918458Z",
            "url": "https://files.pythonhosted.org/packages/ca/41/5c554b4eae8f13ae341cb3380c3b2b47b56213934a0f418bb879c21c7bcc/mgrs-1.5.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "200ab9418799e067893035171dea1ab97a623a856fc72505fa98d9594895b013",
                "md5": "a115b339842a975bad005477d23819c1",
                "sha256": "805455e5475681074125381381035434929fec27abdeeb2ff633e5feb41ce1f1"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a115b339842a975bad005477d23819c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 88580,
            "upload_time": "2024-07-07T12:12:27",
            "upload_time_iso_8601": "2024-07-07T12:12:27.406456Z",
            "url": "https://files.pythonhosted.org/packages/20/0a/b9418799e067893035171dea1ab97a623a856fc72505fa98d9594895b013/mgrs-1.5.0-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37865a922b43be0732bb0e510200f194d72af0de7f8904707b4fbe9863eeb902",
                "md5": "29170440dc9f60c3b05b76eb9a1147b2",
                "sha256": "9364a70e067ad1c346fe02094007ba9077d2b53672922251de243268e6cc54a4"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "29170440dc9f60c3b05b76eb9a1147b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 84852,
            "upload_time": "2024-07-07T12:12:28",
            "upload_time_iso_8601": "2024-07-07T12:12:28.603018Z",
            "url": "https://files.pythonhosted.org/packages/37/86/5a922b43be0732bb0e510200f194d72af0de7f8904707b4fbe9863eeb902/mgrs-1.5.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59ac669bf04b4288412ba58cdcd66e083d9278c3f876e54e236e59734446e085",
                "md5": "1088f40120ea8deaba8fd06663c64248",
                "sha256": "9416e237680877fa79e71fa7ed98e3de412320dcc17590d241bfff21d4db952f"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1088f40120ea8deaba8fd06663c64248",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 86748,
            "upload_time": "2024-07-07T12:12:29",
            "upload_time_iso_8601": "2024-07-07T12:12:29.804139Z",
            "url": "https://files.pythonhosted.org/packages/59/ac/669bf04b4288412ba58cdcd66e083d9278c3f876e54e236e59734446e085/mgrs-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "959b1c5839ad344243748d91ac64d981b018db3fd13e8b2f44f159fd431c24d9",
                "md5": "e8b51ac9498e075cb0f28dbe466b7b69",
                "sha256": "b0a9a2ef778e9477647f154d40b5c2a0f723061a12a349ddb30cb9c20f153108"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "e8b51ac9498e075cb0f28dbe466b7b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 57924,
            "upload_time": "2024-07-07T12:12:31",
            "upload_time_iso_8601": "2024-07-07T12:12:31.216780Z",
            "url": "https://files.pythonhosted.org/packages/95/9b/1c5839ad344243748d91ac64d981b018db3fd13e8b2f44f159fd431c24d9/mgrs-1.5.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5d328d979d725ecc58d748135e3226ca18ecdefd699d4d8c1d6440bb67daba5",
                "md5": "55bc4300cefd5c651b637af6e732a8fb",
                "sha256": "7904c2c454cf5afbe2fa11e898d3881625e817c66fe24dfdf098a9153cda4023"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55bc4300cefd5c651b637af6e732a8fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 60030,
            "upload_time": "2024-07-07T12:12:32",
            "upload_time_iso_8601": "2024-07-07T12:12:32.281618Z",
            "url": "https://files.pythonhosted.org/packages/d5/d3/28d979d725ecc58d748135e3226ca18ecdefd699d4d8c1d6440bb67daba5/mgrs-1.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ebd6a0d2692c38708b559cb9fe4f3ee59f2a0c5f5a9f392f4133e27add12acd",
                "md5": "1655203729020ae4997edb6acebe5b0e",
                "sha256": "3171ae9581238bbb5467e4dc85dfb0299ae17085e3a196640615e20ddb6a24c8"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1655203729020ae4997edb6acebe5b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 56903,
            "upload_time": "2024-07-07T12:12:33",
            "upload_time_iso_8601": "2024-07-07T12:12:33.565151Z",
            "url": "https://files.pythonhosted.org/packages/9e/bd/6a0d2692c38708b559cb9fe4f3ee59f2a0c5f5a9f392f4133e27add12acd/mgrs-1.5.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2e8fe7e363459174bfa68069bd523ad160b6f63f24b7b86dfb776ad7e027200",
                "md5": "4b2a4742f32c0f806244b434ccf565cd",
                "sha256": "89d67dbdc337bc4ca5f212bc5cdf3be754862a2310c552fc13cc4cce264bfbff"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4b2a4742f32c0f806244b434ccf565cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 83325,
            "upload_time": "2024-07-07T12:12:34",
            "upload_time_iso_8601": "2024-07-07T12:12:34.813171Z",
            "url": "https://files.pythonhosted.org/packages/d2/e8/fe7e363459174bfa68069bd523ad160b6f63f24b7b86dfb776ad7e027200/mgrs-1.5.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5008b46cc09916d1b1753d0144b3135e70d0d5aa0bf29acf92ce3b0ba0e0b61d",
                "md5": "fdccd1a292a8b73a1e07e3f02e757ccd",
                "sha256": "40c0193c57fccdc4031f69fe65803767e3d25e99e28199fdd893ea939e301be6"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdccd1a292a8b73a1e07e3f02e757ccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 88596,
            "upload_time": "2024-07-07T12:12:36",
            "upload_time_iso_8601": "2024-07-07T12:12:36.066410Z",
            "url": "https://files.pythonhosted.org/packages/50/08/b46cc09916d1b1753d0144b3135e70d0d5aa0bf29acf92ce3b0ba0e0b61d/mgrs-1.5.0-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e909dcf0ec8b0e97ab0ecb7f9ab019d13e02bc2d9b10ea306ccd390576820980",
                "md5": "bd746c2a2a24b8f189a5f8bd70ee8a92",
                "sha256": "b6fea82cc17069ab866e93abbf37913a0044a66e0d21255f06862b2feaa248fd"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bd746c2a2a24b8f189a5f8bd70ee8a92",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 84852,
            "upload_time": "2024-07-07T12:12:37",
            "upload_time_iso_8601": "2024-07-07T12:12:37.184094Z",
            "url": "https://files.pythonhosted.org/packages/e9/09/dcf0ec8b0e97ab0ecb7f9ab019d13e02bc2d9b10ea306ccd390576820980/mgrs-1.5.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ff83002f71ca4d37a68dc363538ffe32d76bd77416405af6faff0ae5b0dc3cd",
                "md5": "5e6f8119abb6983484eb5e5754394069",
                "sha256": "36021894edff1c53f8775b299b4b29e20fe79365a2ace8d42f90c49f5c2c9e81"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e6f8119abb6983484eb5e5754394069",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 86754,
            "upload_time": "2024-07-07T12:12:38",
            "upload_time_iso_8601": "2024-07-07T12:12:38.397976Z",
            "url": "https://files.pythonhosted.org/packages/8f/f8/3002f71ca4d37a68dc363538ffe32d76bd77416405af6faff0ae5b0dc3cd/mgrs-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a0bc1c3163c395c2e92f4556b2cf5e541fa8e9ddfcf10a88f99bfeee30f6429",
                "md5": "ad5e185ac6094eb94a70280f801b1022",
                "sha256": "749b019e5f3cc40a4a642e8937bdb0c85c30ceb9c5ca11dc98e40b6854c780f1"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ad5e185ac6094eb94a70280f801b1022",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 57921,
            "upload_time": "2024-07-07T12:12:39",
            "upload_time_iso_8601": "2024-07-07T12:12:39.761500Z",
            "url": "https://files.pythonhosted.org/packages/3a/0b/c1c3163c395c2e92f4556b2cf5e541fa8e9ddfcf10a88f99bfeee30f6429/mgrs-1.5.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "908991bd50c37b059c226e46d300247b015d29d50c8ddff2cf46f127cce2fbc5",
                "md5": "3426d46d5c1d1c21dbf0b9138347a302",
                "sha256": "134343e425204c3503f7d71a79ade41ef09baa9537a5eac54ed9124df0b567f1"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3426d46d5c1d1c21dbf0b9138347a302",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 60029,
            "upload_time": "2024-07-07T12:12:40",
            "upload_time_iso_8601": "2024-07-07T12:12:40.861162Z",
            "url": "https://files.pythonhosted.org/packages/90/89/91bd50c37b059c226e46d300247b015d29d50c8ddff2cf46f127cce2fbc5/mgrs-1.5.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fec164d07c7a373be89bdffa13b30ee464f2c94cce6d5ca6d4acf3ae65e7506b",
                "md5": "8593b4dacefee18f4f8fa0b1329df886",
                "sha256": "fd9d00933464ab69316df4266c19564e95f9681334ebcd71d45ad915c6bd70de"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8593b4dacefee18f4f8fa0b1329df886",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 56903,
            "upload_time": "2024-07-07T12:12:42",
            "upload_time_iso_8601": "2024-07-07T12:12:42.381086Z",
            "url": "https://files.pythonhosted.org/packages/fe/c1/64d07c7a373be89bdffa13b30ee464f2c94cce6d5ca6d4acf3ae65e7506b/mgrs-1.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f86c0f029b9248e3939d403c21a95fbb25fd7fe376d872c981821c392183dbb4",
                "md5": "feab415a93568e5a94d58e23f631d588",
                "sha256": "c923d4efc6e8003338727b4f35956879e7511fdb481634bd5a311dc5b4bc31c4"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "feab415a93568e5a94d58e23f631d588",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 83293,
            "upload_time": "2024-07-07T12:12:43",
            "upload_time_iso_8601": "2024-07-07T12:12:43.740783Z",
            "url": "https://files.pythonhosted.org/packages/f8/6c/0f029b9248e3939d403c21a95fbb25fd7fe376d872c981821c392183dbb4/mgrs-1.5.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "509d520110a8de3071043b069cb171d9a8801455f09659736b17409b06c1994b",
                "md5": "4ed5fa649843c4e71a840ef6c28a956b",
                "sha256": "a4664a4e14f2edc7273108e547aa74048adde6f3264b350be503b7936d35e9f2"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ed5fa649843c4e71a840ef6c28a956b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 88577,
            "upload_time": "2024-07-07T12:12:44",
            "upload_time_iso_8601": "2024-07-07T12:12:44.841647Z",
            "url": "https://files.pythonhosted.org/packages/50/9d/520110a8de3071043b069cb171d9a8801455f09659736b17409b06c1994b/mgrs-1.5.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d357a672f2afbf0eacbc0b09504091e68e9dcd390a50a5ec9957a61b38dae3b",
                "md5": "f13d350e1a3eb1627aa02c0461c655e8",
                "sha256": "bf7c82229b95a9be034bf21a946db51c1764354763a308fdd425c5d57f9a2c8a"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f13d350e1a3eb1627aa02c0461c655e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 84844,
            "upload_time": "2024-07-07T12:12:46",
            "upload_time_iso_8601": "2024-07-07T12:12:46.100302Z",
            "url": "https://files.pythonhosted.org/packages/2d/35/7a672f2afbf0eacbc0b09504091e68e9dcd390a50a5ec9957a61b38dae3b/mgrs-1.5.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f0d14e7b6220287621d93027c390dd40da6727201d980f511105c91e2ea3e58",
                "md5": "37edcd61768230ffc4091141f0d2b748",
                "sha256": "dea082e783b2c3dfbf933b44f15ac9d6937343c83345ef57bd83bd3d28a3093b"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37edcd61768230ffc4091141f0d2b748",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 86740,
            "upload_time": "2024-07-07T12:12:47",
            "upload_time_iso_8601": "2024-07-07T12:12:47.229077Z",
            "url": "https://files.pythonhosted.org/packages/7f/0d/14e7b6220287621d93027c390dd40da6727201d980f511105c91e2ea3e58/mgrs-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c4390c52f8912e06805c5483ff6c54b96d906035cedfe8c356aa71b5f292c1",
                "md5": "ebbafafa32ea1ddde54ccd8205fed59c",
                "sha256": "375946a1c233ef63a2a35caeed3128c37c3820f803341063931193f2bf77d40a"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ebbafafa32ea1ddde54ccd8205fed59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 57919,
            "upload_time": "2024-07-07T12:12:48",
            "upload_time_iso_8601": "2024-07-07T12:12:48.434996Z",
            "url": "https://files.pythonhosted.org/packages/04/c4/390c52f8912e06805c5483ff6c54b96d906035cedfe8c356aa71b5f292c1/mgrs-1.5.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22341c31b8beea27851383d24d48d19fd1944d223d9cbbb2f2f125f05f015fcc",
                "md5": "7337ea62c0e2c2b7d43c9666b66c2424",
                "sha256": "22d075cf819e56add1be240774399da29ab51d1b2a636290b0e980890ae3922e"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7337ea62c0e2c2b7d43c9666b66c2424",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 60026,
            "upload_time": "2024-07-07T12:12:50",
            "upload_time_iso_8601": "2024-07-07T12:12:50.083955Z",
            "url": "https://files.pythonhosted.org/packages/22/34/1c31b8beea27851383d24d48d19fd1944d223d9cbbb2f2f125f05f015fcc/mgrs-1.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7189c12d2dd3cddc98978c7763e7b276e776e1da42cf4c2877144e93ee920d",
                "md5": "7d2a9f1a346d2f1c23d71aae7be3a6dd",
                "sha256": "d40c9f5d95fc14796444dba16a6dbb74ec61d22d9689d2cdc003b33a589bd355"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7d2a9f1a346d2f1c23d71aae7be3a6dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 56518,
            "upload_time": "2024-07-07T12:12:52",
            "upload_time_iso_8601": "2024-07-07T12:12:52.017303Z",
            "url": "https://files.pythonhosted.org/packages/4d/71/89c12d2dd3cddc98978c7763e7b276e776e1da42cf4c2877144e93ee920d/mgrs-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cf26eb7d883aa4886df975068873fc8d2828c3efcf379e396346c582de0d71f",
                "md5": "867dc8f57b64197be10eda588b2aa022",
                "sha256": "3be147a68dd0b45f0afb8b8425515028e8576a3c9089ba38f2f3f669f7e10a0d"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "867dc8f57b64197be10eda588b2aa022",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 61680,
            "upload_time": "2024-07-07T12:12:54",
            "upload_time_iso_8601": "2024-07-07T12:12:54.456507Z",
            "url": "https://files.pythonhosted.org/packages/9c/f2/6eb7d883aa4886df975068873fc8d2828c3efcf379e396346c582de0d71f/mgrs-1.5.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab5767de35d289365e8fbd66fb55cfd3910e8e1ab8fa27dc327b61cddb516a55",
                "md5": "ed7b88ab304df53aa744f318b9b8f1b4",
                "sha256": "ed6a47f008ddbc24743de3cd507a7cd6a31c582552c89c807854e6c2fa55e0a8"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed7b88ab304df53aa744f318b9b8f1b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 61326,
            "upload_time": "2024-07-07T12:12:55",
            "upload_time_iso_8601": "2024-07-07T12:12:55.727634Z",
            "url": "https://files.pythonhosted.org/packages/ab/57/67de35d289365e8fbd66fb55cfd3910e8e1ab8fa27dc327b61cddb516a55/mgrs-1.5.0-pp310-pypy310_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9106ceccc1633bf4734b3fbb8048c2eeb1bb395dda7e6544868782604f0aff70",
                "md5": "277cd4a5bb6b16c8af1ebda472ba8311",
                "sha256": "0aceeed9b1f321e081c790c3263b383688bd0a7ad4e2e79312d3438af1209bbd"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "277cd4a5bb6b16c8af1ebda472ba8311",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 60067,
            "upload_time": "2024-07-07T12:12:57",
            "upload_time_iso_8601": "2024-07-07T12:12:57.379758Z",
            "url": "https://files.pythonhosted.org/packages/91/06/ceccc1633bf4734b3fbb8048c2eeb1bb395dda7e6544868782604f0aff70/mgrs-1.5.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ba7f4b7903d273917bf359bd02feef27142a15f996b2e59fa61b117530e83e2",
                "md5": "156bd5c931ff44fddb4866cbb10a4c50",
                "sha256": "d71fe869340f5aafabbdff525683794658017f664c6edd1677920ca44f58583b"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "156bd5c931ff44fddb4866cbb10a4c50",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 56513,
            "upload_time": "2024-07-07T12:12:59",
            "upload_time_iso_8601": "2024-07-07T12:12:59.382627Z",
            "url": "https://files.pythonhosted.org/packages/5b/a7/f4b7903d273917bf359bd02feef27142a15f996b2e59fa61b117530e83e2/mgrs-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb84f979eb74f8fbe4a2195556e101330cb6cdcd649c139920df6bea9e74462a",
                "md5": "f19aa4fc9cddd6c60249e0588b56cb5a",
                "sha256": "1f969797a86c3bbd9348305611ec2c6c30ea98af5fdcab0d39a1989cd595f6ab"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f19aa4fc9cddd6c60249e0588b56cb5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 61673,
            "upload_time": "2024-07-07T12:13:00",
            "upload_time_iso_8601": "2024-07-07T12:13:00.949085Z",
            "url": "https://files.pythonhosted.org/packages/eb/84/f979eb74f8fbe4a2195556e101330cb6cdcd649c139920df6bea9e74462a/mgrs-1.5.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a38834339f069719e4c260ff6b856d44b6c84ce8959d623cc8d91a383a0c01e",
                "md5": "009806bc8061d02abc6e238b8c4bd874",
                "sha256": "4026069d39ffc6953cc970b4992c25e18983e1a24db512a644518a757c5a87b4"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp39-pypy39_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "009806bc8061d02abc6e238b8c4bd874",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 61322,
            "upload_time": "2024-07-07T12:13:02",
            "upload_time_iso_8601": "2024-07-07T12:13:02.189082Z",
            "url": "https://files.pythonhosted.org/packages/2a/38/834339f069719e4c260ff6b856d44b6c84ce8959d623cc8d91a383a0c01e/mgrs-1.5.0-pp39-pypy39_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74bd5ac6ab22e244f0ea85224719a34e9969ec06feed666526831b4df4825383",
                "md5": "8a252fed96db14758ee8a7caac569005",
                "sha256": "ca1f34f5f40e94bea8d30fb0f97d50ecc02fa86761f07e2402d257f71e9e65cc"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a252fed96db14758ee8a7caac569005",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 60059,
            "upload_time": "2024-07-07T12:13:03",
            "upload_time_iso_8601": "2024-07-07T12:13:03.617292Z",
            "url": "https://files.pythonhosted.org/packages/74/bd/5ac6ab22e244f0ea85224719a34e9969ec06feed666526831b4df4825383/mgrs-1.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab166d6f90f43d6ca1b5560c763f60bf5142ce54024f14164d404c9311cb1137",
                "md5": "88226c656e2c1ea951586bd6b5bbace1",
                "sha256": "bff4f7e806ed29d46f8a31a01e6e0e6629e1eca425f745d39af639260bbc89c6"
            },
            "downloads": -1,
            "filename": "mgrs-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "88226c656e2c1ea951586bd6b5bbace1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 31958,
            "upload_time": "2024-07-07T12:13:05",
            "upload_time_iso_8601": "2024-07-07T12:13:05.222553Z",
            "url": "https://files.pythonhosted.org/packages/ab/16/6d6f90f43d6ca1b5560c763f60bf5142ce54024f14164d404c9311cb1137/mgrs-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-07 12:13:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hobuinc",
    "github_project": "mgrs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "mgrs"
}
        
Elapsed time: 0.57811s