maxminddb


Namemaxminddb JSON
Version 2.6.3 PyPI version JSON
download
home_pageNone
SummaryReader for the MaxMind DB format
upload_time2025-01-09 16:12:13
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ========================
MaxMind DB Python Module
========================

Description
-----------

This is a Python module for reading MaxMind DB files. The module includes both
a pure Python reader and an optional C extension.

MaxMind DB is a binary file format that stores data indexed by IP address
subnets (IPv4 or IPv6).

Installation
------------

To install maxminddb, type:

.. code-block:: bash

    $ pip install maxminddb

If you are not able to use pip, you may also use easy_install from the
source directory:

.. code-block:: bash

    $ easy_install .

The installer will attempt to build the C extension. If this fails, the
module will fall-back to the pure Python implementation.

Usage
-----

To use this module, you must first download or create a MaxMind DB file. We
provide `free GeoLite2 databases
<https://dev.maxmind.com/geoip/geolocate-an-ip/databases?lang=en>`_. These
files must be decompressed with ``gunzip``.

After you have obtained a database and imported the module, call
``open_database`` with a path, or file descriptor (in the case of ``MODE_FD``),
to the database as the first argument. Optionally, you may pass a mode as the
second argument. The modes are exported from ``maxminddb``. Valid modes are:

* ``MODE_MMAP_EXT`` - use the C extension with memory map.
* ``MODE_MMAP`` - read from memory map. Pure Python.
* ``MODE_FILE`` - read database as standard file. Pure Python.
* ``MODE_MEMORY`` - load database into memory. Pure Python.
* ``MODE_FD`` - load database into memory from a file descriptor. Pure Python.
* ``MODE_AUTO`` - try ``MODE_MMAP_EXT``, ``MODE_MMAP``, ``MODE_FILE`` in that
  order. Default.

**NOTE**: When using ``MODE_FD``, it is the *caller's* responsibility to be
sure that the file descriptor gets closed properly. The caller may close the
file descriptor immediately after the ``Reader`` object is created.

The ``open_database`` function returns a ``Reader`` object. To look up an IP
address, use the ``get`` method on this object. The method will return the
corresponding values for the IP address from the database (e.g., a dictionary
for GeoIP2/GeoLite2 databases). If the database does not contain a record for
that IP address, the method will return ``None``.

If you wish to also retrieve the prefix length for the record, use the
``get_with_prefix_len`` method. This returns a tuple containing the record
followed by the network prefix length associated with the record.

You may also iterate over the whole database. The ``Reader`` class implements
the ``__iter__`` method that returns an iterator. This iterator yields a
tuple containing the network and the record.

Example
-------

.. code-block:: pycon

    >>> import maxminddb
    >>>
    >>> with maxminddb.open_database('GeoLite2-City.mmdb') as reader:
    >>>
    >>>     reader.get('152.216.7.110')
    {'country': ... }
    >>>
    >>>     reader.get_with_prefix_len('152.216.7.110')
    ({'country': ... }, 24)
    >>>
    >>>     for network, record in reader:
    >>>         ...

Exceptions
----------

The module will return an ``InvalidDatabaseError`` if the database is corrupt
or otherwise invalid. A ``ValueError`` will be thrown if you look up an
invalid IP address or an IPv6 address in an IPv4 database.

Requirements
------------

This code requires Python 3.8+. Older versions are not supported. The C
extension requires CPython.

Versioning
----------

The MaxMind DB Python module uses `Semantic Versioning <https://semver.org/>`_.

Support
-------

Please report all issues with this code using the `GitHub issue tracker
<https://github.com/maxmind/MaxMind-DB-Reader-python/issues>`_

