mgrs


Namemgrs JSON
Version 1.4.6 PyPI version JSON
download
home_pagehttps://github.com/hobu/mgrs
SummaryMGRS coordinate conversion for Python
upload_time2023-12-17 15:49:46
maintainerHoward Butler
docs_urlNone
authorHoward Butler
requires_python
licenseMIT
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": "https://github.com/hobu/mgrs",
    "name": "mgrs",
    "maintainer": "Howard Butler",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "howard@hobu.co",
    "keywords": "gis coordinate conversion",
    "author": "Howard Butler",
    "author_email": "howard@hobu.co",
    "download_url": "https://files.pythonhosted.org/packages/22/a1/3b307ed515cf66ab5487b9d5c20ac600da05c8ea753d949f8c6559027409/mgrs-1.4.6.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": "MIT",
    "summary": "MGRS coordinate conversion for Python",
    "version": "1.4.6",
    "project_urls": {
        "Homepage": "https://github.com/hobu/mgrs"
    },
    "split_keywords": [
        "gis",
        "coordinate",
        "conversion"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bada94e378c6003f943aad65b7a8a63d8fa37710b8d00c7b0ff9ffcc06e5f3f9",
                "md5": "36a9532746efb4c42e13b09b42e15eb2",
                "sha256": "5c723a59d08e184018ab673ffc009bb8725d7e147d80dc686c122cf6779c9f29"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36a9532746efb4c42e13b09b42e15eb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 21873,
            "upload_time": "2023-12-17T15:48:37",
            "upload_time_iso_8601": "2023-12-17T15:48:37.713925Z",
            "url": "https://files.pythonhosted.org/packages/ba/da/94e378c6003f943aad65b7a8a63d8fa37710b8d00c7b0ff9ffcc06e5f3f9/mgrs-1.4.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10788d682164da883209d2e94ab1c6fc320b56ef12ed13d967d380d353e91b4c",
                "md5": "d84ff68035f43225fff95c46a3fe6a3b",
                "sha256": "23bc65fe870f905e16c36b26874c9d12c529662d12ffad128b06da595f2f9dac"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d84ff68035f43225fff95c46a3fe6a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 21367,
            "upload_time": "2023-12-17T15:48:39",
            "upload_time_iso_8601": "2023-12-17T15:48:39.480829Z",
            "url": "https://files.pythonhosted.org/packages/10/78/8d682164da883209d2e94ab1c6fc320b56ef12ed13d967d380d353e91b4c/mgrs-1.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e15fa7ae1542e0c5e818c3044832276376a6f37fd768433b58a456bbe2f47785",
                "md5": "a4da20d05a023ce25b9756dd92b1b022",
                "sha256": "f1179dc9cc585de73e719492d0bdda9bc340a5361aea8c75dbbfa2785928dc9a"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a4da20d05a023ce25b9756dd92b1b022",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 47617,
            "upload_time": "2023-12-17T15:48:40",
            "upload_time_iso_8601": "2023-12-17T15:48:40.410470Z",
            "url": "https://files.pythonhosted.org/packages/e1/5f/a7ae1542e0c5e818c3044832276376a6f37fd768433b58a456bbe2f47785/mgrs-1.4.6-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": "5b4a59e89cf34c4a6777397f0ae11716256794d3e1bea652fd1fc655e31cb7ff",
                "md5": "dc35506fef5dc9d9c6895681350200c4",
                "sha256": "de12498a6ac06c59ba724223208aff786154c4efc1ea31ce62d6352e9ecf4c9b"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc35506fef5dc9d9c6895681350200c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 52901,
            "upload_time": "2023-12-17T15:48:42",
            "upload_time_iso_8601": "2023-12-17T15:48:42.454997Z",
            "url": "https://files.pythonhosted.org/packages/5b/4a/59e89cf34c4a6777397f0ae11716256794d3e1bea652fd1fc655e31cb7ff/mgrs-1.4.6-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": "a3146cf47eecc1d2d6a913e7c2459f10c0b56c8f6932f37765de08cf172cc605",
                "md5": "afdbab17b8de3b6a22ec6e1b09995753",
                "sha256": "002568c145b0da9330314b17846b5d424131c5ffad5137951d6eb7eadd4d53be"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afdbab17b8de3b6a22ec6e1b09995753",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 50777,
            "upload_time": "2023-12-17T15:48:44",
            "upload_time_iso_8601": "2023-12-17T15:48:44.070444Z",
            "url": "https://files.pythonhosted.org/packages/a3/14/6cf47eecc1d2d6a913e7c2459f10c0b56c8f6932f37765de08cf172cc605/mgrs-1.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "325935d1362d351c2d499315f02cee789fcb3acdff5083ad785dad90af4e1559",
                "md5": "e328d1dc6ae46aba00ccda2dfcd3ce85",
                "sha256": "d16cbbf940027f8a7318f9a7afb801887b0915f61353ca6f8f085911caa7b56e"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e328d1dc6ae46aba00ccda2dfcd3ce85",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 50284,
            "upload_time": "2023-12-17T15:48:45",
            "upload_time_iso_8601": "2023-12-17T15:48:45.659655Z",
            "url": "https://files.pythonhosted.org/packages/32/59/35d1362d351c2d499315f02cee789fcb3acdff5083ad785dad90af4e1559/mgrs-1.4.6-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee2e147af410ae132c019ad55ef27d438f0452d52c3ecccff1ed177cc8002355",
                "md5": "434e12b269ec1ecfaea5a7887c560e07",
                "sha256": "b1f42cf21e3f343ac8c1e3e7349f17843622ce4d63381a9a96d6813f6f59da84"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "434e12b269ec1ecfaea5a7887c560e07",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 47049,
            "upload_time": "2023-12-17T15:48:47",
            "upload_time_iso_8601": "2023-12-17T15:48:47.438195Z",
            "url": "https://files.pythonhosted.org/packages/ee/2e/147af410ae132c019ad55ef27d438f0452d52c3ecccff1ed177cc8002355/mgrs-1.4.6-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d1566b4293208f1c0cd11ed3e8010c118dc82ae38ae7d298072020a19d4efe7",
                "md5": "3829d7e97b94891f5c21c8a56e4ec84e",
                "sha256": "876f6e4de1dd744591a56417bfa1afb77935d7d38fc27cb36c3387f70eed6c31"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3829d7e97b94891f5c21c8a56e4ec84e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 52165,
            "upload_time": "2023-12-17T15:48:49",
            "upload_time_iso_8601": "2023-12-17T15:48:49.030272Z",
            "url": "https://files.pythonhosted.org/packages/7d/15/66b4293208f1c0cd11ed3e8010c118dc82ae38ae7d298072020a19d4efe7/mgrs-1.4.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abeeb1d025a645c61887541f526a52d82c54fa3cad04404b39133dffa7fc277e",
                "md5": "99c80fb51b07b1fb311ebb11c2e7f7c4",
                "sha256": "1be211a198faf6a12993926e1f292166ab40601c07b70827b0d90ae55b4fa4fe"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "99c80fb51b07b1fb311ebb11c2e7f7c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 24184,
            "upload_time": "2023-12-17T15:48:50",
            "upload_time_iso_8601": "2023-12-17T15:48:50.101675Z",
            "url": "https://files.pythonhosted.org/packages/ab/ee/b1d025a645c61887541f526a52d82c54fa3cad04404b39133dffa7fc277e/mgrs-1.4.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bedaec4dd6c7c277e6f8ef2f200f6838330b674171e834e14d45585ead0a2ca2",
                "md5": "a8c742c9e160eacfdf97e6caf17612ed",
                "sha256": "3f2369bb545a598b1e75261cf79823f0daf0d6842c7df036d389bb832a2bcc83"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8c742c9e160eacfdf97e6caf17612ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 21873,
            "upload_time": "2023-12-17T15:48:51",
            "upload_time_iso_8601": "2023-12-17T15:48:51.091780Z",
            "url": "https://files.pythonhosted.org/packages/be/da/ec4dd6c7c277e6f8ef2f200f6838330b674171e834e14d45585ead0a2ca2/mgrs-1.4.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95646b2f560414ae618949133f86bf7ae112918135931aaa519618391c5b01a5",
                "md5": "46ceb535958f009bd508a7f249b49653",
                "sha256": "ebb8aefde8266d15038471d82c1bd91c8fcbe36e6eb5d05560bc475008bbd2b0"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "46ceb535958f009bd508a7f249b49653",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 21367,
            "upload_time": "2023-12-17T15:48:52",
            "upload_time_iso_8601": "2023-12-17T15:48:52.072595Z",
            "url": "https://files.pythonhosted.org/packages/95/64/6b2f560414ae618949133f86bf7ae112918135931aaa519618391c5b01a5/mgrs-1.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e4ef915733511e8dba68eac746e8e98401c3fb5058eb9ab8e7060af6618e0d2",
                "md5": "3b5ec9c85636afecb5fc41e99a511f49",
                "sha256": "01a2336e143345b9f6c8eef08759aa5aefd5c1f12d9775315ed4d91d71d5d04a"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3b5ec9c85636afecb5fc41e99a511f49",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 47616,
            "upload_time": "2023-12-17T15:48:53",
            "upload_time_iso_8601": "2023-12-17T15:48:53.202528Z",
            "url": "https://files.pythonhosted.org/packages/2e/4e/f915733511e8dba68eac746e8e98401c3fb5058eb9ab8e7060af6618e0d2/mgrs-1.4.6-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": "3d11b9efad774310ab7a6a0b98c6ec0334a9b485b4a6ac59242e0336db898208",
                "md5": "550ccecea71e9bb54938bbe650843c4d",
                "sha256": "37f850fde242095c6ecec6f5697320cbec6baa058f1f06ef2045882aa697cdd7"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "550ccecea71e9bb54938bbe650843c4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52902,
            "upload_time": "2023-12-17T15:48:54",
            "upload_time_iso_8601": "2023-12-17T15:48:54.225812Z",
            "url": "https://files.pythonhosted.org/packages/3d/11/b9efad774310ab7a6a0b98c6ec0334a9b485b4a6ac59242e0336db898208/mgrs-1.4.6-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": "91d597ca360976c35161f4f49a0835fe4560a8ed3b0b01114917f2cebf5e0e34",
                "md5": "ffecefd861e01b51a7c17f26d506773a",
                "sha256": "e4fad0cee7e86ff67ecaeed13fb039adbad20dab423c82c3a48814b9512a2b44"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ffecefd861e01b51a7c17f26d506773a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 50778,
            "upload_time": "2023-12-17T15:48:55",
            "upload_time_iso_8601": "2023-12-17T15:48:55.428265Z",
            "url": "https://files.pythonhosted.org/packages/91/d5/97ca360976c35161f4f49a0835fe4560a8ed3b0b01114917f2cebf5e0e34/mgrs-1.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4771d3269b49dd4cd0ca7455ab5a7c3ff26e40d47affd7f8844f3c7af1f41b52",
                "md5": "4680fded0793d091a55e2d1059e8b428",
                "sha256": "339ca001cfbb3c0fa4aae5c63a3505670d1209088e400b40041a84321ef29792"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4680fded0793d091a55e2d1059e8b428",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 50289,
            "upload_time": "2023-12-17T15:48:57",
            "upload_time_iso_8601": "2023-12-17T15:48:57.068338Z",
            "url": "https://files.pythonhosted.org/packages/47/71/d3269b49dd4cd0ca7455ab5a7c3ff26e40d47affd7f8844f3c7af1f41b52/mgrs-1.4.6-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79384a5330f22c45fc8a5d46101ff0b39f95c4cd23429057ec808cadc764a727",
                "md5": "c975ed5174e45f94444392d56050e03d",
                "sha256": "ac7e7cb67bb2d4dc719529b9a5b6383f1ac958d1766036f43a06271b6fb32502"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c975ed5174e45f94444392d56050e03d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 47050,
            "upload_time": "2023-12-17T15:48:58",
            "upload_time_iso_8601": "2023-12-17T15:48:58.692727Z",
            "url": "https://files.pythonhosted.org/packages/79/38/4a5330f22c45fc8a5d46101ff0b39f95c4cd23429057ec808cadc764a727/mgrs-1.4.6-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5819daea24f1dbd70776c7702521a5182b5d7be73d62964feba72a9aec914edf",
                "md5": "d684b74cb88b252ef86db46f9d703008",
                "sha256": "b79bb9b235888afd711c733dfa62d90ae698feff5eda082c9f8938ff50fb2071"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d684b74cb88b252ef86db46f9d703008",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52168,
            "upload_time": "2023-12-17T15:49:00",
            "upload_time_iso_8601": "2023-12-17T15:49:00.246538Z",
            "url": "https://files.pythonhosted.org/packages/58/19/daea24f1dbd70776c7702521a5182b5d7be73d62964feba72a9aec914edf/mgrs-1.4.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d69ed0bb975eaff56767505205eedf1081d73889d1d85aba6378d92a84436b40",
                "md5": "3acd0b807a5e55b02a7b08fcafa5af75",
                "sha256": "40b576b91e8509ba541a6b17cdee570677685d2eab706ce4a8129fd55ed1208c"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3acd0b807a5e55b02a7b08fcafa5af75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 24185,
            "upload_time": "2023-12-17T15:49:01",
            "upload_time_iso_8601": "2023-12-17T15:49:01.826386Z",
            "url": "https://files.pythonhosted.org/packages/d6/9e/d0bb975eaff56767505205eedf1081d73889d1d85aba6378d92a84436b40/mgrs-1.4.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d90e2d7b16ce42b1f108b5c317627bc39191000314d945ed1c21745bbfc7f53b",
                "md5": "45d5092d1b7b41107cea3dcf076dffd5",
                "sha256": "ea0dbea6e32fa5aa3d666046fb2c75e35a853597d27dda0381450863da9d814b"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45d5092d1b7b41107cea3dcf076dffd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 21874,
            "upload_time": "2023-12-17T15:49:02",
            "upload_time_iso_8601": "2023-12-17T15:49:02.826985Z",
            "url": "https://files.pythonhosted.org/packages/d9/0e/2d7b16ce42b1f108b5c317627bc39191000314d945ed1c21745bbfc7f53b/mgrs-1.4.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e248d38ca0abc7e95a42c5cfe44f065dd42fa27749ee65fdba9ce78f8ab48a35",
                "md5": "65082af71d4b52437e96d8a9b01bac82",
                "sha256": "cb3d3ed7b62b09b5b374f7734bcc29e98727df7d439bb9d5840c694ed40f0cb1"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65082af71d4b52437e96d8a9b01bac82",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 21370,
            "upload_time": "2023-12-17T15:49:04",
            "upload_time_iso_8601": "2023-12-17T15:49:04.291485Z",
            "url": "https://files.pythonhosted.org/packages/e2/48/d38ca0abc7e95a42c5cfe44f065dd42fa27749ee65fdba9ce78f8ab48a35/mgrs-1.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "023011f1e6fdfd579c756edeeade269b18af8a4b8610763c1c04bfcfa4751eca",
                "md5": "b6b4ab2d96741b067519ae2e36acd7d7",
                "sha256": "d5cac1f0241f95e87a1bccf64875132775d35f34a42ec7e77edc051210a45c6e"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b6b4ab2d96741b067519ae2e36acd7d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 47647,
            "upload_time": "2023-12-17T15:49:05",
            "upload_time_iso_8601": "2023-12-17T15:49:05.205841Z",
            "url": "https://files.pythonhosted.org/packages/02/30/11f1e6fdfd579c756edeeade269b18af8a4b8610763c1c04bfcfa4751eca/mgrs-1.4.6-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": "bf788257801cc24102a4368c311397e3418e4e4b5014c79e18b82ad1065a901e",
                "md5": "d086dfb6ccfa29341b1819c3896aa19b",
                "sha256": "069629f7af6838bdac0496d6c99d1eb8babfdd65ebcb4a8f9fa93d66225e4567"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d086dfb6ccfa29341b1819c3896aa19b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52920,
            "upload_time": "2023-12-17T15:49:06",
            "upload_time_iso_8601": "2023-12-17T15:49:06.272893Z",
            "url": "https://files.pythonhosted.org/packages/bf/78/8257801cc24102a4368c311397e3418e4e4b5014c79e18b82ad1065a901e/mgrs-1.4.6-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": "a7f915738dd7e93ad80d63e5561c54b6f4ce6bd02fce4da8c5e4b704c64b9b83",
                "md5": "8a626ecb410771425cba85e301e897ad",
                "sha256": "e4a06aeff6195d2a2b9b127d7731829728189927a1e5464bed3f69946d4f7ab9"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a626ecb410771425cba85e301e897ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 50781,
            "upload_time": "2023-12-17T15:49:07",
            "upload_time_iso_8601": "2023-12-17T15:49:07.467797Z",
            "url": "https://files.pythonhosted.org/packages/a7/f9/15738dd7e93ad80d63e5561c54b6f4ce6bd02fce4da8c5e4b704c64b9b83/mgrs-1.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f94e97f7fb657464515e15535ae34d7dfce6ab7b3f13d6755de2f5049815c239",
                "md5": "b43b21dd80ffd00fe248c7f1ece2d384",
                "sha256": "a2f2c928436be3a7e3409dae9be29f0d74abdbc43556b250a74155cf93d750d0"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b43b21dd80ffd00fe248c7f1ece2d384",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 50297,
            "upload_time": "2023-12-17T15:49:09",
            "upload_time_iso_8601": "2023-12-17T15:49:09.056904Z",
            "url": "https://files.pythonhosted.org/packages/f9/4e/97f7fb657464515e15535ae34d7dfce6ab7b3f13d6755de2f5049815c239/mgrs-1.4.6-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2af8d56e26b14f7c36079370df61a39c5ac280a77b00d96dc6c0bec6536c4ed",
                "md5": "578593724e81600ab9c216ed983eedbe",
                "sha256": "08b587ba3e54f91bde1579ba78e35068815abc026ccde80b26ba90c4755ffa73"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "578593724e81600ab9c216ed983eedbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 47068,
            "upload_time": "2023-12-17T15:49:10",
            "upload_time_iso_8601": "2023-12-17T15:49:10.053004Z",
            "url": "https://files.pythonhosted.org/packages/d2/af/8d56e26b14f7c36079370df61a39c5ac280a77b00d96dc6c0bec6536c4ed/mgrs-1.4.6-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15ba0e76f502e38bc53bb28d384580ca358e772a98962a99414a97eb6c9eef2f",
                "md5": "a3b94a24b065e1650f1c334a7a00baaa",
                "sha256": "671ae65f68bc3ddb899cc41bcbcbb1cf126ab474ea6a71087f6bdcc350bc223c"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3b94a24b065e1650f1c334a7a00baaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52178,
            "upload_time": "2023-12-17T15:49:11",
            "upload_time_iso_8601": "2023-12-17T15:49:11.753327Z",
            "url": "https://files.pythonhosted.org/packages/15/ba/0e76f502e38bc53bb28d384580ca358e772a98962a99414a97eb6c9eef2f/mgrs-1.4.6-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f2b1d015687c384639f2922bba0fe1bfd32a9cb5b2d11bae50a200e8cceaa27",
                "md5": "5cc53e4ad05b8e88625358856956240c",
                "sha256": "34fe8e66e2c85ee638605d0b21a73413f9c78af14c3345aef3d3fadba6975ad9"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5cc53e4ad05b8e88625358856956240c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 24186,
            "upload_time": "2023-12-17T15:49:12",
            "upload_time_iso_8601": "2023-12-17T15:49:12.781791Z",
            "url": "https://files.pythonhosted.org/packages/7f/2b/1d015687c384639f2922bba0fe1bfd32a9cb5b2d11bae50a200e8cceaa27/mgrs-1.4.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6157b211ac7e62c9df8f1ae54d80c9d0eda9551a943ecd485df483045a942eac",
                "md5": "537df414f2953ba734b21d5b799422c7",
                "sha256": "536b4f5d244eafcbcb1f77a2a8f02b04a4fbe1a2157986c7e28a24ca75d2711b"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "537df414f2953ba734b21d5b799422c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 21873,
            "upload_time": "2023-12-17T15:49:14",
            "upload_time_iso_8601": "2023-12-17T15:49:14.609470Z",
            "url": "https://files.pythonhosted.org/packages/61/57/b211ac7e62c9df8f1ae54d80c9d0eda9551a943ecd485df483045a942eac/mgrs-1.4.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3ff71f5e64e4183c38dd74a1493a3ff7a60b2c7eaa18303f8b96de288e57050",
                "md5": "422179a784decf8af21ff235f3660bd5",
                "sha256": "7300384809cc9d5cdbdb7a0b853f2ad8511a1d4f38539ac361c885fdee26d3c8"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "422179a784decf8af21ff235f3660bd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47621,
            "upload_time": "2023-12-17T15:49:16",
            "upload_time_iso_8601": "2023-12-17T15:49:16.203131Z",
            "url": "https://files.pythonhosted.org/packages/e3/ff/71f5e64e4183c38dd74a1493a3ff7a60b2c7eaa18303f8b96de288e57050/mgrs-1.4.6-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa9f4457f3563451c6a4b15b8231224e90e6f67ed25e1238307921677030c449",
                "md5": "ce23d00d307f9483731a7ba72ab5e4f4",
                "sha256": "7711d254422851ed595c264477411ee232780c34c3523ba2d8a7796682879855"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce23d00d307f9483731a7ba72ab5e4f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 52910,
            "upload_time": "2023-12-17T15:49:17",
            "upload_time_iso_8601": "2023-12-17T15:49:17.163950Z",
            "url": "https://files.pythonhosted.org/packages/fa/9f/4457f3563451c6a4b15b8231224e90e6f67ed25e1238307921677030c449/mgrs-1.4.6-cp36-cp36m-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": "f08cf2b6f8974aa78c1e49047729b6d8ad1070110f0b291b61b6b741b92c93f1",
                "md5": "20583e2e408d7c8033e019f42480d72c",
                "sha256": "bbfc150e751fb4cc000f3da55f2a50c591395a3548e9420e33e34c29d244e41c"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "20583e2e408d7c8033e019f42480d72c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47093,
            "upload_time": "2023-12-17T15:49:18",
            "upload_time_iso_8601": "2023-12-17T15:49:18.201110Z",
            "url": "https://files.pythonhosted.org/packages/f0/8c/f2b6f8974aa78c1e49047729b6d8ad1070110f0b291b61b6b741b92c93f1/mgrs-1.4.6-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68a55a2e6ee49ffc94f0ba310b72fba39f0d6c5a464738d418bb2abd0bfd9262",
                "md5": "24231ab94c223862f2cef428519ad9e9",
                "sha256": "38861057e5f72970f31400ee54b29dc5128444aa3edd2581a1e7285ebee60a94"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24231ab94c223862f2cef428519ad9e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 52128,
            "upload_time": "2023-12-17T15:49:19",
            "upload_time_iso_8601": "2023-12-17T15:49:19.387588Z",
            "url": "https://files.pythonhosted.org/packages/68/a5/5a2e6ee49ffc94f0ba310b72fba39f0d6c5a464738d418bb2abd0bfd9262/mgrs-1.4.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d642bd9321807b8f9f432f5fa73f7e1613b5b6144a3dcbd75066cf4cf0297a4",
                "md5": "b7e8c1b6efd4ae65f839a68e6433095e",
                "sha256": "67f52ffde8d269d843297f470ef47d18e368b623e123f58705f30349daea2f65"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b7e8c1b6efd4ae65f839a68e6433095e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 24815,
            "upload_time": "2023-12-17T15:49:21",
            "upload_time_iso_8601": "2023-12-17T15:49:21.069889Z",
            "url": "https://files.pythonhosted.org/packages/0d/64/2bd9321807b8f9f432f5fa73f7e1613b5b6144a3dcbd75066cf4cf0297a4/mgrs-1.4.6-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a80e3334b397e229201dbef130e1f7d63b6c35801e804154272958d8c9e76ef",
                "md5": "a6fc03f33190bea785deda82a5f9e3ad",
                "sha256": "fad4685a06e6b1cec680373c02d0966fb2d11efbbda2b42a916f7ad6134d1662"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6fc03f33190bea785deda82a5f9e3ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 21874,
            "upload_time": "2023-12-17T15:49:22",
            "upload_time_iso_8601": "2023-12-17T15:49:22.617967Z",
            "url": "https://files.pythonhosted.org/packages/6a/80/e3334b397e229201dbef130e1f7d63b6c35801e804154272958d8c9e76ef/mgrs-1.4.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b0c9eb45b5c852a435b4fa3c31a922e2290f89c35da53a25c9cb8fc1193cd74",
                "md5": "38482aab50ea53e8373bd7c1f06ecaeb",
                "sha256": "841bdcaa1017069d38b72b4ed8f398d9c2a77dd4715c1ba90921109554e9aac7"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "38482aab50ea53e8373bd7c1f06ecaeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47618,
            "upload_time": "2023-12-17T15:49:23",
            "upload_time_iso_8601": "2023-12-17T15:49:23.640261Z",
            "url": "https://files.pythonhosted.org/packages/3b/0c/9eb45b5c852a435b4fa3c31a922e2290f89c35da53a25c9cb8fc1193cd74/mgrs-1.4.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f3bd99a92e732d2c868a24d2db64751f0f269b0bf1b9d2d2c848d5bcb2578e0",
                "md5": "11da9a035495212a40ead0c8c2eb3ef9",
                "sha256": "a4c3a702b44f84afc23ca5cb52f2a5530b859dd224119f55a7417e502bbc180c"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11da9a035495212a40ead0c8c2eb3ef9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 52902,
            "upload_time": "2023-12-17T15:49:24",
            "upload_time_iso_8601": "2023-12-17T15:49:24.671334Z",
            "url": "https://files.pythonhosted.org/packages/6f/3b/d99a92e732d2c868a24d2db64751f0f269b0bf1b9d2d2c848d5bcb2578e0/mgrs-1.4.6-cp37-cp37m-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": "4a70083ef61e524eccf105e6be17910c6f5d096f9575df3b5918fe46c7852bf2",
                "md5": "43df2de2ebe0ceb7ea67f42995a2aa9c",
                "sha256": "532b4e4de91b04876a0a769e775dd1a8c5f4c93e0dc7647eea8e29c76d7e5477"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "43df2de2ebe0ceb7ea67f42995a2aa9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47048,
            "upload_time": "2023-12-17T15:49:26",
            "upload_time_iso_8601": "2023-12-17T15:49:26.279506Z",
            "url": "https://files.pythonhosted.org/packages/4a/70/083ef61e524eccf105e6be17910c6f5d096f9575df3b5918fe46c7852bf2/mgrs-1.4.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8800bc47b72fdc054797693356cb83cea19ce635a5482c7e09349a24acad81fe",
                "md5": "2fd20c648760070a070c20923ac5d2df",
                "sha256": "6ec13977408e9dd4af4aefd53853a5b697f52e62f65ea7213ee9d8947bda561b"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fd20c648760070a070c20923ac5d2df",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 52167,
            "upload_time": "2023-12-17T15:49:27",
            "upload_time_iso_8601": "2023-12-17T15:49:27.248701Z",
            "url": "https://files.pythonhosted.org/packages/88/00/bc47b72fdc054797693356cb83cea19ce635a5482c7e09349a24acad81fe/mgrs-1.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50f45fd39dec57a68b0ba786ffb037f4c24c47c0d2bc9bf0615bf2c398c792ee",
                "md5": "45e5b4540bbe901167909231903a14e4",
                "sha256": "afcdea7da43602b78271bb5896db2b5279c6f397e7a8d58a2e03f75de77c66ac"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45e5b4540bbe901167909231903a14e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 24185,
            "upload_time": "2023-12-17T15:49:28",
            "upload_time_iso_8601": "2023-12-17T15:49:28.894641Z",
            "url": "https://files.pythonhosted.org/packages/50/f4/5fd39dec57a68b0ba786ffb037f4c24c47c0d2bc9bf0615bf2c398c792ee/mgrs-1.4.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a68796af6a867ace46b6e7f2a8fd2386acb2520fd4435335736ce097faefe41",
                "md5": "9f1c461a39a0d410ee8eef04a2420486",
                "sha256": "4e593ad33bb63ec6f36480f4eb3b1549d6a58eb6d55c18d1e5f7a46b609c6e70"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f1c461a39a0d410ee8eef04a2420486",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 21872,
            "upload_time": "2023-12-17T15:49:29",
            "upload_time_iso_8601": "2023-12-17T15:49:29.803738Z",
            "url": "https://files.pythonhosted.org/packages/8a/68/796af6a867ace46b6e7f2a8fd2386acb2520fd4435335736ce097faefe41/mgrs-1.4.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f55775889ccf6fc3229b0dcb4439ed87b2388e93dca5071372aff9038ee3233f",
                "md5": "dc58fe494dac33143e2503a382bcc344",
                "sha256": "3ce945f7a9a43022b8ef858143580904455c550ff5094b4486d0569c6f7d74d2"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc58fe494dac33143e2503a382bcc344",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 21365,
            "upload_time": "2023-12-17T15:49:30",
            "upload_time_iso_8601": "2023-12-17T15:49:30.743544Z",
            "url": "https://files.pythonhosted.org/packages/f5/57/75889ccf6fc3229b0dcb4439ed87b2388e93dca5071372aff9038ee3233f/mgrs-1.4.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8deca6789a5168db09f6f6826873f9ac7f639ca4207ff7da1fe3e2f7d5af349a",
                "md5": "c2cd820c99e7fc9c4c532ec19b485fa2",
                "sha256": "b3be07c2edb89b0fb5e234e1aa84f7f3bef219daded3d759ad438e53e8fc4453"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c2cd820c99e7fc9c4c532ec19b485fa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 47614,
            "upload_time": "2023-12-17T15:49:31",
            "upload_time_iso_8601": "2023-12-17T15:49:31.725273Z",
            "url": "https://files.pythonhosted.org/packages/8d/ec/a6789a5168db09f6f6826873f9ac7f639ca4207ff7da1fe3e2f7d5af349a/mgrs-1.4.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9501893e8257d93dcaa23e85a98c62eb1689dd286126467df05086f86bbc6481",
                "md5": "b56f1afe504734105cef89a13c0522cd",
                "sha256": "7b944dbdbfaa312105899ba0e546e6d7364581243129023839c55ba2c0fa63fa"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b56f1afe504734105cef89a13c0522cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52896,
            "upload_time": "2023-12-17T15:49:32",
            "upload_time_iso_8601": "2023-12-17T15:49:32.868946Z",
            "url": "https://files.pythonhosted.org/packages/95/01/893e8257d93dcaa23e85a98c62eb1689dd286126467df05086f86bbc6481/mgrs-1.4.6-cp38-cp38-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": "3a8c70dbc0b80411b1255b09ed82c4bc1f624b3b97fd32457be2e9f9d9eba05c",
                "md5": "0d2528d15af010e6ec2882516c2c436f",
                "sha256": "da2049d664b63df7a379eac99319739c4da83496795d4fc71788dfd387a8b7b9"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0d2528d15af010e6ec2882516c2c436f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 47041,
            "upload_time": "2023-12-17T15:49:33",
            "upload_time_iso_8601": "2023-12-17T15:49:33.855260Z",
            "url": "https://files.pythonhosted.org/packages/3a/8c/70dbc0b80411b1255b09ed82c4bc1f624b3b97fd32457be2e9f9d9eba05c/mgrs-1.4.6-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06e4e523d01d3af3b862b7d81f09adb4d684b1783a735558e1be1cce1617b13b",
                "md5": "e2426c2c3a7f335e49574abaeaa5ef1f",
                "sha256": "5933cdc53efd78f9024741660890485f6b3a17b54a86a27d01822ceaae1a4282"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2426c2c3a7f335e49574abaeaa5ef1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52160,
            "upload_time": "2023-12-17T15:49:34",
            "upload_time_iso_8601": "2023-12-17T15:49:34.912962Z",
            "url": "https://files.pythonhosted.org/packages/06/e4/e523d01d3af3b862b7d81f09adb4d684b1783a735558e1be1cce1617b13b/mgrs-1.4.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5499f81caf5d0ac6f3330cdbf305c52f5cd177823c8b174806663da681abfae0",
                "md5": "4b41a2be766b5743cbafc255082eebd3",
                "sha256": "872cf181d4d206f77f7a91faeeeb439b44a531b04e21bbf859ae530ead2e4c57"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b41a2be766b5743cbafc255082eebd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 24181,
            "upload_time": "2023-12-17T15:49:35",
            "upload_time_iso_8601": "2023-12-17T15:49:35.956053Z",
            "url": "https://files.pythonhosted.org/packages/54/99/f81caf5d0ac6f3330cdbf305c52f5cd177823c8b174806663da681abfae0/mgrs-1.4.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9940e57e7e20d867978d96259a170b0b6820e9e37d515cc7e1232653922267d2",
                "md5": "4ad53996aeae0a31e567a27f800c7dad",
                "sha256": "426ed7880254d1d423b8559ca368117122f79822bb2b4034b5bbb7338362b85d"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ad53996aeae0a31e567a27f800c7dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 21875,
            "upload_time": "2023-12-17T15:49:36",
            "upload_time_iso_8601": "2023-12-17T15:49:36.929086Z",
            "url": "https://files.pythonhosted.org/packages/99/40/e57e7e20d867978d96259a170b0b6820e9e37d515cc7e1232653922267d2/mgrs-1.4.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fe43af356301444cae7e191785ebb876bc11fe0167c5ef5b82faec308766f49",
                "md5": "d266e5d3553830dccebb632607456c10",
                "sha256": "2b04f97b39873916e101e4faec5756b5e813a17b96389dfb752bbd149e4c07cb"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d266e5d3553830dccebb632607456c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 21365,
            "upload_time": "2023-12-17T15:49:37",
            "upload_time_iso_8601": "2023-12-17T15:49:37.857124Z",
            "url": "https://files.pythonhosted.org/packages/5f/e4/3af356301444cae7e191785ebb876bc11fe0167c5ef5b82faec308766f49/mgrs-1.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "382736f4b4edc40a839d70dba0c89a19da29e93d682745a05d2a8ba9e43b6857",
                "md5": "c0bf8704503e5201ff111df495a35351",
                "sha256": "bd4a993642291dc1f39d5125b8d05eefdd242923014cba1c4ffc5ea1940a647d"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c0bf8704503e5201ff111df495a35351",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 47613,
            "upload_time": "2023-12-17T15:49:38",
            "upload_time_iso_8601": "2023-12-17T15:49:38.772206Z",
            "url": "https://files.pythonhosted.org/packages/38/27/36f4b4edc40a839d70dba0c89a19da29e93d682745a05d2a8ba9e43b6857/mgrs-1.4.6-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": "3b61557e6a48fbb948d0f0865ae25c420db5632d1adecd3417e4cfadaad51f6f",
                "md5": "6fa3a54313f3244214513cece7596cac",
                "sha256": "1292e57972a094cc16b0b9c2ada53caa37bfde11b8df8934c4a0b1a5297c2403"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fa3a54313f3244214513cece7596cac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 52896,
            "upload_time": "2023-12-17T15:49:39",
            "upload_time_iso_8601": "2023-12-17T15:49:39.846612Z",
            "url": "https://files.pythonhosted.org/packages/3b/61/557e6a48fbb948d0f0865ae25c420db5632d1adecd3417e4cfadaad51f6f/mgrs-1.4.6-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": "98e210751b91ff9818fd5eede8d55b366e4de43a292f2b7d4e023dac2de1a92c",
                "md5": "61716cb73fb2a33bfd40ac85d26b6194",
                "sha256": "d5a4ddc8aeded32e12d485159d54d8c13dd28a07b21f63af3961cac29d38ae1a"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61716cb73fb2a33bfd40ac85d26b6194",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 50774,
            "upload_time": "2023-12-17T15:49:40",
            "upload_time_iso_8601": "2023-12-17T15:49:40.853262Z",
            "url": "https://files.pythonhosted.org/packages/98/e2/10751b91ff9818fd5eede8d55b366e4de43a292f2b7d4e023dac2de1a92c/mgrs-1.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c6666481cacfe59c6905a6eb690c65ea032af29b5ef752cbf20ea9331ff25a",
                "md5": "927da6e693539bfe2ad1261d16a255ac",
                "sha256": "f74ee6cdef2a3f63116165fbe6d15c5285c95b38f56bff33d8d4f9aa0cef2f83"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "927da6e693539bfe2ad1261d16a255ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 50281,
            "upload_time": "2023-12-17T15:49:41",
            "upload_time_iso_8601": "2023-12-17T15:49:41.908164Z",
            "url": "https://files.pythonhosted.org/packages/59/c6/666481cacfe59c6905a6eb690c65ea032af29b5ef752cbf20ea9331ff25a/mgrs-1.4.6-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9adb0b49bcd452fb563d04f5287092ae37e07b1759b113e78e8229c785af14c3",
                "md5": "6d73ce9e7b11876ac2ed88ee8684a640",
                "sha256": "fe7a573ac0f720e95c4c697357451c10b892469abc177799cae19bcdf802190d"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6d73ce9e7b11876ac2ed88ee8684a640",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 47041,
            "upload_time": "2023-12-17T15:49:42",
            "upload_time_iso_8601": "2023-12-17T15:49:42.960668Z",
            "url": "https://files.pythonhosted.org/packages/9a/db/0b49bcd452fb563d04f5287092ae37e07b1759b113e78e8229c785af14c3/mgrs-1.4.6-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b07064c0ab1aa91573c53442b40e9591e505a557b627594f5790007011ca682d",
                "md5": "0d42867693a9208af31b09c24d6ea8a4",
                "sha256": "82700f1d5e2fa170abf6ecd4e46ae52870cf192ee1d782d8140c5c1d7a78141a"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d42867693a9208af31b09c24d6ea8a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 52160,
            "upload_time": "2023-12-17T15:49:44",
            "upload_time_iso_8601": "2023-12-17T15:49:44.092004Z",
            "url": "https://files.pythonhosted.org/packages/b0/70/64c0ab1aa91573c53442b40e9591e505a557b627594f5790007011ca682d/mgrs-1.4.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2569ca85c7f54004a4f8188bcbbb8c4237346d3b87195f0abfcaface0e68bd26",
                "md5": "859abea69971a225283f3f92a383aeec",
                "sha256": "3317917aca8d0e4dbaf83effb029d12b733aa25d0616d5a4796032fe0a7662ca"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "859abea69971a225283f3f92a383aeec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 24180,
            "upload_time": "2023-12-17T15:49:45",
            "upload_time_iso_8601": "2023-12-17T15:49:45.156162Z",
            "url": "https://files.pythonhosted.org/packages/25/69/ca85c7f54004a4f8188bcbbb8c4237346d3b87195f0abfcaface0e68bd26/mgrs-1.4.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22a13b307ed515cf66ab5487b9d5c20ac600da05c8ea753d949f8c6559027409",
                "md5": "0e7198fc49fa94242276d31e88796a07",
                "sha256": "c9489623eab97a9d38eb2fe563a3e9e813694760ea240d055c49b18ed30a7676"
            },
            "downloads": -1,
            "filename": "mgrs-1.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "0e7198fc49fa94242276d31e88796a07",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 31233,
            "upload_time": "2023-12-17T15:49:46",
            "upload_time_iso_8601": "2023-12-17T15:49:46.304202Z",
            "url": "https://files.pythonhosted.org/packages/22/a1/3b307ed515cf66ab5487b9d5c20ac600da05c8ea753d949f8c6559027409/mgrs-1.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-17 15:49:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hobu",
    "github_project": "mgrs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "mgrs"
}
        
Elapsed time: 0.15833s