maxminddb


Namemaxminddb JSON
Version 2.8.2 PyPI version JSON
download
home_pageNone
SummaryReader for the MaxMind DB format
upload_time2025-07-25 20:32:05
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
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 install from PyPI, you may also use ``pip`` from the
source directory:

.. code-block:: bash

    $ python -m pip 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.9+. 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.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Gregory Oschwald <goschwald@maxmind.com>",
    "download_url": "https://files.pythonhosted.org/packages/94/9c/5af549744e7a1e986bddd119c0bbca7f7fa7fb72590b554cb860a0c3acb1/maxminddb-2.8.2.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 install from PyPI, you may also use ``pip`` from the\nsource directory:\n\n.. code-block:: bash\n\n    $ python -m pip 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.9+. 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": null,
    "summary": "Reader for the MaxMind DB format",
    "version": "2.8.2",
    "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": null,
            "digests": {
                "blake2b_256": "73f50f66cee71b252934bbdffc7b93de56f83a9f0a85b46d73d3595d39108206",
                "md5": "aa8fe399f8889bb2af2964d432513cf6",
                "sha256": "3db07d41644fbb712f31d8837feb3109a8b73f42f7ef1be32b3eb84af96f062b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "aa8fe399f8889bb2af2964d432513cf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 52245,
            "upload_time": "2025-07-25T20:29:55",
            "upload_time_iso_8601": "2025-07-25T20:29:55.016696Z",
            "url": "https://files.pythonhosted.org/packages/73/f5/0f66cee71b252934bbdffc7b93de56f83a9f0a85b46d73d3595d39108206/maxminddb-2.8.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b78738d0b5d6fd6070175a1a0c7158ffc2615764d21c3b6402ce0ff731fc1c3",
                "md5": "74efca4947ebd9618f2bd58ca73d6fa1",
                "sha256": "cb7797d3cf35160f5ed54e12e7bddb12ec011e838bedc9201f7c2987ea284a3c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74efca4947ebd9618f2bd58ca73d6fa1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 35194,
            "upload_time": "2025-07-25T20:29:56",
            "upload_time_iso_8601": "2025-07-25T20:29:56.445139Z",
            "url": "https://files.pythonhosted.org/packages/5b/78/738d0b5d6fd6070175a1a0c7158ffc2615764d21c3b6402ce0ff731fc1c3/maxminddb-2.8.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0bca07567c1ae7b60c79fcdeb704e7cf0d87292dd557062a7ee4fdc401bf6b7",
                "md5": "21deb8a36754ad9b8e4f4f49297dac87",
                "sha256": "08df1edfb85bd2e30e8f7a2c512be15c5c169492e5972afd3ddab7c498b5aad2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "21deb8a36754ad9b8e4f4f49297dac87",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 35004,
            "upload_time": "2025-07-25T20:29:58",
            "upload_time_iso_8601": "2025-07-25T20:29:58.002205Z",
            "url": "https://files.pythonhosted.org/packages/b0/bc/a07567c1ae7b60c79fcdeb704e7cf0d87292dd557062a7ee4fdc401bf6b7/maxminddb-2.8.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "883c2d009b59b89fad5a3017f2185ef55f59a31fe2a591c2a3ec8d3c27943bdc",
                "md5": "2dc495b54f765f2f016d7c057f45075e",
                "sha256": "18c671d56b95543a28ec05628fa139d9db9f43f53f09f466b6b2d0dae09adddb"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2dc495b54f765f2f016d7c057f45075e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 94719,
            "upload_time": "2025-07-25T20:29:59",
            "upload_time_iso_8601": "2025-07-25T20:29:59.487527Z",
            "url": "https://files.pythonhosted.org/packages/88/3c/2d009b59b89fad5a3017f2185ef55f59a31fe2a591c2a3ec8d3c27943bdc/maxminddb-2.8.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce32c075774a6873451cbf0afcbb4c4fdba7e9a8c406ec5dc100c1550fbc7529",
                "md5": "2e6763285eafed0a45b1053fcdf01fb4",
                "sha256": "3f7453048c0f20750a77091eb38443abf1e30f6d6e41de3b8358ea6e7cd73730"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e6763285eafed0a45b1053fcdf01fb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 92316,
            "upload_time": "2025-07-25T20:30:01",
            "upload_time_iso_8601": "2025-07-25T20:30:01.579213Z",
            "url": "https://files.pythonhosted.org/packages/ce/32/c075774a6873451cbf0afcbb4c4fdba7e9a8c406ec5dc100c1550fbc7529/maxminddb-2.8.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "975a791016f1d4474b17698f6d2145d0336d2f017bf705c480ce12f2c6208833",
                "md5": "4dcd7bb9ef71cbd61a0706373a705d96",
                "sha256": "990b7993503e77e44baed17f2c7cd1006112f54bd132af354ef4640c6d83a68b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4dcd7bb9ef71cbd61a0706373a705d96",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 92259,
            "upload_time": "2025-07-25T20:30:03",
            "upload_time_iso_8601": "2025-07-25T20:30:03.253090Z",
            "url": "https://files.pythonhosted.org/packages/97/5a/791016f1d4474b17698f6d2145d0336d2f017bf705c480ce12f2c6208833/maxminddb-2.8.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "026c1936c7f43a84676c8f2b02d27cd6199645c35c26e21f36beb92e5d0df086",
                "md5": "d07cab12447688af4596282f1dc8f1b8",
                "sha256": "027a8bc9e622532196cb84f14f8b18d555b0937a3e0a6e95805db215f98c451b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d07cab12447688af4596282f1dc8f1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 90418,
            "upload_time": "2025-07-25T20:30:04",
            "upload_time_iso_8601": "2025-07-25T20:30:04.364010Z",
            "url": "https://files.pythonhosted.org/packages/02/6c/1936c7f43a84676c8f2b02d27cd6199645c35c26e21f36beb92e5d0df086/maxminddb-2.8.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9539b6192b11d0605c09e9dcb5626bf0a4996f644893adb2b0272433852d7601",
                "md5": "fc9684972a42d739109062d3e6d8ccde",
                "sha256": "883e17e942631a3b99747a4dc8d55c3e20ac2e342696e828a961d9dcd1811cbb"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "fc9684972a42d739109062d3e6d8ccde",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 34598,
            "upload_time": "2025-07-25T20:30:05",
            "upload_time_iso_8601": "2025-07-25T20:30:05.531608Z",
            "url": "https://files.pythonhosted.org/packages/95/39/b6192b11d0605c09e9dcb5626bf0a4996f644893adb2b0272433852d7601/maxminddb-2.8.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c3ee3316093c73da362c3ae921d8b05a1ff2da46917a488c4ed3adb88c3452d",
                "md5": "3af39a631a19bd61832b29bbdcfbf456",
                "sha256": "472d6c61c5c1994989fbdefc7a17adec245330f3e9a11021b9460c5b9f27bcd1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3af39a631a19bd61832b29bbdcfbf456",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 36680,
            "upload_time": "2025-07-25T20:30:07",
            "upload_time_iso_8601": "2025-07-25T20:30:07.090090Z",
            "url": "https://files.pythonhosted.org/packages/7c/3e/e3316093c73da362c3ae921d8b05a1ff2da46917a488c4ed3adb88c3452d/maxminddb-2.8.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "085eb66837faf2bcc398af6d5b7d51cc7ea30ae46c2870ee13ab580e9328c6b8",
                "md5": "17e725bea513cbd971a0ec0e98c7549b",
                "sha256": "67828addad0cb0ef21fd37549db58a16f219cc1e9c6243b089a726dfe8dfcd34"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "17e725bea513cbd971a0ec0e98c7549b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 33035,
            "upload_time": "2025-07-25T20:30:08",
            "upload_time_iso_8601": "2025-07-25T20:30:08.584047Z",
            "url": "https://files.pythonhosted.org/packages/08/5e/b66837faf2bcc398af6d5b7d51cc7ea30ae46c2870ee13ab580e9328c6b8/maxminddb-2.8.2-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc2ae61a2544d69ef0d0f31dec9afe943d4e28d2667f9293f490b843620b426b",
                "md5": "06b466437ded267e857a04655da273df",
                "sha256": "7c6d18662c285bb5dfa3b8f2b222c5f77d2521f1d9260a025d8c8b8ec87916f4"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "06b466437ded267e857a04655da273df",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 52246,
            "upload_time": "2025-07-25T20:30:09",
            "upload_time_iso_8601": "2025-07-25T20:30:09.735299Z",
            "url": "https://files.pythonhosted.org/packages/fc/2a/e61a2544d69ef0d0f31dec9afe943d4e28d2667f9293f490b843620b426b/maxminddb-2.8.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dec7429492073b45d50d2a636b890abe54661f3e84c844711f9d57246b7e9739",
                "md5": "9e5b5c614953b2a203d9993e271a07f3",
                "sha256": "4fd06457cee79e465e72cf21a46c78d5a8574dfeed98b54c106f14f47d237009"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e5b5c614953b2a203d9993e271a07f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 35194,
            "upload_time": "2025-07-25T20:30:10",
            "upload_time_iso_8601": "2025-07-25T20:30:10.995013Z",
            "url": "https://files.pythonhosted.org/packages/de/c7/429492073b45d50d2a636b890abe54661f3e84c844711f9d57246b7e9739/maxminddb-2.8.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27b1a27b00e554ce461c7a4031c6f236a2110e0dc2540c10c2e166d67a82bd45",
                "md5": "79adbe76d274195e2a680885c7c76eac",
                "sha256": "711beeb8fda0169c379e77758499f4b7feb56a89327e894fff57bf35d9fe35d5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "79adbe76d274195e2a680885c7c76eac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 35006,
            "upload_time": "2025-07-25T20:30:12",
            "upload_time_iso_8601": "2025-07-25T20:30:12.085328Z",
            "url": "https://files.pythonhosted.org/packages/27/b1/a27b00e554ce461c7a4031c6f236a2110e0dc2540c10c2e166d67a82bd45/maxminddb-2.8.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d4d255c7eebcaee9784665b7d73075b3aa60dc72e420db63264f0789e29e774",
                "md5": "a13ef2e8108ef75415929fce32ea3403",
                "sha256": "cc0eaef5f5a371484542503d70b979e14dd2efded78a19029e78c4e016d7d694"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a13ef2e8108ef75415929fce32ea3403",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 94909,
            "upload_time": "2025-07-25T20:30:13",
            "upload_time_iso_8601": "2025-07-25T20:30:13.260198Z",
            "url": "https://files.pythonhosted.org/packages/2d/4d/255c7eebcaee9784665b7d73075b3aa60dc72e420db63264f0789e29e774/maxminddb-2.8.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bdfdebe55bf6edc34ed0572ea716d9c58c5e42d76df028cda63c86f54445fff",
                "md5": "5faf7c61a40f008c291a1614bc950e96",
                "sha256": "9a38f213e887c273ba14f563980f15b620bf600576d3ba530dd12416004dcd33"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5faf7c61a40f008c291a1614bc950e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 92498,
            "upload_time": "2025-07-25T20:30:14",
            "upload_time_iso_8601": "2025-07-25T20:30:14.747192Z",
            "url": "https://files.pythonhosted.org/packages/5b/df/debe55bf6edc34ed0572ea716d9c58c5e42d76df028cda63c86f54445fff/maxminddb-2.8.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5eccb0ee8e3807e5adeb7cb9cea6d59f5e3fe63001ca70b9a96ab5bdc7964160",
                "md5": "b4c5ed34b0999df39491f63e9db8d41a",
                "sha256": "a3fbf0d36cb3fad3743cd2c522855577209c533a782c7176b4d54550928f6935"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4c5ed34b0999df39491f63e9db8d41a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 92466,
            "upload_time": "2025-07-25T20:30:16",
            "upload_time_iso_8601": "2025-07-25T20:30:16.478452Z",
            "url": "https://files.pythonhosted.org/packages/5e/cc/b0ee8e3807e5adeb7cb9cea6d59f5e3fe63001ca70b9a96ab5bdc7964160/maxminddb-2.8.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9ca7bfabf900ff7cadd5b8d5a259619bcb43d8fce4ef482c4d1a79c0e6f9998",
                "md5": "218cf1f2c8e8cf6735da8e635b88e2b6",
                "sha256": "b516e113564228ed1965a2454bba901a85984aef599b61e98ce743ce94c22a07"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "218cf1f2c8e8cf6735da8e635b88e2b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 90598,
            "upload_time": "2025-07-25T20:30:17",
            "upload_time_iso_8601": "2025-07-25T20:30:17.810877Z",
            "url": "https://files.pythonhosted.org/packages/c9/ca/7bfabf900ff7cadd5b8d5a259619bcb43d8fce4ef482c4d1a79c0e6f9998/maxminddb-2.8.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48d170dfb4cec8190e426f7576384d3adc64ef3bff5b3fd51805c2d49334434c",
                "md5": "2db1c699e40b8aa2e1db9faedcce44d6",
                "sha256": "c7fc5b3ea6b9a664712544738f14da256981031d0a951e590508a79f4d4a37d1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2db1c699e40b8aa2e1db9faedcce44d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 34595,
            "upload_time": "2025-07-25T20:30:19",
            "upload_time_iso_8601": "2025-07-25T20:30:19.362456Z",
            "url": "https://files.pythonhosted.org/packages/48/d1/70dfb4cec8190e426f7576384d3adc64ef3bff5b3fd51805c2d49334434c/maxminddb-2.8.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e00c3633d901e0bd90933cde5b2b7200ea22f52becb882a474babd9a10031432",
                "md5": "123d7a568bd6cddf47736d99b809923d",
                "sha256": "590399b8c6b41aaf42385da412bb0c0690c3db2720fb3a6e7d6967aecc4342ad"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "123d7a568bd6cddf47736d99b809923d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 36671,
            "upload_time": "2025-07-25T20:30:20",
            "upload_time_iso_8601": "2025-07-25T20:30:20.734310Z",
            "url": "https://files.pythonhosted.org/packages/e0/0c/3633d901e0bd90933cde5b2b7200ea22f52becb882a474babd9a10031432/maxminddb-2.8.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbf3810af19728d1f834d42e7b585301f4842f386c0baa5c61d9c99ee18772da",
                "md5": "8214c8a640b3df30639e57f947656394",
                "sha256": "f63d07b6a6d402548f153e0cc31fd21ddd7825a457d4da6205fef6b9211361d8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "8214c8a640b3df30639e57f947656394",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 33037,
            "upload_time": "2025-07-25T20:30:21",
            "upload_time_iso_8601": "2025-07-25T20:30:21.813293Z",
            "url": "https://files.pythonhosted.org/packages/cb/f3/810af19728d1f834d42e7b585301f4842f386c0baa5c61d9c99ee18772da/maxminddb-2.8.2-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5845ff56248fbaaca9383d18d73aee60a544f0282d71e54af0bf0dea4128fda5",
                "md5": "a5c3220736b7b2083a3dc25c97f011e2",
                "sha256": "bcfb9bc5e31875dd6c1e2de9d748ce403ca5d5d4bc6167973bb0b1bd294bf8d7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "a5c3220736b7b2083a3dc25c97f011e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 52615,
            "upload_time": "2025-07-25T20:30:23",
            "upload_time_iso_8601": "2025-07-25T20:30:23.369627Z",
            "url": "https://files.pythonhosted.org/packages/58/45/ff56248fbaaca9383d18d73aee60a544f0282d71e54af0bf0dea4128fda5/maxminddb-2.8.2-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79442703121c2dbba7d03c37294dd407cca2e31dc4542543b93808dd26fd144b",
                "md5": "83b73dd58b884acb94ab91ccaa56d060",
                "sha256": "e12bec7f672af46e2177e7c1cd5d330eb969f0dc42f672e250b3d5d72e61778d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83b73dd58b884acb94ab91ccaa56d060",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 35394,
            "upload_time": "2025-07-25T20:30:24",
            "upload_time_iso_8601": "2025-07-25T20:30:24.550374Z",
            "url": "https://files.pythonhosted.org/packages/79/44/2703121c2dbba7d03c37294dd407cca2e31dc4542543b93808dd26fd144b/maxminddb-2.8.2-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c22599e999e630b1a44936c5261827cc94def5eec82ae57a667a76d641b93925",
                "md5": "704b8c805522577bde05ed74a2e64204",
                "sha256": "b23103a754ff1e795d6e107ae23bf9b3360bce9e9bff08c58e388dc2f3fd85ad"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "704b8c805522577bde05ed74a2e64204",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 35177,
            "upload_time": "2025-07-25T20:30:26",
            "upload_time_iso_8601": "2025-07-25T20:30:26.105149Z",
            "url": "https://files.pythonhosted.org/packages/c2/25/99e999e630b1a44936c5261827cc94def5eec82ae57a667a76d641b93925/maxminddb-2.8.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "412105c8f50c1b4138516f2bde2810d32c97b84c6d0aefe7e1a1b41635241041",
                "md5": "6f0cc829c47ea85e238f528e8d0a5319",
                "sha256": "1c4a10cb799ed3449d063883df962b76b55fdfe0756dfa82eed9765d95e8fd6e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6f0cc829c47ea85e238f528e8d0a5319",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 96062,
            "upload_time": "2025-07-25T20:30:27",
            "upload_time_iso_8601": "2025-07-25T20:30:27.330608Z",
            "url": "https://files.pythonhosted.org/packages/41/21/05c8f50c1b4138516f2bde2810d32c97b84c6d0aefe7e1a1b41635241041/maxminddb-2.8.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "667aba7995d1f6b405c057e6f4bd5751fe667535b0ba84f65ee6eb1493bccb80",
                "md5": "1a831f5e8e872bf9366bb9d72719851e",
                "sha256": "6315977c0512cb7d982bc2eb869355a168f12ef6d2bd5a4f2c93148bc3c03fdc"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a831f5e8e872bf9366bb9d72719851e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 94208,
            "upload_time": "2025-07-25T20:30:28",
            "upload_time_iso_8601": "2025-07-25T20:30:28.932648Z",
            "url": "https://files.pythonhosted.org/packages/66/7a/ba7995d1f6b405c057e6f4bd5751fe667535b0ba84f65ee6eb1493bccb80/maxminddb-2.8.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "996f11cc4b0f1d7f98965ef3304bd9bf2c587f5e84b99aeac27891f5661565cb",
                "md5": "2f33feffd138293f53b66e18be870930",
                "sha256": "9b24594f04d03855687b8166ee2c7b788f1e1836b4c5fef2e55fc19327f507ac"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f33feffd138293f53b66e18be870930",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 93448,
            "upload_time": "2025-07-25T20:30:30",
            "upload_time_iso_8601": "2025-07-25T20:30:30.438476Z",
            "url": "https://files.pythonhosted.org/packages/99/6f/11cc4b0f1d7f98965ef3304bd9bf2c587f5e84b99aeac27891f5661565cb/maxminddb-2.8.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aed531664be079b71b30895875d6781ae08f871d67de04e518c64422271a8b25",
                "md5": "72dc7f12a3e0485428ea7008e411a351",
                "sha256": "b07b72d9297179c74344aaecad48c88dfdea4422e16721b5955015800d865da2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72dc7f12a3e0485428ea7008e411a351",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 92240,
            "upload_time": "2025-07-25T20:30:31",
            "upload_time_iso_8601": "2025-07-25T20:30:31.658083Z",
            "url": "https://files.pythonhosted.org/packages/ae/d5/31664be079b71b30895875d6781ae08f871d67de04e518c64422271a8b25/maxminddb-2.8.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a419a5931bb077ccb7e719b8a602fb3ffcd577cdd4954cae3d2b9201272cd462",
                "md5": "4cdf359ecca730560963fb64214e8897",
                "sha256": "51d9717354ee7aa02d52c15115fec2d29bb33f31d6c9f5a8a5aaa2c25dc66e63"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4cdf359ecca730560963fb64214e8897",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 34751,
            "upload_time": "2025-07-25T20:30:32",
            "upload_time_iso_8601": "2025-07-25T20:30:32.883381Z",
            "url": "https://files.pythonhosted.org/packages/a4/19/a5931bb077ccb7e719b8a602fb3ffcd577cdd4954cae3d2b9201272cd462/maxminddb-2.8.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "635025720ed19f2d62440b94a1333656cccf6c3c1ce2527ed9abf7b35e2557e1",
                "md5": "804690197f18740c04d5e1c830edddac",
                "sha256": "18132ccd77ad68863b9022451655cbe1e8fc3c973bafcad66a252eff2732a5c1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "804690197f18740c04d5e1c830edddac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 36782,
            "upload_time": "2025-07-25T20:30:34",
            "upload_time_iso_8601": "2025-07-25T20:30:34.378915Z",
            "url": "https://files.pythonhosted.org/packages/63/50/25720ed19f2d62440b94a1333656cccf6c3c1ce2527ed9abf7b35e2557e1/maxminddb-2.8.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f301c3121365114678d8df4c02fd416d7520c86b1e37708cc7134ccc3c06e78",
                "md5": "90588212bcc23421ab9e4468c2d6a4d2",
                "sha256": "59934eb00274f8b7860927f470a2b9b049842f91e2524a24ade99e16755320f2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "90588212bcc23421ab9e4468c2d6a4d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 33040,
            "upload_time": "2025-07-25T20:30:35",
            "upload_time_iso_8601": "2025-07-25T20:30:35.474378Z",
            "url": "https://files.pythonhosted.org/packages/9f/30/1c3121365114678d8df4c02fd416d7520c86b1e37708cc7134ccc3c06e78/maxminddb-2.8.2-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb3306d8d8eb2e422bbff372628c23ce09a2d51f50b9283449c5d8cef0225fe3",
                "md5": "d64b8c32db66f3027736a99c62da8b45",
                "sha256": "b32a8b61e0dae09c80f41dcd6dc4a442a3cc94b7874a18931daecfea274f640c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-android_21_arm64_v8a.whl",
            "has_sig": false,
            "md5_digest": "d64b8c32db66f3027736a99c62da8b45",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 36642,
            "upload_time": "2025-07-25T20:30:36",
            "upload_time_iso_8601": "2025-07-25T20:30:36.627830Z",
            "url": "https://files.pythonhosted.org/packages/bb/33/06d8d8eb2e422bbff372628c23ce09a2d51f50b9283449c5d8cef0225fe3/maxminddb-2.8.2-cp313-cp313-android_21_arm64_v8a.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41c1dca3608b85d3889760bdf98e931ac66e236f9b8da640f47461c8549fe931",
                "md5": "27abf56ccfd38dae9976b3c2b8a064df",
                "sha256": "5f12674cee687cd41c9be1c9ab806bd6a777864e762d5f34ec57c0afa9a21411"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-android_21_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27abf56ccfd38dae9976b3c2b8a064df",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 37052,
            "upload_time": "2025-07-25T20:30:37",
            "upload_time_iso_8601": "2025-07-25T20:30:37.912974Z",
            "url": "https://files.pythonhosted.org/packages/41/c1/dca3608b85d3889760bdf98e931ac66e236f9b8da640f47461c8549fe931/maxminddb-2.8.2-cp313-cp313-android_21_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1e03af26974a2c267939c394d6481723021bdb67af570f948cf510f80e6aeb1",
                "md5": "ede8ba36d4be09eed1b077c737072f87",
                "sha256": "995a506a02f70a33ba5ee9f73ce737ef8cdb219bfca3177db79622ebc5624057"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl",
            "has_sig": false,
            "md5_digest": "ede8ba36d4be09eed1b077c737072f87",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 34381,
            "upload_time": "2025-07-25T20:30:39",
            "upload_time_iso_8601": "2025-07-25T20:30:39.363071Z",
            "url": "https://files.pythonhosted.org/packages/c1/e0/3af26974a2c267939c394d6481723021bdb67af570f948cf510f80e6aeb1/maxminddb-2.8.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28ce26e06d888f057f98b4bc269ee0f8d0ede3dad9684d38e4033acc444b08e5",
                "md5": "6c09d0554b2e3f92620d8f2c006d9668",
                "sha256": "5ef9b7f106a1e9ee08f47cd98f7ae80fa40fc0fd40d97cf0d011266738847b52"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl",
            "has_sig": false,
            "md5_digest": "6c09d0554b2e3f92620d8f2c006d9668",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 34918,
            "upload_time": "2025-07-25T20:30:40",
            "upload_time_iso_8601": "2025-07-25T20:30:40.512493Z",
            "url": "https://files.pythonhosted.org/packages/28/ce/26e06d888f057f98b4bc269ee0f8d0ede3dad9684d38e4033acc444b08e5/maxminddb-2.8.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ca20e23f5c33461d1d43d201f2c741c6318d658907833d22cec4ee475d6fab8",
                "md5": "d5e87a271baccb4603b94dff733ec3bf",
                "sha256": "adeceeb591755b36a0dc544b92f6d80fc5c112519f5ed8211c34d2ad796bfac0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "d5e87a271baccb4603b94dff733ec3bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 52619,
            "upload_time": "2025-07-25T20:30:41",
            "upload_time_iso_8601": "2025-07-25T20:30:41.645649Z",
            "url": "https://files.pythonhosted.org/packages/0c/a2/0e23f5c33461d1d43d201f2c741c6318d658907833d22cec4ee475d6fab8/maxminddb-2.8.2-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9ec3a69a57a9ba4c7d62105fe235642f744bf4ef7cd057f8019a14b1b8eea6d",
                "md5": "fe3fb6a9140c46350962a6b21c3fb7f3",
                "sha256": "5c8df08cbdafaa04f7d36a0506e342e4cd679587b56b0fad065b4777e94c8065"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe3fb6a9140c46350962a6b21c3fb7f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 35399,
            "upload_time": "2025-07-25T20:30:42",
            "upload_time_iso_8601": "2025-07-25T20:30:42.804385Z",
            "url": "https://files.pythonhosted.org/packages/d9/ec/3a69a57a9ba4c7d62105fe235642f744bf4ef7cd057f8019a14b1b8eea6d/maxminddb-2.8.2-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30b3b904e778e347ed40e5c82717609e1ecdcdff6c7d7ea2f844a6a20578daef",
                "md5": "203a2ea91b2a0327e8ffe86bba70ae64",
                "sha256": "3e982112e239925c2d8739f834c71539947e54747e56e66c6d960ac356432f32"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "203a2ea91b2a0327e8ffe86bba70ae64",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 35165,
            "upload_time": "2025-07-25T20:30:45",
            "upload_time_iso_8601": "2025-07-25T20:30:45.534010Z",
            "url": "https://files.pythonhosted.org/packages/30/b3/b904e778e347ed40e5c82717609e1ecdcdff6c7d7ea2f844a6a20578daef/maxminddb-2.8.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34da685eeae2ad155d970efabad5ca86ed745665a2ff7576d8fa3d9b9bdb7f8a",
                "md5": "ae205e3811bb4da187037f4ed3a33e82",
                "sha256": "5ef30c32af0107e6b0b9d53f9ae949cf74ddb6882025054bd7500a7b1eb02ec0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae205e3811bb4da187037f4ed3a33e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 96127,
            "upload_time": "2025-07-25T20:30:46",
            "upload_time_iso_8601": "2025-07-25T20:30:46.716593Z",
            "url": "https://files.pythonhosted.org/packages/34/da/685eeae2ad155d970efabad5ca86ed745665a2ff7576d8fa3d9b9bdb7f8a/maxminddb-2.8.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd24a7f54b2b6d808cc4dd485adc004fcd66e103d0aacbf448afd419c0c18380",
                "md5": "bff5acdc20af55c4c947948cc3cdea24",
                "sha256": "685df893f44606dcb1353b31762b18a2a9537015f1b9e7c0bb3ae74c9fbced32"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bff5acdc20af55c4c947948cc3cdea24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 94250,
            "upload_time": "2025-07-25T20:30:48",
            "upload_time_iso_8601": "2025-07-25T20:30:48.450753Z",
            "url": "https://files.pythonhosted.org/packages/fd/24/a7f54b2b6d808cc4dd485adc004fcd66e103d0aacbf448afd419c0c18380/maxminddb-2.8.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ecbbbc5c11201497d7dd42d3240141a8ec484ff704afdf6dff7a7a2de5a6291",
                "md5": "aeef9d4f53d0b8f5b97dc2ea76d0b108",
                "sha256": "e3dc27c443cf27b35d4d77ff90fbc6caf1c4e28cffd967775b11cf993af5b9d1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aeef9d4f53d0b8f5b97dc2ea76d0b108",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 93399,
            "upload_time": "2025-07-25T20:30:50",
            "upload_time_iso_8601": "2025-07-25T20:30:50.052464Z",
            "url": "https://files.pythonhosted.org/packages/6e/cb/bbc5c11201497d7dd42d3240141a8ec484ff704afdf6dff7a7a2de5a6291/maxminddb-2.8.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8e6521c750ea7480fbe362b7bb2821937544313fd3b697f30f4c1975b85c816",
                "md5": "35e3302f3160e28329c59a0b93a0c003",
                "sha256": "742e857b4411ae3d59c555c2aa96856f72437374cf668c3bed18647092584af6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35e3302f3160e28329c59a0b93a0c003",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 92250,
            "upload_time": "2025-07-25T20:30:51",
            "upload_time_iso_8601": "2025-07-25T20:30:51.259553Z",
            "url": "https://files.pythonhosted.org/packages/c8/e6/521c750ea7480fbe362b7bb2821937544313fd3b697f30f4c1975b85c816/maxminddb-2.8.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c24b9a522ba96a48882c7a954636411f05994573af2eed4b93b511ca6ea3d023",
                "md5": "14499c61ed1f66583ae6ed0129285a07",
                "sha256": "1fba9c16f5e492eee16362e8204aaec30241167a3466874ca9b0521dec32d63e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "14499c61ed1f66583ae6ed0129285a07",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 34759,
            "upload_time": "2025-07-25T20:30:52",
            "upload_time_iso_8601": "2025-07-25T20:30:52.936300Z",
            "url": "https://files.pythonhosted.org/packages/c2/4b/9a522ba96a48882c7a954636411f05994573af2eed4b93b511ca6ea3d023/maxminddb-2.8.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e84ae0d7451b56821fe0ec794a917cceb67efac8510013783cc5713b733d5ff4",
                "md5": "763cbfc41a248da03c8cd39a306821b7",
                "sha256": "cfbfee615d2566124cb6232401d89f15609f5297eb4f022f1f6a14205c091df6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "763cbfc41a248da03c8cd39a306821b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 36771,
            "upload_time": "2025-07-25T20:30:54",
            "upload_time_iso_8601": "2025-07-25T20:30:54.076018Z",
            "url": "https://files.pythonhosted.org/packages/e8/4a/e0d7451b56821fe0ec794a917cceb67efac8510013783cc5713b733d5ff4/maxminddb-2.8.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7127abffb686514905994ef26191971ca30765c45e391d82ee2ea6b2ecfe1bad",
                "md5": "f1fd1ee250a6311802811b0dc0785c88",
                "sha256": "2ade954d94087039fc45de99eeae0e2f0480d69a767abd417bd0742bf5d177ab"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f1fd1ee250a6311802811b0dc0785c88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 33041,
            "upload_time": "2025-07-25T20:30:55",
            "upload_time_iso_8601": "2025-07-25T20:30:55.567240Z",
            "url": "https://files.pythonhosted.org/packages/71/27/abffb686514905994ef26191971ca30765c45e391d82ee2ea6b2ecfe1bad/maxminddb-2.8.2-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03d2844530632ef917f622742d6d5beae5c3ebed7d424af02bf428b639e42a41",
                "md5": "9ba8fdc684f456cee807e472e898fe13",
                "sha256": "7d5db6d4f8caaf7b753a0f6782765ea5352409ef6d430196b0dc7c61c0a8c72b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl",
            "has_sig": false,
            "md5_digest": "9ba8fdc684f456cee807e472e898fe13",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 34384,
            "upload_time": "2025-07-25T20:30:57",
            "upload_time_iso_8601": "2025-07-25T20:30:57.046409Z",
            "url": "https://files.pythonhosted.org/packages/03/d2/844530632ef917f622742d6d5beae5c3ebed7d424af02bf428b639e42a41/maxminddb-2.8.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee6cff9555963983d99a201a5068ab037c92583cd8422046d7064e2cab92c09f",
                "md5": "3ae17b7515c4391df04338fb1c1f7e23",
                "sha256": "bda6015f617b4ec6f1a49ae74b1a36c10d997602d3e9141514ef11983e6ddf8d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl",
            "has_sig": false,
            "md5_digest": "3ae17b7515c4391df04338fb1c1f7e23",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 34929,
            "upload_time": "2025-07-25T20:30:58",
            "upload_time_iso_8601": "2025-07-25T20:30:58.194919Z",
            "url": "https://files.pythonhosted.org/packages/ee/6c/ff9555963983d99a201a5068ab037c92583cd8422046d7064e2cab92c09f/maxminddb-2.8.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aac28d093e973edb1ca0ad54a80f124b4e8d1db5508a00c0f98765d0df6bd4d5",
                "md5": "0114a62d67e077288546bee1b5abb637",
                "sha256": "4e32f5608af05bc0b6cee91edd0698f6a310ae9dd0f3cebfb524a6b444c003a2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "0114a62d67e077288546bee1b5abb637",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 52616,
            "upload_time": "2025-07-25T20:30:59",
            "upload_time_iso_8601": "2025-07-25T20:30:59.294682Z",
            "url": "https://files.pythonhosted.org/packages/aa/c2/8d093e973edb1ca0ad54a80f124b4e8d1db5508a00c0f98765d0df6bd4d5/maxminddb-2.8.2-cp314-cp314-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d858442162353c28ff0679f348d2099f24d9be9b84f9ffa1ed21e8ecafe64dc",
                "md5": "f78d274efc648b43a476a2cf8a8cc981",
                "sha256": "5abf18c51f3a3e5590ea77d43bff159a9f88cec1f95a7e3fc2a39a21fc8f9e7c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f78d274efc648b43a476a2cf8a8cc981",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 35405,
            "upload_time": "2025-07-25T20:31:00",
            "upload_time_iso_8601": "2025-07-25T20:31:00.821814Z",
            "url": "https://files.pythonhosted.org/packages/5d/85/8442162353c28ff0679f348d2099f24d9be9b84f9ffa1ed21e8ecafe64dc/maxminddb-2.8.2-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14dff37d5b2605ae0f1d3f87d45ddbab032f36b2cae29f80f02c390001b35677",
                "md5": "385438e7da51cd4d4f696b5f251a804c",
                "sha256": "3c8d57063ff2c6d0690e5d907a10b5b6ba64e0ab5e6d8661b6075fbda854e97d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "385438e7da51cd4d4f696b5f251a804c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 35174,
            "upload_time": "2025-07-25T20:31:02",
            "upload_time_iso_8601": "2025-07-25T20:31:02.112243Z",
            "url": "https://files.pythonhosted.org/packages/14/df/f37d5b2605ae0f1d3f87d45ddbab032f36b2cae29f80f02c390001b35677/maxminddb-2.8.2-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32125d562de6243b8631f9480b7deac92cb62ec5ae8aecd4e3ccdaecfc177c24",
                "md5": "14e5df052f635418f0469faf66c6f7a6",
                "sha256": "73d603c7202e1338bdbb3ead8a3db4f74825e419ecc8733ef8a76c14366800d2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14e5df052f635418f0469faf66c6f7a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 96060,
            "upload_time": "2025-07-25T20:31:03",
            "upload_time_iso_8601": "2025-07-25T20:31:03.318642Z",
            "url": "https://files.pythonhosted.org/packages/32/12/5d562de6243b8631f9480b7deac92cb62ec5ae8aecd4e3ccdaecfc177c24/maxminddb-2.8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a9504c8c2526e4c0c0d2894052c7d07f39c9b8d1185bd2da5752de2effc287a",
                "md5": "8d17a0f4dbcde4e3ec89bcf83cf0b7b0",
                "sha256": "acca37ed0372efa01251da32db1a5d81189369449bc4b943d3087ebc9e30e814"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d17a0f4dbcde4e3ec89bcf83cf0b7b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 94013,
            "upload_time": "2025-07-25T20:31:04",
            "upload_time_iso_8601": "2025-07-25T20:31:04.592086Z",
            "url": "https://files.pythonhosted.org/packages/3a/95/04c8c2526e4c0c0d2894052c7d07f39c9b8d1185bd2da5752de2effc287a/maxminddb-2.8.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7987870de3e5cf362c567c0a9cf7a8834d3699fe0a52e601fc352c902d3ebc7",
                "md5": "e34b40a228f777da48817472daf03947",
                "sha256": "1e1e3ef04a686cf7d893a8274ddc0081bd40121ac4923b67e8caa902094ac111"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e34b40a228f777da48817472daf03947",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 93350,
            "upload_time": "2025-07-25T20:31:05",
            "upload_time_iso_8601": "2025-07-25T20:31:05.815102Z",
            "url": "https://files.pythonhosted.org/packages/c7/98/7870de3e5cf362c567c0a9cf7a8834d3699fe0a52e601fc352c902d3ebc7/maxminddb-2.8.2-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3ef7eb25529011cf0e18fb529792ad5225b402a3e80728cfbd7604e53c5ada3",
                "md5": "84083efa40d621fbd2f563e469c31c4f",
                "sha256": "c6657615038d8fe106acccd2bf4fe073d07f72886ee893725c74649687635a1a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84083efa40d621fbd2f563e469c31c4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 92036,
            "upload_time": "2025-07-25T20:31:07",
            "upload_time_iso_8601": "2025-07-25T20:31:07.030056Z",
            "url": "https://files.pythonhosted.org/packages/e3/ef/7eb25529011cf0e18fb529792ad5225b402a3e80728cfbd7604e53c5ada3/maxminddb-2.8.2-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb43e49927eb381fb44c9a06a5ac06da039951fde90bf47f100b495f082d6b37",
                "md5": "27ca90ab1941abf0c31e6392f0759600",
                "sha256": "b40ed2ec586a5a479d08bd39838fbfbdff84d7deb57089317f312609f1357384"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "27ca90ab1941abf0c31e6392f0759600",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 53708,
            "upload_time": "2025-07-25T20:31:11",
            "upload_time_iso_8601": "2025-07-25T20:31:11.642653Z",
            "url": "https://files.pythonhosted.org/packages/eb/43/e49927eb381fb44c9a06a5ac06da039951fde90bf47f100b495f082d6b37/maxminddb-2.8.2-cp314-cp314t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bd0ff081ac508358b3a9ca1f0b39d5bf74904aa644b45d2d6d8b9112ad9566e",
                "md5": "908985df005fa9ce8d92e8b695734dc3",
                "sha256": "1ba4036f823a8e6418af0d69734fb176e3d1edd0432e218f3be8362564b53ea5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "908985df005fa9ce8d92e8b695734dc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 35925,
            "upload_time": "2025-07-25T20:31:12",
            "upload_time_iso_8601": "2025-07-25T20:31:12.804524Z",
            "url": "https://files.pythonhosted.org/packages/8b/d0/ff081ac508358b3a9ca1f0b39d5bf74904aa644b45d2d6d8b9112ad9566e/maxminddb-2.8.2-cp314-cp314t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc30f94d3acca0314f038a4f1cb83ccbdf0a56b9f13454bab9667af0506ecca0",
                "md5": "27f5c7711490c6e8c095c8acade9705d",
                "sha256": "96531e18bddff9639061ee543417f941a2fd41efc7b1699e1e18aba4157b0b03"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "27f5c7711490c6e8c095c8acade9705d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 35757,
            "upload_time": "2025-07-25T20:31:14",
            "upload_time_iso_8601": "2025-07-25T20:31:14.322064Z",
            "url": "https://files.pythonhosted.org/packages/bc/30/f94d3acca0314f038a4f1cb83ccbdf0a56b9f13454bab9667af0506ecca0/maxminddb-2.8.2-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0215710a5aa7f83453fcf36cee11ed113c110a53cdc5a4ecf82904be797101b",
                "md5": "d41198a9c8448950611beeed33cc9d9b",
                "sha256": "bb77ad5c585d6255001d701eafc4758e2d28953ba47510d9f54cc2a9e469c6b6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d41198a9c8448950611beeed33cc9d9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 104991,
            "upload_time": "2025-07-25T20:31:15",
            "upload_time_iso_8601": "2025-07-25T20:31:15.542635Z",
            "url": "https://files.pythonhosted.org/packages/b0/21/5710a5aa7f83453fcf36cee11ed113c110a53cdc5a4ecf82904be797101b/maxminddb-2.8.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "470c8cf559f850c3e43e6f490fad458293fdb0b70debbe3fcbf7d7713558044f",
                "md5": "f477ad119629d9f9fd7491fc882f817d",
                "sha256": "3bfd950af416ef4133bc04b059f29ac4d4b356927fa4a500048220d65ec4c6ac"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f477ad119629d9f9fd7491fc882f817d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 101935,
            "upload_time": "2025-07-25T20:31:16",
            "upload_time_iso_8601": "2025-07-25T20:31:16.830046Z",
            "url": "https://files.pythonhosted.org/packages/47/0c/8cf559f850c3e43e6f490fad458293fdb0b70debbe3fcbf7d7713558044f/maxminddb-2.8.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0247104ef451772d1cd852dea2334c2dfb02d6de7caf8d31e1358f10b9af6769",
                "md5": "e6d28f9832b12b1c39b4c97fa113fa68",
                "sha256": "3bf73612f8fbfa9181ba62fa88fb3d732bdc775017bdb3725e24cdd1a0da92d4"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e6d28f9832b12b1c39b4c97fa113fa68",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 101653,
            "upload_time": "2025-07-25T20:31:18",
            "upload_time_iso_8601": "2025-07-25T20:31:18.104013Z",
            "url": "https://files.pythonhosted.org/packages/02/47/104ef451772d1cd852dea2334c2dfb02d6de7caf8d31e1358f10b9af6769/maxminddb-2.8.2-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6003139791f82e3857d4d0638494647f74d997a2abded7048ab4ed4622a089ad",
                "md5": "4d6aff013446c656815a91243bf059c6",
                "sha256": "74361fbddb0566970af38cff0a6256ec3f445cb5031da486d0cee6f19ccb9e2e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d6aff013446c656815a91243bf059c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 99517,
            "upload_time": "2025-07-25T20:31:19",
            "upload_time_iso_8601": "2025-07-25T20:31:19.764882Z",
            "url": "https://files.pythonhosted.org/packages/60/03/139791f82e3857d4d0638494647f74d997a2abded7048ab4ed4622a089ad/maxminddb-2.8.2-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c45c625fc2b84b8dcf2181eb411f130729446164215409c8e0c8fd01a53f388",
                "md5": "85335b29ac5eb0b21846b2d50800e839",
                "sha256": "6bfb41c3a560a60fc20d0d87cb400003974fbb833b44571250476c2d9cb4d407"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "85335b29ac5eb0b21846b2d50800e839",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 36349,
            "upload_time": "2025-07-25T20:31:21",
            "upload_time_iso_8601": "2025-07-25T20:31:21.004411Z",
            "url": "https://files.pythonhosted.org/packages/4c/45/c625fc2b84b8dcf2181eb411f130729446164215409c8e0c8fd01a53f388/maxminddb-2.8.2-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "278d46c202be273fd8ec985686e1fdd84ad55c7234dc66d82d6d59e5caf438e4",
                "md5": "235f4b6dd315c4cdc69771a2b6d24c77",
                "sha256": "ec6bba1b1f0fd0846aac5b0af1f84804c67702e873aa9d79c9965794a635ada8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "235f4b6dd315c4cdc69771a2b6d24c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 38595,
            "upload_time": "2025-07-25T20:31:22",
            "upload_time_iso_8601": "2025-07-25T20:31:22.185860Z",
            "url": "https://files.pythonhosted.org/packages/27/8d/46c202be273fd8ec985686e1fdd84ad55c7234dc66d82d6d59e5caf438e4/maxminddb-2.8.2-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "623309601f476fd9d494e967f15c1e05aa1e35bdf5ee54555596e05e5c9ec8c9",
                "md5": "4ad7ed37ebd2ecbd0415b5ae2bf00ada",
                "sha256": "929a00528db82ffa5aa928a9cd1a972e8f93c36243609c25574dfd920c21533b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ad7ed37ebd2ecbd0415b5ae2bf00ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 33990,
            "upload_time": "2025-07-25T20:31:23",
            "upload_time_iso_8601": "2025-07-25T20:31:23.367460Z",
            "url": "https://files.pythonhosted.org/packages/62/33/09601f476fd9d494e967f15c1e05aa1e35bdf5ee54555596e05e5c9ec8c9/maxminddb-2.8.2-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c9d12926eac198a920a2c4f9ce6e57de33d47a6c40ccb1637362abfd268f017",
                "md5": "bec887b2cd469c628eeff87de9485c0c",
                "sha256": "af058500ab3448b709c43f1aefd3d9f7c5f1773af07611d589502ea78bf2b9dc"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "bec887b2cd469c628eeff87de9485c0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 35403,
            "upload_time": "2025-07-25T20:31:08",
            "upload_time_iso_8601": "2025-07-25T20:31:08.221130Z",
            "url": "https://files.pythonhosted.org/packages/0c/9d/12926eac198a920a2c4f9ce6e57de33d47a6c40ccb1637362abfd268f017/maxminddb-2.8.2-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6eb48636b611f604bb072b26be16e6990694bbfdd57553622a784b17c1999c7",
                "md5": "22211d6f4458550556e2c58772746f76",
                "sha256": "b5982d1b53b50b96a9afcf4f7f49db0a842501f9cf58c4c16c0d62c1b0d22840"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22211d6f4458550556e2c58772746f76",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 37559,
            "upload_time": "2025-07-25T20:31:09",
            "upload_time_iso_8601": "2025-07-25T20:31:09.448727Z",
            "url": "https://files.pythonhosted.org/packages/c6/eb/48636b611f604bb072b26be16e6990694bbfdd57553622a784b17c1999c7/maxminddb-2.8.2-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "054a27e53d1b9b7b168f259bbfccec1d1383d51c07e112d7bd24e543042e07a1",
                "md5": "99b13d5c54a66f16708cf871c90af193",
                "sha256": "48c9f7e182c6e970a412c02e7438c2a66197c0664d0c7da81b951bff86519dd5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "99b13d5c54a66f16708cf871c90af193",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 33614,
            "upload_time": "2025-07-25T20:31:10",
            "upload_time_iso_8601": "2025-07-25T20:31:10.555689Z",
            "url": "https://files.pythonhosted.org/packages/05/4a/27e53d1b9b7b168f259bbfccec1d1383d51c07e112d7bd24e543042e07a1/maxminddb-2.8.2-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39e3238393797fd82c34c54990c4d4546ae34315735c9219fe7e0c8d2a3d74ee",
                "md5": "29902207e417fb434ceed6097783c730",
                "sha256": "9b27485e54eee7c251846cfc3b3277b1fdbdae6b6bbc26015c360de7ce78ae33"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "29902207e417fb434ceed6097783c730",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 52244,
            "upload_time": "2025-07-25T20:31:24",
            "upload_time_iso_8601": "2025-07-25T20:31:24.521744Z",
            "url": "https://files.pythonhosted.org/packages/39/e3/238393797fd82c34c54990c4d4546ae34315735c9219fe7e0c8d2a3d74ee/maxminddb-2.8.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8587c9c1d53a8b23cc00ce310c803bd54dfda3f10544f04f3faf2c4d1f0321c3",
                "md5": "327c0d2f67bf9f758deab3e84d7265db",
                "sha256": "c335db4abdd79e3846deb2aa72374284eae78bb2622a82a29c5fd7dd42741a11"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "327c0d2f67bf9f758deab3e84d7265db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 35199,
            "upload_time": "2025-07-25T20:31:25",
            "upload_time_iso_8601": "2025-07-25T20:31:25.782205Z",
            "url": "https://files.pythonhosted.org/packages/85/87/c9c1d53a8b23cc00ce310c803bd54dfda3f10544f04f3faf2c4d1f0321c3/maxminddb-2.8.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53b90b119b8ca2b0116d7f09efb24d8cf680ef20943d7995d804acf179b89b38",
                "md5": "ab7bcad99a72c7de2df950dd22ce1897",
                "sha256": "c6ff6b84327bb4521068ab6e62f6b537641d106b1acabbdc6436ab7a74ce1328"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ab7bcad99a72c7de2df950dd22ce1897",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 35002,
            "upload_time": "2025-07-25T20:31:27",
            "upload_time_iso_8601": "2025-07-25T20:31:27.009623Z",
            "url": "https://files.pythonhosted.org/packages/53/b9/0b119b8ca2b0116d7f09efb24d8cf680ef20943d7995d804acf179b89b38/maxminddb-2.8.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "273d6a97e72bebc2d2947554b69a68203fa352c0868aa7f2fff0b98736217bc2",
                "md5": "c1ac53873aaaf36050d74e1df3e8928c",
                "sha256": "7dccb69b63aac9b9b7c5f251e9abc0c945c9bd1681869ca72b7e6f512009b541"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c1ac53873aaaf36050d74e1df3e8928c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 94459,
            "upload_time": "2025-07-25T20:31:28",
            "upload_time_iso_8601": "2025-07-25T20:31:28.613787Z",
            "url": "https://files.pythonhosted.org/packages/27/3d/6a97e72bebc2d2947554b69a68203fa352c0868aa7f2fff0b98736217bc2/maxminddb-2.8.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f1b3576d131f6d77288036a314551511b66d0ae0d56a1cba0fc86b145d7a419",
                "md5": "3a0ec2184bb06366374f8aa643e9ee68",
                "sha256": "9efa8a04f546f3c91a235256d61f2985f0a45bb1ec3559bbb551906c015d9464"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a0ec2184bb06366374f8aa643e9ee68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 92076,
            "upload_time": "2025-07-25T20:31:29",
            "upload_time_iso_8601": "2025-07-25T20:31:29.919806Z",
            "url": "https://files.pythonhosted.org/packages/2f/1b/3576d131f6d77288036a314551511b66d0ae0d56a1cba0fc86b145d7a419/maxminddb-2.8.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8484636a728c0df7de1a1df21ae55512b421e9c156c27c48bfe3f96e727038ba",
                "md5": "e9c231a0c4968bd76529679824c9ff6b",
                "sha256": "5853b9f1fb4fc2b394b6ddce33a0be6711b80c8df86498a6e9e90057f0e7276f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9c231a0c4968bd76529679824c9ff6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 91981,
            "upload_time": "2025-07-25T20:31:31",
            "upload_time_iso_8601": "2025-07-25T20:31:31.587616Z",
            "url": "https://files.pythonhosted.org/packages/84/84/636a728c0df7de1a1df21ae55512b421e9c156c27c48bfe3f96e727038ba/maxminddb-2.8.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14dac98f2e60398f1c0070fa5ac134230014cd6b9a05080316474add4d2ad88a",
                "md5": "66b80de2d11d34a355dc2492a95f7a8a",
                "sha256": "0d39044f19696a3bca319539c8cd159c3c5af99d1ee381da6e4b273b6a27c728"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66b80de2d11d34a355dc2492a95f7a8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 90179,
            "upload_time": "2025-07-25T20:31:33",
            "upload_time_iso_8601": "2025-07-25T20:31:33.914422Z",
            "url": "https://files.pythonhosted.org/packages/14/da/c98f2e60398f1c0070fa5ac134230014cd6b9a05080316474add4d2ad88a/maxminddb-2.8.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b71636012be72ac75910c93dd07c85c983e51d1f558da8064c38888e49b7f74c",
                "md5": "8ae6f843e8a094475c58b891fbf03ffb",
                "sha256": "56a84983debc7b8d9874c9c739106b860f9d4f120b0179085ffb500704c31266"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "8ae6f843e8a094475c58b891fbf03ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 34603,
            "upload_time": "2025-07-25T20:31:35",
            "upload_time_iso_8601": "2025-07-25T20:31:35.131425Z",
            "url": "https://files.pythonhosted.org/packages/b7/16/36012be72ac75910c93dd07c85c983e51d1f558da8064c38888e49b7f74c/maxminddb-2.8.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a97962d637834c86c15d98a813c76df5c6839c3445d19f90f6ffa8cf489dbf5c",
                "md5": "be402eb8a960ae778e78a141cef1d51c",
                "sha256": "2f754550d51c25233853cdcbae1ee384a2af9e3e422b54b992bd4cef6332f894"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be402eb8a960ae778e78a141cef1d51c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 36682,
            "upload_time": "2025-07-25T20:31:36",
            "upload_time_iso_8601": "2025-07-25T20:31:36.385219Z",
            "url": "https://files.pythonhosted.org/packages/a9/79/62d637834c86c15d98a813c76df5c6839c3445d19f90f6ffa8cf489dbf5c/maxminddb-2.8.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4964780cd9f6caa3c60f8d0d11fc102ef5f3283af656eec2cd581244ae96b8c",
                "md5": "96235dfc6e239d4527f925fe94e1b97c",
                "sha256": "1c319d257fa3e8225ec2eece0043687ad64bf3968de9432187376eb97c2ac6da"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "96235dfc6e239d4527f925fe94e1b97c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 33025,
            "upload_time": "2025-07-25T20:31:37",
            "upload_time_iso_8601": "2025-07-25T20:31:37.565066Z",
            "url": "https://files.pythonhosted.org/packages/d4/96/4780cd9f6caa3c60f8d0d11fc102ef5f3283af656eec2cd581244ae96b8c/maxminddb-2.8.2-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b946741e1945fc64f7cf5a5d399a15c673d5d30899480db17ddaea270c41f120",
                "md5": "0f1e319f6ffa6bd43e2d3d9c13255133",
                "sha256": "ed8d6742e66b119e66a658307bba5da32ba3f7e4e99a35a770dcf924e51326a5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f1e319f6ffa6bd43e2d3d9c13255133",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 34209,
            "upload_time": "2025-07-25T20:31:38",
            "upload_time_iso_8601": "2025-07-25T20:31:38.681094Z",
            "url": "https://files.pythonhosted.org/packages/b9/46/741e1945fc64f7cf5a5d399a15c673d5d30899480db17ddaea270c41f120/maxminddb-2.8.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "241378361b264ccc275c7e64a3ba29951560d0231990bf64d03cd9cc6a561e67",
                "md5": "57ff9c6bd36b0bfc331d8379b6e62b32",
                "sha256": "464b6e4269b9feea12c63eb1561038fac5f1b449a14b78be250ad081b560ff3c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "57ff9c6bd36b0bfc331d8379b6e62b32",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 33806,
            "upload_time": "2025-07-25T20:31:39",
            "upload_time_iso_8601": "2025-07-25T20:31:39.804224Z",
            "url": "https://files.pythonhosted.org/packages/24/13/78361b264ccc275c7e64a3ba29951560d0231990bf64d03cd9cc6a561e67/maxminddb-2.8.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84dc9e4578ba5a44057d8cc843aa139bf70f2a4d6b3a2d2be5eb6b5848836346",
                "md5": "ac1bd0894dfacde7abbc7a0102c51cd6",
                "sha256": "833247b194d86bc62e16d36169336daebba777414821fd0003b1ecfc6bb3f1a7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac1bd0894dfacde7abbc7a0102c51cd6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 38143,
            "upload_time": "2025-07-25T20:31:41",
            "upload_time_iso_8601": "2025-07-25T20:31:41.034071Z",
            "url": "https://files.pythonhosted.org/packages/84/dc/9e4578ba5a44057d8cc843aa139bf70f2a4d6b3a2d2be5eb6b5848836346/maxminddb-2.8.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7319f7922739c61aed246f5d6e032e7d3df4239c33ffb090a8eee5a644c80d35",
                "md5": "1db25692f47fa20854032fc3245023a2",
                "sha256": "9d8d30c6038bdc7ad0458598e4b8c54f19cb052853ac84a0be8902c7af3a009f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1db25692f47fa20854032fc3245023a2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 36974,
            "upload_time": "2025-07-25T20:31:42",
            "upload_time_iso_8601": "2025-07-25T20:31:42.210259Z",
            "url": "https://files.pythonhosted.org/packages/73/19/f7922739c61aed246f5d6e032e7d3df4239c33ffb090a8eee5a644c80d35/maxminddb-2.8.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be5428bddcd972a665244f6714a1979b7bea01fb4f689e4fa178e28b65d4fbb9",
                "md5": "db416e6ebafd6d12c14c2309bb36c506",
                "sha256": "f6da4d844f176b7a662446107dd09b987759126c2d8c266918fe7f0186d41538"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db416e6ebafd6d12c14c2309bb36c506",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 36719,
            "upload_time": "2025-07-25T20:31:43",
            "upload_time_iso_8601": "2025-07-25T20:31:43.444967Z",
            "url": "https://files.pythonhosted.org/packages/be/54/28bddcd972a665244f6714a1979b7bea01fb4f689e4fa178e28b65d4fbb9/maxminddb-2.8.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55a950aa454bdf8aa76c7c8cf8343b039461203d4b53d5c3f4eecdb180574981",
                "md5": "ed2ad20c10df03ef750e1f78b51a4f34",
                "sha256": "28205d215b426c31c35ecc2e71f6ee22ebf12a9a7560ed1efec3709e343d720b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed2ad20c10df03ef750e1f78b51a4f34",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 34139,
            "upload_time": "2025-07-25T20:31:44",
            "upload_time_iso_8601": "2025-07-25T20:31:44.668942Z",
            "url": "https://files.pythonhosted.org/packages/55/a9/50aa454bdf8aa76c7c8cf8343b039461203d4b53d5c3f4eecdb180574981/maxminddb-2.8.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2af610036e75aa0aebc67e47f89aea73cc2fa92288eb72f4141cf061e0e5673",
                "md5": "1f73e9f5ef28c83904eb612befe643c6",
                "sha256": "88b7be82d81a4de2ea40e9bd1f39074ac2d127268a328ad524500c3c210eced1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1f73e9f5ef28c83904eb612befe643c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 33735,
            "upload_time": "2025-07-25T20:31:46",
            "upload_time_iso_8601": "2025-07-25T20:31:46.341478Z",
            "url": "https://files.pythonhosted.org/packages/a2/af/610036e75aa0aebc67e47f89aea73cc2fa92288eb72f4141cf061e0e5673/maxminddb-2.8.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3c2b8f8748405c344c03684b12267ec7d8e99c33d8c610da76892ce9a1827f2",
                "md5": "6ba037ca24c8becdc9b59675b6514609",
                "sha256": "f9a37c151ccdff7ae0be86eff1c464db02237e428f079300b3efc07277762334"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6ba037ca24c8becdc9b59675b6514609",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 38140,
            "upload_time": "2025-07-25T20:31:47",
            "upload_time_iso_8601": "2025-07-25T20:31:47.971182Z",
            "url": "https://files.pythonhosted.org/packages/a3/c2/b8f8748405c344c03684b12267ec7d8e99c33d8c610da76892ce9a1827f2/maxminddb-2.8.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46ec25a20b61cf43b2fab1524817f59116132e40c5a272a0dfca1c465ed66324",
                "md5": "f173ad5289e1b48205d54c67d9c4530c",
                "sha256": "1ff2045eadfad106824ff4fe2045e7f8ca737405e3201a9adfa646e2e6cdfad7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f173ad5289e1b48205d54c67d9c4530c",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 36975,
            "upload_time": "2025-07-25T20:31:49",
            "upload_time_iso_8601": "2025-07-25T20:31:49.181609Z",
            "url": "https://files.pythonhosted.org/packages/46/ec/25a20b61cf43b2fab1524817f59116132e40c5a272a0dfca1c465ed66324/maxminddb-2.8.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5108ed5b99189eb380bf7166fd38594f9457c5ba587a3300cc1ec64ddc4a0a6",
                "md5": "1f78d060caefbc030c7646325064bea4",
                "sha256": "869add1b2c9c48008e13c8db204b681a82cbe815c5f58ab8267205b522c852c0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f78d060caefbc030c7646325064bea4",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 36718,
            "upload_time": "2025-07-25T20:31:51",
            "upload_time_iso_8601": "2025-07-25T20:31:51.976790Z",
            "url": "https://files.pythonhosted.org/packages/d5/10/8ed5b99189eb380bf7166fd38594f9457c5ba587a3300cc1ec64ddc4a0a6/maxminddb-2.8.2-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4af59b51102f1e07f891330040a2b6628706eed87d7d9df7164867dd726355a3",
                "md5": "a394ec288ce1a7cb4178d3d7f9d8e263",
                "sha256": "8d85e20807ee11494fce001cffdb1364729e154041739813fb261f866865522c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a394ec288ce1a7cb4178d3d7f9d8e263",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 34205,
            "upload_time": "2025-07-25T20:31:53",
            "upload_time_iso_8601": "2025-07-25T20:31:53.772756Z",
            "url": "https://files.pythonhosted.org/packages/4a/f5/9b51102f1e07f891330040a2b6628706eed87d7d9df7164867dd726355a3/maxminddb-2.8.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ba0df86f19ba49863bb264f4f34655c8b7727979ab0b792061a93bb47603774",
                "md5": "d711882b6c449aa3b4f05418192edf52",
                "sha256": "622fde1542a4753a39253d138438e1f543edb8455fd70a8f4afbe0a0bc04fe1e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d711882b6c449aa3b4f05418192edf52",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 33807,
            "upload_time": "2025-07-25T20:31:55",
            "upload_time_iso_8601": "2025-07-25T20:31:55.743244Z",
            "url": "https://files.pythonhosted.org/packages/2b/a0/df86f19ba49863bb264f4f34655c8b7727979ab0b792061a93bb47603774/maxminddb-2.8.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dba86bd38cf4e40f6144c21b48952a20e9f4d90c43de740939652939b0b93ce2",
                "md5": "f668112eddcab531b86645eecea188f2",
                "sha256": "79492896ec7f6e029c2aa92c4cc10ad0347a03b866025bd26a6f415982a833de"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f668112eddcab531b86645eecea188f2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 38142,
            "upload_time": "2025-07-25T20:31:59",
            "upload_time_iso_8601": "2025-07-25T20:31:59.374567Z",
            "url": "https://files.pythonhosted.org/packages/db/a8/6bd38cf4e40f6144c21b48952a20e9f4d90c43de740939652939b0b93ce2/maxminddb-2.8.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0161a92ba49c681ac2c039a06d07847c255bbfd4956f849242107f9b0fd85307",
                "md5": "4dfc8842b2e1189f7993b2a239429d3d",
                "sha256": "fd42526b902755d383108bf2ba38fb9a946ec369faeead3cbe8ffc034a0462e0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dfc8842b2e1189f7993b2a239429d3d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 36976,
            "upload_time": "2025-07-25T20:32:01",
            "upload_time_iso_8601": "2025-07-25T20:32:01.430479Z",
            "url": "https://files.pythonhosted.org/packages/01/61/a92ba49c681ac2c039a06d07847c255bbfd4956f849242107f9b0fd85307/maxminddb-2.8.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e9b2444b0dd5adba12b6ea33065afa4e4abc89e08b64339dded64d3b3964929",
                "md5": "0d4baa80107f4252771a9e9ec8378013",
                "sha256": "40e113e56ae90d3410bbfc20f5510308c29aa6815964f59859aff4187d21db8c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d4baa80107f4252771a9e9ec8378013",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 36723,
            "upload_time": "2025-07-25T20:32:03",
            "upload_time_iso_8601": "2025-07-25T20:32:03.127142Z",
            "url": "https://files.pythonhosted.org/packages/2e/9b/2444b0dd5adba12b6ea33065afa4e4abc89e08b64339dded64d3b3964929/maxminddb-2.8.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "949c5af549744e7a1e986bddd119c0bbca7f7fa7fb72590b554cb860a0c3acb1",
                "md5": "02e792c58199853d1713fc988cc81359",
                "sha256": "26a8e536228d8cc28c5b8f574a571a2704befce3b368ceca593a76d56b6590f9"
            },
            "downloads": -1,
            "filename": "maxminddb-2.8.2.tar.gz",
            "has_sig": false,
            "md5_digest": "02e792c58199853d1713fc988cc81359",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 194388,
            "upload_time": "2025-07-25T20:32:05",
            "upload_time_iso_8601": "2025-07-25T20:32:05.037884Z",
            "url": "https://files.pythonhosted.org/packages/94/9c/5af549744e7a1e986bddd119c0bbca7f7fa7fb72590b554cb860a0c3acb1/maxminddb-2.8.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-25 20:32:05",
    "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: 1.19442s