If you are having an issue with a MaxMind service that is not specific to this
API, please contact `MaxMind support <https://www.maxmind.com/en/support>`_ for
assistance.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "maxminddb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Gregory Oschwald <goschwald@maxmind.com>",
    "download_url": "https://files.pythonhosted.org/packages/57/ae/422ec0f3b6a40f23de9477c42fce90126a3994dd51d06b50582973c0088e/maxminddb-2.6.3.tar.gz",
    "platform": null,
    "description": "========================\nMaxMind DB Python Module\n========================\n\nDescription\n-----------\n\nThis is a Python module for reading MaxMind DB files. The module includes both\na pure Python reader and an optional C extension.\n\nMaxMind DB is a binary file format that stores data indexed by IP address\nsubnets (IPv4 or IPv6).\n\nInstallation\n------------\n\nTo install maxminddb, type:\n\n.. code-block:: bash\n\n    $ pip install maxminddb\n\nIf you are not able to use pip, you may also use easy_install from the\nsource directory:\n\n.. code-block:: bash\n\n    $ easy_install .\n\nThe installer will attempt to build the C extension. If this fails, the\nmodule will fall-back to the pure Python implementation.\n\nUsage\n-----\n\nTo use this module, you must first download or create a MaxMind DB file. We\nprovide `free GeoLite2 databases\n<https://dev.maxmind.com/geoip/geolocate-an-ip/databases?lang=en>`_. These\nfiles must be decompressed with ``gunzip``.\n\nAfter you have obtained a database and imported the module, call\n``open_database`` with a path, or file descriptor (in the case of ``MODE_FD``),\nto the database as the first argument. Optionally, you may pass a mode as the\nsecond argument. The modes are exported from ``maxminddb``. Valid modes are:\n\n* ``MODE_MMAP_EXT`` - use the C extension with memory map.\n* ``MODE_MMAP`` - read from memory map. Pure Python.\n* ``MODE_FILE`` - read database as standard file. Pure Python.\n* ``MODE_MEMORY`` - load database into memory. Pure Python.\n* ``MODE_FD`` - load database into memory from a file descriptor. Pure Python.\n* ``MODE_AUTO`` - try ``MODE_MMAP_EXT``, ``MODE_MMAP``, ``MODE_FILE`` in that\n  order. Default.\n\n**NOTE**: When using ``MODE_FD``, it is the *caller's* responsibility to be\nsure that the file descriptor gets closed properly. The caller may close the\nfile descriptor immediately after the ``Reader`` object is created.\n\nThe ``open_database`` function returns a ``Reader`` object. To look up an IP\naddress, use the ``get`` method on this object. The method will return the\ncorresponding values for the IP address from the database (e.g., a dictionary\nfor GeoIP2/GeoLite2 databases). If the database does not contain a record for\nthat IP address, the method will return ``None``.\n\nIf you wish to also retrieve the prefix length for the record, use the\n``get_with_prefix_len`` method. This returns a tuple containing the record\nfollowed by the network prefix length associated with the record.\n\nYou may also iterate over the whole database. The ``Reader`` class implements\nthe ``__iter__`` method that returns an iterator. This iterator yields a\ntuple containing the network and the record.\n\nExample\n-------\n\n.. code-block:: pycon\n\n    >>> import maxminddb\n    >>>\n    >>> with maxminddb.open_database('GeoLite2-City.mmdb') as reader:\n    >>>\n    >>>     reader.get('152.216.7.110')\n    {'country': ... }\n    >>>\n    >>>     reader.get_with_prefix_len('152.216.7.110')\n    ({'country': ... }, 24)\n    >>>\n    >>>     for network, record in reader:\n    >>>         ...\n\nExceptions\n----------\n\nThe module will return an ``InvalidDatabaseError`` if the database is corrupt\nor otherwise invalid. A ``ValueError`` will be thrown if you look up an\ninvalid IP address or an IPv6 address in an IPv4 database.\n\nRequirements\n------------\n\nThis code requires Python 3.8+. Older versions are not supported. The C\nextension requires CPython.\n\nVersioning\n----------\n\nThe MaxMind DB Python module uses `Semantic Versioning <https://semver.org/>`_.\n\nSupport\n-------\n\nPlease report all issues with this code using the `GitHub issue tracker\n<https://github.com/maxmind/MaxMind-DB-Reader-python/issues>`_\n\nIf you are having an issue with a MaxMind service that is not specific to this\nAPI, please contact `MaxMind support <https://www.maxmind.com/en/support>`_ for\nassistance.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Reader for the MaxMind DB format",
    "version": "2.6.3",
    "project_urls": {
        "Documentation": "https://maxminddb.readthedocs.org/",
        "Homepage": "https://www.maxmind.com/",
        "Issue Tracker": "https://github.com/maxmind/MaxMind-DB-Reader-python/issues",
        "Source Code": "https://github.com/maxmind/MaxMind-DB-Reader-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "469b92211e92b991c015197b09d94339de46682b338be260b5ef64e74bbcd546",
                "md5": "b0fad8e34baf92d02ab6b6080033763a",
                "sha256": "d69c5493c81f11bca90961b4dfa028c031aa8e7bb156653edf242a03dfc51561"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0fad8e34baf92d02ab6b6080033763a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 35000,
            "upload_time": "2025-01-09T16:09:49",
            "upload_time_iso_8601": "2025-01-09T16:09:49.208865Z",
            "url": "https://files.pythonhosted.org/packages/46/9b/92211e92b991c015197b09d94339de46682b338be260b5ef64e74bbcd546/maxminddb-2.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4103bbf02d774e25221b213849d2b2fc504c8406659d93b661015038291e660e",
                "md5": "b2264dfb1c4775b0f3a79f13bdce6250",
                "sha256": "6cc002099c9e1637309df772789a36db9a4601c4623dd1ace8145d057358c20b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b2264dfb1c4775b0f3a79f13bdce6250",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34851,
            "upload_time": "2025-01-09T16:09:51",
            "upload_time_iso_8601": "2025-01-09T16:09:51.659872Z",
            "url": "https://files.pythonhosted.org/packages/41/03/bbf02d774e25221b213849d2b2fc504c8406659d93b661015038291e660e/maxminddb-2.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bebf0e5ce1159f7ae186322bf06104965c1a8555488677bc3c9979e7a9a8c6ae",
                "md5": "5724e013f90bc88192a9dbc5c35d6e60",
                "sha256": "ef41bfe15692fe15e1799d600366a0faa3673a0d7d7dbe6a305ec3a5b6f07708"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5724e013f90bc88192a9dbc5c35d6e60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 88595,
            "upload_time": "2025-01-09T16:09:54",
            "upload_time_iso_8601": "2025-01-09T16:09:54.805224Z",
            "url": "https://files.pythonhosted.org/packages/be/bf/0e5ce1159f7ae186322bf06104965c1a8555488677bc3c9979e7a9a8c6ae/maxminddb-2.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fbf6c5c6464c4a735316af598eaebe4522f204d9035780c40af364d88fee945",
                "md5": "acfffecec4d3555cd2a0001e8c67847f",
                "sha256": "46bdc8dc528a2f64ef34182bf40084e05410344d40097c1e93554d732dfb0e15"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acfffecec4d3555cd2a0001e8c67847f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 87870,
            "upload_time": "2025-01-09T16:09:57",
            "upload_time_iso_8601": "2025-01-09T16:09:57.527369Z",
            "url": "https://files.pythonhosted.org/packages/9f/bf/6c5c6464c4a735316af598eaebe4522f204d9035780c40af364d88fee945/maxminddb-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "198546bd41d2b17484c31a24c8a2efd597beeafd027da19f2dea621fecfa24de",
                "md5": "9776235f790591b28536f466e2e124c2",
                "sha256": "98258a295149aadf96ed8d667468722b248fe47bb991891ad01cfa8cb9e9684a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9776235f790591b28536f466e2e124c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 86396,
            "upload_time": "2025-01-09T16:09:59",
            "upload_time_iso_8601": "2025-01-09T16:09:59.741670Z",
            "url": "https://files.pythonhosted.org/packages/19/85/46bd41d2b17484c31a24c8a2efd597beeafd027da19f2dea621fecfa24de/maxminddb-2.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cfa32d4a6cda538f686fcb1431ed30dc1f4ae6c841d1ea2e0136f11ed9244e4",
                "md5": "3ebc5532e39098e513434f314e5246f2",
                "sha256": "0dd55d2498d287b6cfd6b857deed9070e53c4b22a1acd69615e88dec92d95fb3"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ebc5532e39098e513434f314e5246f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 91089,
            "upload_time": "2025-01-09T16:10:01",
            "upload_time_iso_8601": "2025-01-09T16:10:01.372322Z",
            "url": "https://files.pythonhosted.org/packages/4c/fa/32d4a6cda538f686fcb1431ed30dc1f4ae6c841d1ea2e0136f11ed9244e4/maxminddb-2.6.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "303a9131d6b0c9081370b73682b48c6580ffa5216890e16a7a972960f6379a2b",
                "md5": "787346382ac5befa070c3af1249f00de",
                "sha256": "e38a449890a976365da1f2c927ac076838aa2715b464593080075a18ae4e0dc8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "787346382ac5befa070c3af1249f00de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 90135,
            "upload_time": "2025-01-09T16:10:04",
            "upload_time_iso_8601": "2025-01-09T16:10:04.400616Z",
            "url": "https://files.pythonhosted.org/packages/30/3a/9131d6b0c9081370b73682b48c6580ffa5216890e16a7a972960f6379a2b/maxminddb-2.6.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "017ee439d93c13d37997989b0bbb99d57e4e9fd1ea27909fca3d3a915b2a4e31",
                "md5": "cc872d178f44534f9a9ec9a853eb4459",
                "sha256": "a70d46337c9497a5b3329d9c7fa7f45be33243ffad04924b8f06ffe41a136279"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc872d178f44534f9a9ec9a853eb4459",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 90320,
            "upload_time": "2025-01-09T16:10:12",
            "upload_time_iso_8601": "2025-01-09T16:10:12.866097Z",
            "url": "https://files.pythonhosted.org/packages/01/7e/e439d93c13d37997989b0bbb99d57e4e9fd1ea27909fca3d3a915b2a4e31/maxminddb-2.6.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c96b2ae8d46ade29ccf1b20e08221e2c5ea01a114d99b0a388ef3f5560eb23d",
                "md5": "c17528a1f498c1529e76d321253a6387",
                "sha256": "45da7549c952f88da39c9f440cb3fa2abbd7472571597699467641af88512730"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c17528a1f498c1529e76d321253a6387",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34601,
            "upload_time": "2025-01-09T16:10:15",
            "upload_time_iso_8601": "2025-01-09T16:10:15.386424Z",
            "url": "https://files.pythonhosted.org/packages/6c/96/b2ae8d46ade29ccf1b20e08221e2c5ea01a114d99b0a388ef3f5560eb23d/maxminddb-2.6.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3b2adde7b3e9916b158b129721dbfa7232209480fdb896de87b4f30ac34cb8e",
                "md5": "2ed6f46219ff29716974abe45572840d",
                "sha256": "6c977da32cc72784980da1928a79d38b3e9fe83faa9a40ea9bae598a6bf2f7bb"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ed6f46219ff29716974abe45572840d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 36664,
            "upload_time": "2025-01-09T16:10:18",
            "upload_time_iso_8601": "2025-01-09T16:10:18.194611Z",
            "url": "https://files.pythonhosted.org/packages/a3/b2/adde7b3e9916b158b129721dbfa7232209480fdb896de87b4f30ac34cb8e/maxminddb-2.6.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d779c33b1ec7655b6afa04a6f1e2085f9e751f5d4f663ec6352fe1c1838bde5",
                "md5": "59a5b8bfd708d444c7a78da5867aabab",
                "sha256": "27ba5e22bd09fe324f0a4c5ed97e73c1c7c3ab7e3bae4e1e6fcaa15f175b9f5a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59a5b8bfd708d444c7a78da5867aabab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 35003,
            "upload_time": "2025-01-09T16:10:20",
            "upload_time_iso_8601": "2025-01-09T16:10:20.318890Z",
            "url": "https://files.pythonhosted.org/packages/7d/77/9c33b1ec7655b6afa04a6f1e2085f9e751f5d4f663ec6352fe1c1838bde5/maxminddb-2.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a49732d650a2c0e33a09dec7c06b3d0fed39a4b961e32b8ec25b0c5a7498e75",
                "md5": "6ce9b80b530cdea40b812f5774c67ad8",
                "sha256": "fa36f1ca12fd3a37ad758afd0666457a749b2c4b16db0eb3f8c953f55ae6325d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6ce9b80b530cdea40b812f5774c67ad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34848,
            "upload_time": "2025-01-09T16:10:21",
            "upload_time_iso_8601": "2025-01-09T16:10:21.779259Z",
            "url": "https://files.pythonhosted.org/packages/7a/49/732d650a2c0e33a09dec7c06b3d0fed39a4b961e32b8ec25b0c5a7498e75/maxminddb-2.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af665743c3ceaeebe475d436803fa0f60bfde9f79ffd758a5b77923c2c27a32b",
                "md5": "f655d17f47228641d70d7d2becb5d29c",
                "sha256": "83d2324788a31a28bbb38b0dbdece5826f56db4df6e1538cf6f4b72f6a3da66c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f655d17f47228641d70d7d2becb5d29c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 88800,
            "upload_time": "2025-01-09T16:10:25",
            "upload_time_iso_8601": "2025-01-09T16:10:25.175018Z",
            "url": "https://files.pythonhosted.org/packages/af/66/5743c3ceaeebe475d436803fa0f60bfde9f79ffd758a5b77923c2c27a32b/maxminddb-2.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaad4265b7fe1a471de0e242fcb30644f151b6f32595a833ee1e291692db3123",
                "md5": "eb1822a065599e2333b099dd6d912ea4",
                "sha256": "d4bac2b7b7609bed8dcf6beef1ef4a1e411e9e39c311070ffc2ace80d6de6444"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb1822a065599e2333b099dd6d912ea4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 88070,
            "upload_time": "2025-01-09T16:10:26",
            "upload_time_iso_8601": "2025-01-09T16:10:26.658769Z",
            "url": "https://files.pythonhosted.org/packages/aa/ad/4265b7fe1a471de0e242fcb30644f151b6f32595a833ee1e291692db3123/maxminddb-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2356c9b83d1e96c20a2223a54e6c3daad7b074aa69a5e3be1a4a1ab79f21e23b",
                "md5": "aacfbd0dd2f18c2c180f07caa897d998",
                "sha256": "8868580f34b483d5b74edd4270db417e211906d57fb13bbeeb11ea8d5cd01829"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aacfbd0dd2f18c2c180f07caa897d998",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 86586,
            "upload_time": "2025-01-09T16:10:28",
            "upload_time_iso_8601": "2025-01-09T16:10:28.098379Z",
            "url": "https://files.pythonhosted.org/packages/23/56/c9b83d1e96c20a2223a54e6c3daad7b074aa69a5e3be1a4a1ab79f21e23b/maxminddb-2.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89582fd227d4c9e0e5778f8ab32412a329bea437900c8032968fd4cf67118e1b",
                "md5": "ed989029cbc24b2a82164f888b0f6a9f",
                "sha256": "b29cea50b191784e2242227e0fac5bc985972b3849f97fe96c7f37fb7a7426d7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed989029cbc24b2a82164f888b0f6a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 91306,
            "upload_time": "2025-01-09T16:10:29",
            "upload_time_iso_8601": "2025-01-09T16:10:29.561712Z",
            "url": "https://files.pythonhosted.org/packages/89/58/2fd227d4c9e0e5778f8ab32412a329bea437900c8032968fd4cf67118e1b/maxminddb-2.6.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bdc913326a18d11e925b9b6c0b13163975fc297325c1bdbf29c2af8bd96b7f9",
                "md5": "65e8eee52de701a9a85c13568609b846",
                "sha256": "4d470fc4f9c5ed8854a945dc5ea56b2f0644a5c3e5872d0e579d66a5a9238d7f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "65e8eee52de701a9a85c13568609b846",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 90285,
            "upload_time": "2025-01-09T16:10:33",
            "upload_time_iso_8601": "2025-01-09T16:10:33.119758Z",
            "url": "https://files.pythonhosted.org/packages/1b/dc/913326a18d11e925b9b6c0b13163975fc297325c1bdbf29c2af8bd96b7f9/maxminddb-2.6.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80180b749456ceefa7eaf1cb1e63605ca152dc47114323a94b09e9c62909ca77",
                "md5": "3a9b85e5976d8801975df7f3b75286a6",
                "sha256": "2849357de35bfed0011ad1ff14a83c946273ae8c75a8867612d22f559df70e7d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a9b85e5976d8801975df7f3b75286a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 90480,
            "upload_time": "2025-01-09T16:10:34",
            "upload_time_iso_8601": "2025-01-09T16:10:34.596602Z",
            "url": "https://files.pythonhosted.org/packages/80/18/0b749456ceefa7eaf1cb1e63605ca152dc47114323a94b09e9c62909ca77/maxminddb-2.6.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ce80a188d6fefae8793f7b74d65246041704c94074f5be1d4f75ed8517902c6",
                "md5": "c00732f86d370a3c4a9f10cd081cf70a",
                "sha256": "39254e173af7b0018c1508c2dd68ecda0c043032176140cfe917587e2d082f42"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c00732f86d370a3c4a9f10cd081cf70a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34599,
            "upload_time": "2025-01-09T16:10:35",
            "upload_time_iso_8601": "2025-01-09T16:10:35.818962Z",
            "url": "https://files.pythonhosted.org/packages/0c/e8/0a188d6fefae8793f7b74d65246041704c94074f5be1d4f75ed8517902c6/maxminddb-2.6.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60e8b0bea5f9618480974bd9e1f5e7af035d2f190ca3af816bfb9639d3ea7af5",
                "md5": "3a4d8eb43549a4f4d0484ca9b51b575f",
                "sha256": "489c5ae835198a228380b83cc537a5ffb1911f1579d7545baf097e4a8eefcd9a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a4d8eb43549a4f4d0484ca9b51b575f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 36663,
            "upload_time": "2025-01-09T16:10:36",
            "upload_time_iso_8601": "2025-01-09T16:10:36.996823Z",
            "url": "https://files.pythonhosted.org/packages/60/e8/b0bea5f9618480974bd9e1f5e7af035d2f190ca3af816bfb9639d3ea7af5/maxminddb-2.6.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ac7ddbb62accafeecb920d462df37b3c0102709feef2faf111b53fbf841b059",
                "md5": "20dabd8495e9fd98cfd229cd48216987",
                "sha256": "2b0fef825b23df047876d2056cbb69fb8d8e4b965f744f674be75e16fb86a52e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20dabd8495e9fd98cfd229cd48216987",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35228,
            "upload_time": "2025-01-09T16:10:39",
            "upload_time_iso_8601": "2025-01-09T16:10:39.613454Z",
            "url": "https://files.pythonhosted.org/packages/3a/c7/ddbb62accafeecb920d462df37b3c0102709feef2faf111b53fbf841b059/maxminddb-2.6.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82fe2aa559147d123ed243bf7ef47dde5402b95c0620b9c88b986fcb4d5b672e",
                "md5": "1a678202e4d948dfff2e4bc8f0faf5c3",
                "sha256": "a38faf03db15cc285009c0ddaacd04071b84ebd8ff7d773f700c7def695a291c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1a678202e4d948dfff2e4bc8f0faf5c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35023,
            "upload_time": "2025-01-09T16:10:41",
            "upload_time_iso_8601": "2025-01-09T16:10:41.414096Z",
            "url": "https://files.pythonhosted.org/packages/82/fe/2aa559147d123ed243bf7ef47dde5402b95c0620b9c88b986fcb4d5b672e/maxminddb-2.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c26fc8a86c172a3e93c0d17ed6dd7858a66ec791626a27b76fdc07143a6a5189",
                "md5": "81428bd401cdaf78e2c54faa8564e304",
                "sha256": "edab18a50470031fc8447bcd9285c9f5f952abef2b6db5579fe50665bdcda941"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81428bd401cdaf78e2c54faa8564e304",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 90098,
            "upload_time": "2025-01-09T16:10:42",
            "upload_time_iso_8601": "2025-01-09T16:10:42.789068Z",
            "url": "https://files.pythonhosted.org/packages/c2/6f/c8a86c172a3e93c0d17ed6dd7858a66ec791626a27b76fdc07143a6a5189/maxminddb-2.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93eb5be5fec6128898a69e09e3af348c933eebb2d0f38e4ff375b3138436476f",
                "md5": "b294fe1c98f25f68cbcc5f99af5814dc",
                "sha256": "415dd5de87adc7640d3da2a8e7cf19a313c1a715cb84a3433f0e3b2d27665319"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b294fe1c98f25f68cbcc5f99af5814dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 89567,
            "upload_time": "2025-01-09T16:10:44",
            "upload_time_iso_8601": "2025-01-09T16:10:44.060539Z",
            "url": "https://files.pythonhosted.org/packages/93/eb/5be5fec6128898a69e09e3af348c933eebb2d0f38e4ff375b3138436476f/maxminddb-2.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "772bca6e35cc8bbc4340f667a1531cc6cab24072326afd7b3424c8e89ad767dd",
                "md5": "fb6ee290fbaa8251bbc7c4ac3faf6192",
                "sha256": "d78a02b70ededb3ba7317c24266217d7b68283e3be04cad0c34ee446a0217ee0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fb6ee290fbaa8251bbc7c4ac3faf6192",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 87622,
            "upload_time": "2025-01-09T16:10:45",
            "upload_time_iso_8601": "2025-01-09T16:10:45.281510Z",
            "url": "https://files.pythonhosted.org/packages/77/2b/ca6e35cc8bbc4340f667a1531cc6cab24072326afd7b3424c8e89ad767dd/maxminddb-2.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa08730374d10e7d3ec21f77ae76a7ada8c9347bba5bb55c82d0cb8b50db7dc5",
                "md5": "81c993790d07ccf3aac6733d10d9f1e4",
                "sha256": "4b80275603bba6a95ed69d859d184dfa60bfd8e83cd4c8b722d7f7eaa9d95f8f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81c993790d07ccf3aac6733d10d9f1e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 92303,
            "upload_time": "2025-01-09T16:10:46",
            "upload_time_iso_8601": "2025-01-09T16:10:46.689088Z",
            "url": "https://files.pythonhosted.org/packages/aa/08/730374d10e7d3ec21f77ae76a7ada8c9347bba5bb55c82d0cb8b50db7dc5/maxminddb-2.6.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61dc5fffe5def128ca998004826010801d5f242e07efe9d03da4cc2a0b8ad03b",
                "md5": "e7af0fa35bff2526e689c949d6435155",
                "sha256": "a6868438d1771c0bd0bbc95d84480c1ae04df72a85879e1ada42762250a00f59"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e7af0fa35bff2526e689c949d6435155",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 91211,
            "upload_time": "2025-01-09T16:10:49",
            "upload_time_iso_8601": "2025-01-09T16:10:49.371629Z",
            "url": "https://files.pythonhosted.org/packages/61/dc/5fffe5def128ca998004826010801d5f242e07efe9d03da4cc2a0b8ad03b/maxminddb-2.6.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b828ac699e0994f1a45aebfed0db42efa56845369a047adc249c2df482b03279",
                "md5": "843502ff2009c27f72f1cd7624a1b379",
                "sha256": "efd875d43c4207fb90e10d582e4394d8a04f7b55c83c4d6bc0593a7be450e04f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "843502ff2009c27f72f1cd7624a1b379",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 92128,
            "upload_time": "2025-01-09T16:10:51",
            "upload_time_iso_8601": "2025-01-09T16:10:51.297162Z",
            "url": "https://files.pythonhosted.org/packages/b8/28/ac699e0994f1a45aebfed0db42efa56845369a047adc249c2df482b03279/maxminddb-2.6.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1aa1d9ba3c10fcc3b1cdc432a28daeef5f4726d2125cc47e699c6da4b57cefa0",
                "md5": "b8315e81c74d1abab5474b8cc2dfbee7",
                "sha256": "aadb9d12e887a1f52e8214e539e5d78338356fad4ef2a51931f6f7dbe56c2228"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b8315e81c74d1abab5474b8cc2dfbee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34750,
            "upload_time": "2025-01-09T16:10:52",
            "upload_time_iso_8601": "2025-01-09T16:10:52.563654Z",
            "url": "https://files.pythonhosted.org/packages/1a/a1/d9ba3c10fcc3b1cdc432a28daeef5f4726d2125cc47e699c6da4b57cefa0/maxminddb-2.6.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c2c4c9aece9e56d86becca10f39cb02d4baaae71dc37cc1d0c6ad0d6015793",
                "md5": "d104c2999f8c31f2ee791c7f5a281ba8",
                "sha256": "7d6024d1e40244b5549c5e6063af109399a2f89503a24916b5139c4d0657f1c8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d104c2999f8c31f2ee791c7f5a281ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 36781,
            "upload_time": "2025-01-09T16:10:55",
            "upload_time_iso_8601": "2025-01-09T16:10:55.112001Z",
            "url": "https://files.pythonhosted.org/packages/04/c2/c4c9aece9e56d86becca10f39cb02d4baaae71dc37cc1d0c6ad0d6015793/maxminddb-2.6.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cce3a3218d7cd35c930a08f7d7301334f9c85aa0a28dbac3f50e3d43f3d70734",
                "md5": "93ff8741f754ee6d40ba1dd2c5603cd2",
                "sha256": "9580b2cd017185db07baacd9d629ca01f3fe6f236528681c88a0209725376e9c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93ff8741f754ee6d40ba1dd2c5603cd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 35235,
            "upload_time": "2025-01-09T16:10:57",
            "upload_time_iso_8601": "2025-01-09T16:10:57.614690Z",
            "url": "https://files.pythonhosted.org/packages/cc/e3/a3218d7cd35c930a08f7d7301334f9c85aa0a28dbac3f50e3d43f3d70734/maxminddb-2.6.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "854011f23d1c1f6654618d87e995f56a789f00c1c07d5c986f9b14d81f04f90c",
                "md5": "60cdd24698580afe3830c1d6fa8444e2",
                "sha256": "47828bed767b82c219ba7aa65f0cb03d7f7443d7270259ce931e133a40691d34"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "60cdd24698580afe3830c1d6fa8444e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 35021,
            "upload_time": "2025-01-09T16:10:58",
            "upload_time_iso_8601": "2025-01-09T16:10:58.692831Z",
            "url": "https://files.pythonhosted.org/packages/85/40/11f23d1c1f6654618d87e995f56a789f00c1c07d5c986f9b14d81f04f90c/maxminddb-2.6.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "687e883adcb107fb45916328ecb40f980cc598dbcc7dfd2ccc871851c40836d6",
                "md5": "9f9f3f941bcf199a7cd78ec12f62f427",
                "sha256": "77112cb1a2e381de42c443d1bf222c58b9da203183bb2008dd370c3d2a587a4e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f9f3f941bcf199a7cd78ec12f62f427",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 90068,
            "upload_time": "2025-01-09T16:10:59",
            "upload_time_iso_8601": "2025-01-09T16:10:59.874656Z",
            "url": "https://files.pythonhosted.org/packages/68/7e/883adcb107fb45916328ecb40f980cc598dbcc7dfd2ccc871851c40836d6/maxminddb-2.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c87b57cf9ef4cf8b076f3b25df949b57c7b3ee0f4543f1f76f445afd313b96b",
                "md5": "f83a420c465db9fba2c09e2cbc381ec6",
                "sha256": "448d062e95242e3088df85fe7ed3f2890a9f4aea924bde336e9ff5d2337ca5fd"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f83a420c465db9fba2c09e2cbc381ec6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 89506,
            "upload_time": "2025-01-09T16:11:01",
            "upload_time_iso_8601": "2025-01-09T16:11:01.057088Z",
            "url": "https://files.pythonhosted.org/packages/2c/87/b57cf9ef4cf8b076f3b25df949b57c7b3ee0f4543f1f76f445afd313b96b/maxminddb-2.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fff8cf746032f267ee25bd32f70d71a63e857fec91e19a0907db885bdbb7b0c1",
                "md5": "da01d6ec0e333db91bc17eff62cf51bb",
                "sha256": "a59d72bf373c61da156fd43e2be6da802f68370a50a2205de84ee76916e05f9f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "da01d6ec0e333db91bc17eff62cf51bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 87612,
            "upload_time": "2025-01-09T16:11:02",
            "upload_time_iso_8601": "2025-01-09T16:11:02.362425Z",
            "url": "https://files.pythonhosted.org/packages/ff/f8/cf746032f267ee25bd32f70d71a63e857fec91e19a0907db885bdbb7b0c1/maxminddb-2.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c09eff5c93e8e589c1544cad2a457c1b7e4169a256c8655928266a9de6f21cac",
                "md5": "50b02fce99ef721e54349b94bb5991be",
                "sha256": "e867852037a8a26a24cfcf31b697dce63d488e1617af244c2895568d8f6c7a31"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50b02fce99ef721e54349b94bb5991be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 92310,
            "upload_time": "2025-01-09T16:11:03",
            "upload_time_iso_8601": "2025-01-09T16:11:03.619841Z",
            "url": "https://files.pythonhosted.org/packages/c0/9e/ff5c93e8e589c1544cad2a457c1b7e4169a256c8655928266a9de6f21cac/maxminddb-2.6.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "994456ed56377ba8c99f7eb3101479c063d46f18e5f0a9070432d74a2ed15f82",
                "md5": "ff79da0cee4ba26739334bd5fd49511b",
                "sha256": "5a1586260eac831d61c2665b26ca1ae3ad00caca57c8031346767f4527025311"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ff79da0cee4ba26739334bd5fd49511b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 91227,
            "upload_time": "2025-01-09T16:11:04",
            "upload_time_iso_8601": "2025-01-09T16:11:04.943506Z",
            "url": "https://files.pythonhosted.org/packages/99/44/56ed56377ba8c99f7eb3101479c063d46f18e5f0a9070432d74a2ed15f82/maxminddb-2.6.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b58cdb1a7c18a1946ad006657b52cb499e489d2b28a62490fd5aee14b356a55",
                "md5": "030d9c83ce1544a4c0b119c73c954c00",
                "sha256": "6eb23f842a72ab3096f9f9b1c292f4feb55a8d758567cb6d77637c2257a3187c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "030d9c83ce1544a4c0b119c73c954c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 92126,
            "upload_time": "2025-01-09T16:11:06",
            "upload_time_iso_8601": "2025-01-09T16:11:06.149333Z",
            "url": "https://files.pythonhosted.org/packages/9b/58/cdb1a7c18a1946ad006657b52cb499e489d2b28a62490fd5aee14b356a55/maxminddb-2.6.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39944b37ffa77f8921a549805a62ce62f6fa453ea3c59c0dfcd584770fc59a8c",
                "md5": "0bea89b2b2cfef5f7b608dc78016fd47",
                "sha256": "acf46e20709a27d2b519669888e3f53a37bc4204b98a0c690664c48ff8cb1364"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "0bea89b2b2cfef5f7b608dc78016fd47",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 34751,
            "upload_time": "2025-01-09T16:11:09",
            "upload_time_iso_8601": "2025-01-09T16:11:09.017364Z",
            "url": "https://files.pythonhosted.org/packages/39/94/4b37ffa77f8921a549805a62ce62f6fa453ea3c59c0dfcd584770fc59a8c/maxminddb-2.6.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1eaf638811134e1a33cf75c2d2be1b0b9b90dd1f43216a4ef1f24e223f646b46",
                "md5": "362b234a2725ae558f7c51614cc96ffc",
                "sha256": "3015afb00e6168837938dbe5fda40ace37442c22b292ccee27c1690fbf6078ed"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "362b234a2725ae558f7c51614cc96ffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 36790,
            "upload_time": "2025-01-09T16:11:10",
            "upload_time_iso_8601": "2025-01-09T16:11:10.093178Z",
            "url": "https://files.pythonhosted.org/packages/1e/af/638811134e1a33cf75c2d2be1b0b9b90dd1f43216a4ef1f24e223f646b46/maxminddb-2.6.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd0fe484a03cc303259bde6c1478d3f5953d5c145784e5397e4af5311f944f0d",
                "md5": "db7fdee6dd834f2881facd9f1b61e7bb",
                "sha256": "9d913971187326e59be8a63068128b6439f6717b13c7c451e6d9e1723286d9ff"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db7fdee6dd834f2881facd9f1b61e7bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 35004,
            "upload_time": "2025-01-09T16:11:11",
            "upload_time_iso_8601": "2025-01-09T16:11:11.799892Z",
            "url": "https://files.pythonhosted.org/packages/bd/0f/e484a03cc303259bde6c1478d3f5953d5c145784e5397e4af5311f944f0d/maxminddb-2.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9db0f1960db1ed57b9b386f68cd1c23c7a2084324ef1b63a9c4212fe6a32aad9",
                "md5": "3713e3bc5f39ddde20b656ac8f2099a5",
                "sha256": "89afed255ac3652db7f91d8f6b278a4c490c47283ddbff5589c22cfdef4b8453"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3713e3bc5f39ddde20b656ac8f2099a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34858,
            "upload_time": "2025-01-09T16:11:14",
            "upload_time_iso_8601": "2025-01-09T16:11:14.720897Z",
            "url": "https://files.pythonhosted.org/packages/9d/b0/f1960db1ed57b9b386f68cd1c23c7a2084324ef1b63a9c4212fe6a32aad9/maxminddb-2.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090ac49b3eadb49c77c9318fa0f5f4265218ac742f84f9d1451d86cfa814ebb9",
                "md5": "69816e1a778e84aa7e51a1db24d8bfc0",
                "sha256": "01b143a38ae38c71ebc9028d67bbcb05c1b954e0f3a28c508eaee46833807903"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "69816e1a778e84aa7e51a1db24d8bfc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 89741,
            "upload_time": "2025-01-09T16:11:15",
            "upload_time_iso_8601": "2025-01-09T16:11:15.823153Z",
            "url": "https://files.pythonhosted.org/packages/09/0a/c49b3eadb49c77c9318fa0f5f4265218ac742f84f9d1451d86cfa814ebb9/maxminddb-2.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "728739262dafdc2c0e4d729573cfb388183bfc79a2f6d99e1bde8fe9226b3557",
                "md5": "af32f1414a3532cba8091d4f950f93ed",
                "sha256": "deebf098c79ce031069fec1d7202cba0e766b3f12adbb631d16223174994724a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af32f1414a3532cba8091d4f950f93ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 88898,
            "upload_time": "2025-01-09T16:11:17",
            "upload_time_iso_8601": "2025-01-09T16:11:17.124191Z",
            "url": "https://files.pythonhosted.org/packages/72/87/39262dafdc2c0e4d729573cfb388183bfc79a2f6d99e1bde8fe9226b3557/maxminddb-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77a1accc01d4620abb71558a70bf48ddeb5280d62f849fa7b92b0a189a57954d",
                "md5": "fcd24b1a1eeb7b4dc7e0f80c5652b3f0",
                "sha256": "f49eefddad781e088969188c606b7988a7da27592590f6c4cc2b64fd2a85ff28"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fcd24b1a1eeb7b4dc7e0f80c5652b3f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 87433,
            "upload_time": "2025-01-09T16:11:18",
            "upload_time_iso_8601": "2025-01-09T16:11:18.986540Z",
            "url": "https://files.pythonhosted.org/packages/77/a1/accc01d4620abb71558a70bf48ddeb5280d62f849fa7b92b0a189a57954d/maxminddb-2.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb9edee0ec0aa86857305368aef2df2181fd3e7aeef48b4f6dba477594203099",
                "md5": "8e55f1743d23aece31123e4347783093",
                "sha256": "da584edc3e4465f5417a48602ed7e2bee4f2a7a2b43fcf2c40728cfc9f9fd5aa"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e55f1743d23aece31123e4347783093",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 91686,
            "upload_time": "2025-01-09T16:11:20",
            "upload_time_iso_8601": "2025-01-09T16:11:20.361335Z",
            "url": "https://files.pythonhosted.org/packages/bb/9e/dee0ec0aa86857305368aef2df2181fd3e7aeef48b4f6dba477594203099/maxminddb-2.6.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "880ed87c0db98a7d86ff5248cfb3423e20d3a5a17aa370e74ddaf4e334fc3b1e",
                "md5": "b1817300dbd0ca800082acf14adbf5d4",
                "sha256": "e5a8cfe71db548aa9a520a3f7e92430b6b7900affadef3b0c83c530c759dd12f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b1817300dbd0ca800082acf14adbf5d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 90974,
            "upload_time": "2025-01-09T16:11:21",
            "upload_time_iso_8601": "2025-01-09T16:11:21.631334Z",
            "url": "https://files.pythonhosted.org/packages/88/0e/d87c0db98a7d86ff5248cfb3423e20d3a5a17aa370e74ddaf4e334fc3b1e/maxminddb-2.6.3-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1440245a5dec528f7962c2c9072727a818a7638f53c3c4fca3e48bb70dd8f4e",
                "md5": "b7acbed1ef200de14d28a8fac9f55345",
                "sha256": "daa20961ad0fb550038c02dbf76a04e1c1958a3b899fa14a7c412aed67380812"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7acbed1ef200de14d28a8fac9f55345",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 91018,
            "upload_time": "2025-01-09T16:11:22",
            "upload_time_iso_8601": "2025-01-09T16:11:22.963523Z",
            "url": "https://files.pythonhosted.org/packages/f1/44/0245a5dec528f7962c2c9072727a818a7638f53c3c4fca3e48bb70dd8f4e/maxminddb-2.6.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4d6cc1a0b95d8b87814828f267227dce7c2bb382b89399377757a2adf9e8679",
                "md5": "1746262949bfc42dfab3068ca8eda2da",
                "sha256": "6480ca47db4d8d09296c268e8ff4e6f4c1d455773a67233c9f899dfa6af3e6c6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1746262949bfc42dfab3068ca8eda2da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34614,
            "upload_time": "2025-01-09T16:11:24",
            "upload_time_iso_8601": "2025-01-09T16:11:24.332428Z",
            "url": "https://files.pythonhosted.org/packages/f4/d6/cc1a0b95d8b87814828f267227dce7c2bb382b89399377757a2adf9e8679/maxminddb-2.6.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0a43389c47750a6582f347d154eb1e7cbc7b7d3acbe4ab044c90c8ef8a2d032",
                "md5": "8e13f93fa9f92dbf13463e675731e213",
                "sha256": "0348c8dadef9493dbcd45f032ae271c7fd2216ed4bb4bab0aff371ffc522f871"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e13f93fa9f92dbf13463e675731e213",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 36658,
            "upload_time": "2025-01-09T16:11:25",
            "upload_time_iso_8601": "2025-01-09T16:11:25.494709Z",
            "url": "https://files.pythonhosted.org/packages/d0/a4/3389c47750a6582f347d154eb1e7cbc7b7d3acbe4ab044c90c8ef8a2d032/maxminddb-2.6.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8185130e4e46892622782d5ce64d744317503f7ea836115e058487374a3da9c",
                "md5": "4c82d13ce437b94bafda23fb9fbb315f",
                "sha256": "1bc2edcef76ce54d4df04f58aec98f4df0377f37aae2217587bfecd663ed5c66"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c82d13ce437b94bafda23fb9fbb315f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 35004,
            "upload_time": "2025-01-09T16:11:26",
            "upload_time_iso_8601": "2025-01-09T16:11:26.677741Z",
            "url": "https://files.pythonhosted.org/packages/b8/18/5130e4e46892622782d5ce64d744317503f7ea836115e058487374a3da9c/maxminddb-2.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bec422c285479e65865ca495fdeaf668cb90ee16cbb897770c3c8bb8bc6d4f17",
                "md5": "7e32b29657391b00b3ceab0a66f94738",
                "sha256": "1f0b78c40a12588e9e0ca0ffe5306b6dea028dcd21f2c120d1ceb328a3307a98"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e32b29657391b00b3ceab0a66f94738",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34855,
            "upload_time": "2025-01-09T16:11:27",
            "upload_time_iso_8601": "2025-01-09T16:11:27.896861Z",
            "url": "https://files.pythonhosted.org/packages/be/c4/22c285479e65865ca495fdeaf668cb90ee16cbb897770c3c8bb8bc6d4f17/maxminddb-2.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "874802b96dfc47aca414803bb33269c13e8b54a3671c81d827d6cf41ed23630d",
                "md5": "9e18540ad2b207889a79e50bf5d27a74",
                "sha256": "f06e9c908a9270e882f0d23f041a9674680a7a110412b453f902d22323f86d38"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e18540ad2b207889a79e50bf5d27a74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 88328,
            "upload_time": "2025-01-09T16:11:30",
            "upload_time_iso_8601": "2025-01-09T16:11:30.528362Z",
            "url": "https://files.pythonhosted.org/packages/87/48/02b96dfc47aca414803bb33269c13e8b54a3671c81d827d6cf41ed23630d/maxminddb-2.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00f759d651e171abae8680dcc2dbbc4a2c84e01841713c54f8f1caa59f342f8a",
                "md5": "ebe5182e75aeb2744b8836bc63768341",
                "sha256": "46096646c284835c8a580ec2ccbf0d6d5398191531fa543bb0437983c75cb7ba"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebe5182e75aeb2744b8836bc63768341",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 87599,
            "upload_time": "2025-01-09T16:11:32",
            "upload_time_iso_8601": "2025-01-09T16:11:32.394711Z",
            "url": "https://files.pythonhosted.org/packages/00/f7/59d651e171abae8680dcc2dbbc4a2c84e01841713c54f8f1caa59f342f8a/maxminddb-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00ee137f3fbececbcc98deee5cec8528f26dc6843905c788343c6b88ceabb7cf",
                "md5": "074149bee452cc08213b23f4371ed66a",
                "sha256": "0d82fbddf3a88e6aa6181bd16bc08a6939d6353f97f143eeddec16bc5394e361"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "074149bee452cc08213b23f4371ed66a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 86134,
            "upload_time": "2025-01-09T16:11:33",
            "upload_time_iso_8601": "2025-01-09T16:11:33.635272Z",
            "url": "https://files.pythonhosted.org/packages/00/ee/137f3fbececbcc98deee5cec8528f26dc6843905c788343c6b88ceabb7cf/maxminddb-2.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6c9de67ec6a5b62c4bed75c68841929ac5725ae3e22da6a7528ae531ef213d7",
                "md5": "a9099095d0bfb24270edd3521d1ac8ca",
                "sha256": "6136dc8ad8c8f7e95a7d84174a990c1b47d5e641e3a3a8ae67d7bde625342dbb"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9099095d0bfb24270edd3521d1ac8ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 90800,
            "upload_time": "2025-01-09T16:11:34",
            "upload_time_iso_8601": "2025-01-09T16:11:34.939126Z",
            "url": "https://files.pythonhosted.org/packages/f6/c9/de67ec6a5b62c4bed75c68841929ac5725ae3e22da6a7528ae531ef213d7/maxminddb-2.6.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95085dab40bf25e4cbc70e77a0cd296c1f8eb07e4d96f09e53fca3601edf67fe",
                "md5": "3218a134a0d46831493d41aafbfb5c16",
                "sha256": "01773fee182cc36f6d38c277936accf7c85b8f4c20d13bb630666f6b3f087ad8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3218a134a0d46831493d41aafbfb5c16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 89895,
            "upload_time": "2025-01-09T16:11:37",
            "upload_time_iso_8601": "2025-01-09T16:11:37.488475Z",
            "url": "https://files.pythonhosted.org/packages/95/08/5dab40bf25e4cbc70e77a0cd296c1f8eb07e4d96f09e53fca3601edf67fe/maxminddb-2.6.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "676408eded76526eab08c8ad13942dddc9553f7a667042eb6cb321466f4fd748",
                "md5": "5d608b0d4e962bbdc319853b809b7e79",
                "sha256": "890dd845e371f67edef7b19a2866191d9fff85faf88f4b4c416a0aaa37204416"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d608b0d4e962bbdc319853b809b7e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 90046,
            "upload_time": "2025-01-09T16:11:38",
            "upload_time_iso_8601": "2025-01-09T16:11:38.834249Z",
            "url": "https://files.pythonhosted.org/packages/67/64/08eded76526eab08c8ad13942dddc9553f7a667042eb6cb321466f4fd748/maxminddb-2.6.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cf26e52a11e27bdc51080f2f2956f3a75e29ecb013dda93b7d987bd61a55e77",
                "md5": "11b789b362577d8a9ab4bfbe2dc8f477",
                "sha256": "4e0865069ef76b4f3eb862c042b107088171cbf43fea3dcaae0dd7253effe6e3"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "11b789b362577d8a9ab4bfbe2dc8f477",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34611,
            "upload_time": "2025-01-09T16:11:40",
            "upload_time_iso_8601": "2025-01-09T16:11:40.125776Z",
            "url": "https://files.pythonhosted.org/packages/8c/f2/6e52a11e27bdc51080f2f2956f3a75e29ecb013dda93b7d987bd61a55e77/maxminddb-2.6.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d27df4ec3e13250829b09bf6b13ac77f5454aad3aaaa108479e8e676a804d65",
                "md5": "42aab7c05296747adcf9a0d4bd13d945",
                "sha256": "7c3209d7a4b2f50d4b28a1d886d95b19094cdc840208e69dbbc40cae2c1cc65b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42aab7c05296747adcf9a0d4bd13d945",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 36657,
            "upload_time": "2025-01-09T16:11:41",
            "upload_time_iso_8601": "2025-01-09T16:11:41.357728Z",
            "url": "https://files.pythonhosted.org/packages/1d/27/df4ec3e13250829b09bf6b13ac77f5454aad3aaaa108479e8e676a804d65/maxminddb-2.6.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2e69ca0ddd808ef55329e5138c51db90d11cc34d8c29e0f9c58d124e92b0c34",
                "md5": "bfc440dc73c5dfc96fee7246f54de47d",
                "sha256": "b4729936fedb4793d9162b92d6de63e267e388c8938e19e700120b6df6a6ae6c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfc440dc73c5dfc96fee7246f54de47d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 34032,
            "upload_time": "2025-01-09T16:11:44",
            "upload_time_iso_8601": "2025-01-09T16:11:44.788879Z",
            "url": "https://files.pythonhosted.org/packages/e2/e6/9ca0ddd808ef55329e5138c51db90d11cc34d8c29e0f9c58d124e92b0c34/maxminddb-2.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "771129b548210cdf32e7b2fc2da3b3d57cd8903716194ffd2bd2803c6bd21ec8",
                "md5": "65329e8c4a7e5c17e7775824469ba2f6",
                "sha256": "6887315de47f3a9840df19f498a4e68723c160c9448d276c3ef454531555778e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65329e8c4a7e5c17e7775824469ba2f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 33659,
            "upload_time": "2025-01-09T16:11:45",
            "upload_time_iso_8601": "2025-01-09T16:11:45.991336Z",
            "url": "https://files.pythonhosted.org/packages/77/11/29b548210cdf32e7b2fc2da3b3d57cd8903716194ffd2bd2803c6bd21ec8/maxminddb-2.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02b811e25f5f02767ccafe5efde545707a95f2b139e15bb9c01534f48bab0306",
                "md5": "082e7a21f931bd6265726d72cd67eb18",
                "sha256": "34943b4b724a35ef63ec40dcf894a100575d233b23b6cd4f8224017ea1195265"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "082e7a21f931bd6265726d72cd67eb18",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 37158,
            "upload_time": "2025-01-09T16:11:47",
            "upload_time_iso_8601": "2025-01-09T16:11:47.672752Z",
            "url": "https://files.pythonhosted.org/packages/02/b8/11e25f5f02767ccafe5efde545707a95f2b139e15bb9c01534f48bab0306/maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4bf02f3c29b38ecabec203ac4b72d7788738e9fee8332abb4515992fed4b59e",
                "md5": "057a521af51571e8c5333061e35f469e",
                "sha256": "2d25acb42ef8829e8e3491b6b3b4ced9dbb4eea6c4ec24afdc4028051e7b8803"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "057a521af51571e8c5333061e35f469e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36814,
            "upload_time": "2025-01-09T16:11:50",
            "upload_time_iso_8601": "2025-01-09T16:11:50.109773Z",
            "url": "https://files.pythonhosted.org/packages/d4/bf/02f3c29b38ecabec203ac4b72d7788738e9fee8332abb4515992fed4b59e/maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "324f28aff4f15d8e10242b76e6b5b4d1480b03ac4936258c1ba8efc0b3a09420",
                "md5": "2cfbc47ca9606f5c9a23ec8e3ac8bfa6",
                "sha256": "a23c7c88f9df0727a3e56f2385ec19fb5f61bb46dcbebb6ddc5c948cf0b73b0a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2cfbc47ca9606f5c9a23ec8e3ac8bfa6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 38337,
            "upload_time": "2025-01-09T16:11:51",
            "upload_time_iso_8601": "2025-01-09T16:11:51.321378Z",
            "url": "https://files.pythonhosted.org/packages/32/4f/28aff4f15d8e10242b76e6b5b4d1480b03ac4936258c1ba8efc0b3a09420/maxminddb-2.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9792e967259138f6785afa5f8eea47fcd0c679ee5a4008d98cb4968636316bbc",
                "md5": "64590f71a8cdd22e118f384ea4ed6e1e",
                "sha256": "85763c19246dce43044be58cb9119579c2efd0b85a7b79d865b741a698866488"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64590f71a8cdd22e118f384ea4ed6e1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36710,
            "upload_time": "2025-01-09T16:11:52",
            "upload_time_iso_8601": "2025-01-09T16:11:52.597595Z",
            "url": "https://files.pythonhosted.org/packages/97/92/e967259138f6785afa5f8eea47fcd0c679ee5a4008d98cb4968636316bbc/maxminddb-2.6.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8613ea782e30543d299d302549309a4d19e9d44ae745190941cefba29ca64ccd",
                "md5": "98c6d1ca1f81e7255bb9fb40c2928995",
                "sha256": "7c5d15a0546821a7e9104b71ca701c01462390d0a1bee5cad75f583cf26c400b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98c6d1ca1f81e7255bb9fb40c2928995",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 33848,
            "upload_time": "2025-01-09T16:11:54",
            "upload_time_iso_8601": "2025-01-09T16:11:54.383428Z",
            "url": "https://files.pythonhosted.org/packages/86/13/ea782e30543d299d302549309a4d19e9d44ae745190941cefba29ca64ccd/maxminddb-2.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b516f541e9d3315b9cdd8e6112ed9f5cf044e9e1d616599098b9d6f0905f98f",
                "md5": "b8a4051c0db42889d8cf23fb3b594a5a",
                "sha256": "de8415538d778ae4f4bb40e2cee9581e2d5c860abdbdbba1458953f5b314a6b0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b8a4051c0db42889d8cf23fb3b594a5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 33661,
            "upload_time": "2025-01-09T16:11:55",
            "upload_time_iso_8601": "2025-01-09T16:11:55.645280Z",
            "url": "https://files.pythonhosted.org/packages/4b/51/6f541e9d3315b9cdd8e6112ed9f5cf044e9e1d616599098b9d6f0905f98f/maxminddb-2.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "272441e00bfd7e046ec02492897ae5c5b1bea73821118aa29e29b7d6bad33e2a",
                "md5": "7fe1f3aab002bbf846d948c5997cc12e",
                "sha256": "81340e52c743cdc3c0f4a9f45f9cf4e3c2ae87bf4bbb34613c5059a5b829eb65"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fe1f3aab002bbf846d948c5997cc12e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 37157,
            "upload_time": "2025-01-09T16:11:56",
            "upload_time_iso_8601": "2025-01-09T16:11:56.887033Z",
            "url": "https://files.pythonhosted.org/packages/27/24/41e00bfd7e046ec02492897ae5c5b1bea73821118aa29e29b7d6bad33e2a/maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "205c4c1a5d0ad350892fcfe2f101deb47b4e5dcff733f896e7fb4a8847185af0",
                "md5": "ff564f1a1b6c685892a9c19d80ebe2a3",
                "sha256": "0b140c1db0c218f485b033b51a086d98d57f55f4a4c2b1cb72fe6a5e1e57359a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff564f1a1b6c685892a9c19d80ebe2a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36849,
            "upload_time": "2025-01-09T16:11:58",
            "upload_time_iso_8601": "2025-01-09T16:11:58.547302Z",
            "url": "https://files.pythonhosted.org/packages/20/5c/4c1a5d0ad350892fcfe2f101deb47b4e5dcff733f896e7fb4a8847185af0/maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c2848e448dce5d2929bb29b25a076183f4f4b3a44dd64984bb55ac5dd287db7",
                "md5": "ff6d11a24101423ebc3e28204c2ff739",
                "sha256": "8ec674a2c2e4b47ab9f582460670a5c1d7725b1cbf16e6cbb94de1ae51ee9edf"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ff6d11a24101423ebc3e28204c2ff739",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 38341,
            "upload_time": "2025-01-09T16:11:59",
            "upload_time_iso_8601": "2025-01-09T16:11:59.781150Z",
            "url": "https://files.pythonhosted.org/packages/9c/28/48e448dce5d2929bb29b25a076183f4f4b3a44dd64984bb55ac5dd287db7/maxminddb-2.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6263c23a5f3959a4f63fc1a7fdebf0add8b975ae5932a51c13d12534c296b6d9",
                "md5": "902c46ccf2d1f5ff1be20e8b6a8cd32b",
                "sha256": "e28622fd7c4ccd298c3f630161d0801182eb38038ca01319693a70264de40b89"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "902c46ccf2d1f5ff1be20e8b6a8cd32b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36712,
            "upload_time": "2025-01-09T16:12:01",
            "upload_time_iso_8601": "2025-01-09T16:12:01.063873Z",
            "url": "https://files.pythonhosted.org/packages/62/63/c23a5f3959a4f63fc1a7fdebf0add8b975ae5932a51c13d12534c296b6d9/maxminddb-2.6.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a00748940ad416ee714db221361ed10562cc5e6abe55901b8b61f340bf1501b",
                "md5": "35d25036b6c3b2838d7550c23b7545b5",
                "sha256": "b09bb7bb98418a620b1ec1881d1594c02e715a68cdc925781de1e79b39cefe77"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35d25036b6c3b2838d7550c23b7545b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 34034,
            "upload_time": "2025-01-09T16:12:03",
            "upload_time_iso_8601": "2025-01-09T16:12:03.059769Z",
            "url": "https://files.pythonhosted.org/packages/4a/00/748940ad416ee714db221361ed10562cc5e6abe55901b8b61f340bf1501b/maxminddb-2.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a044d7b2cda9f91d540c9151b47e7664ebbd12ecc1d8490b86d0ffbc64c58344",
                "md5": "871e8cc819f0ffcdef0d10e2aa7d0ac8",
                "sha256": "a6597599cde3916730d69b023045e6c22ff1c076d9cad7fb63641d36d01e3e93"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "871e8cc819f0ffcdef0d10e2aa7d0ac8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 33654,
            "upload_time": "2025-01-09T16:12:05",
            "upload_time_iso_8601": "2025-01-09T16:12:05.620975Z",
            "url": "https://files.pythonhosted.org/packages/a0/44/d7b2cda9f91d540c9151b47e7664ebbd12ecc1d8490b86d0ffbc64c58344/maxminddb-2.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bd8f3a5b18f456171287311e3d69ccd9cd13d7265e991f6864060dcd4853159",
                "md5": "296d1edaa4fed73c1789fbdcf7e26bb5",
                "sha256": "4e7e6d5f3c1aa6350303edab8f0dd471e616d69b5d47ff5ecbf2c7c82998b9c6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "296d1edaa4fed73c1789fbdcf7e26bb5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 37163,
            "upload_time": "2025-01-09T16:12:08",
            "upload_time_iso_8601": "2025-01-09T16:12:08.024453Z",
            "url": "https://files.pythonhosted.org/packages/3b/d8/f3a5b18f456171287311e3d69ccd9cd13d7265e991f6864060dcd4853159/maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55868b67b7691e5ce0ec798cccf974426e5b56e8c97fc5cf8b3d283004f130ae",
                "md5": "8fb2328ca404a6b8d32f19d71c855fce",
                "sha256": "536a39fb917a44b1cd037da624e3d11d49898b5579dfc00c4d7103a057dc51ab"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fb2328ca404a6b8d32f19d71c855fce",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36816,
            "upload_time": "2025-01-09T16:12:09",
            "upload_time_iso_8601": "2025-01-09T16:12:09.672318Z",
            "url": "https://files.pythonhosted.org/packages/55/86/8b67b7691e5ce0ec798cccf974426e5b56e8c97fc5cf8b3d283004f130ae/maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed7c95681743660b699f1593f6ff4c0ed656d0876e6b8b706b85867b527aa873",
                "md5": "2eb782ca9e752ab62c7ced10839ee6dd",
                "sha256": "a9ebd373a4ef69218bfbce93e9b97f583cfe681b28d4e32e0d64f76ded148fba"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2eb782ca9e752ab62c7ced10839ee6dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 38336,
            "upload_time": "2025-01-09T16:12:10",
            "upload_time_iso_8601": "2025-01-09T16:12:10.964294Z",
            "url": "https://files.pythonhosted.org/packages/ed/7c/95681743660b699f1593f6ff4c0ed656d0876e6b8b706b85867b527aa873/maxminddb-2.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1eb79146f7a50ba2cc2212a50c8acb14bbec629523ccc46712c32a4c10a47ec",
                "md5": "46bad35ff90868dca86c8a867f6636fb",
                "sha256": "e441478922c2d311b8bc96f35d6e78306802774149fc20d07d96cc5c3b57dd02"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "46bad35ff90868dca86c8a867f6636fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36707,
            "upload_time": "2025-01-09T16:12:12",
            "upload_time_iso_8601": "2025-01-09T16:12:12.343795Z",
            "url": "https://files.pythonhosted.org/packages/d1/eb/79146f7a50ba2cc2212a50c8acb14bbec629523ccc46712c32a4c10a47ec/maxminddb-2.6.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57ae422ec0f3b6a40f23de9477c42fce90126a3994dd51d06b50582973c0088e",
                "md5": "437dfbae5efc41c9dbf08b2400bce46d",
                "sha256": "d2c3806baa7aa047aa1bac7419e7e353db435f88f09d51106a84dbacf645d254"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "437dfbae5efc41c9dbf08b2400bce46d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 181376,
            "upload_time": "2025-01-09T16:12:13",
            "upload_time_iso_8601": "2025-01-09T16:12:13.700172Z",
            "url": "https://files.pythonhosted.org/packages/57/ae/422ec0f3b6a40f23de9477c42fce90126a3994dd51d06b50582973c0088e/maxminddb-2.6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-09 16:12:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "maxmind",
    "github_project": "MaxMind-DB-Reader-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "maxminddb"
}
        
Elapsed time: 0.39258s