maxminddb


Namemaxminddb JSON
Version 3.0.0 PyPI version JSON
download
home_pageNone
SummaryReader for the MaxMind DB format
upload_time2025-10-15 20:50:07
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
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 available from ``maxminddb.Mode``. 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.

Thread Safety
-------------

Both the C extension and pure Python implementations are safe for concurrent
reads and support Python 3.13+ free-threading. The C extension provides
free-threading support on platforms with pthread support (such as Linux and
macOS) and Windows. On other platforms, the extension will use GIL-based
protection. Calling ``close()`` while reads are in progress may cause
exceptions in those threads.

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

This code requires Python 3.10+. 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.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Gregory Oschwald <goschwald@maxmind.com>",
    "download_url": "https://files.pythonhosted.org/packages/b2/6e/6adbb0b2280a853e8b3344737fea5167e8a2a2ff67168555589b7278e2e8/maxminddb-3.0.0.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 available from ``maxminddb.Mode``. 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\nThread Safety\n-------------\n\nBoth the C extension and pure Python implementations are safe for concurrent\nreads and support Python 3.13+ free-threading. The C extension provides\nfree-threading support on platforms with pthread support (such as Linux and\nmacOS) and Windows. On other platforms, the extension will use GIL-based\nprotection. Calling ``close()`` while reads are in progress may cause\nexceptions in those threads.\n\nRequirements\n------------\n\nThis code requires Python 3.10+. 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": "3.0.0",
    "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": "56b3ce95d2985f947053a7568836450eee3cac3d40dd2864966e2e5275295389",
                "md5": "9d66910d63109ea2f7f8003d76a509da",
                "sha256": "32a23f1bf52b9df59a5cdb3ccad5cca94fa2b926ff9fe6ae0b134254b4b61d83"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "9d66910d63109ea2f7f8003d76a509da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 53853,
            "upload_time": "2025-10-15T20:48:24",
            "upload_time_iso_8601": "2025-10-15T20:48:24.364175Z",
            "url": "https://files.pythonhosted.org/packages/56/b3/ce95d2985f947053a7568836450eee3cac3d40dd2864966e2e5275295389/maxminddb-3.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e55a2d589a13faae7428d7be4848eb7337f7f7f72506cee97c4afea08cd0a0b0",
                "md5": "73079a6db89c47dc0300f6674361e90b",
                "sha256": "3cf8ba020d28dba0a09cb28103b18caa10235b15cc99b8b90f9126b66fec4d68"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73079a6db89c47dc0300f6674361e90b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 36121,
            "upload_time": "2025-10-15T20:48:25",
            "upload_time_iso_8601": "2025-10-15T20:48:25.806075Z",
            "url": "https://files.pythonhosted.org/packages/e5/5a/2d589a13faae7428d7be4848eb7337f7f7f72506cee97c4afea08cd0a0b0/maxminddb-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef1d119383036494a94626c392b757df71ea115317617f15364195cc4ed13b85",
                "md5": "f5d82d78aa2c90cf82e0e61b97ff2a85",
                "sha256": "ebd6b962bd18a0a49b107513d05d559fc8dfe6ed1632848d27a4dc80978a9199"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f5d82d78aa2c90cf82e0e61b97ff2a85",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 36042,
            "upload_time": "2025-10-15T20:48:26",
            "upload_time_iso_8601": "2025-10-15T20:48:26.880297Z",
            "url": "https://files.pythonhosted.org/packages/ef/1d/119383036494a94626c392b757df71ea115317617f15364195cc4ed13b85/maxminddb-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fda6a993bcbe01284e41bf11e1e219968f80c81dbed3587a4aee0beca4e3e90b",
                "md5": "90ef5a9d492acffe21872213335f5579",
                "sha256": "8702198db5618cea0aba17e7ced043fd50d7dc1e00041ebd510dca1263510a27"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "90ef5a9d492acffe21872213335f5579",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 99217,
            "upload_time": "2025-10-15T20:48:28",
            "upload_time_iso_8601": "2025-10-15T20:48:28.396372Z",
            "url": "https://files.pythonhosted.org/packages/fd/a6/a993bcbe01284e41bf11e1e219968f80c81dbed3587a4aee0beca4e3e90b/maxminddb-3.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a69b1e95c4c24ca10803c7b5b60da441cda8f677cbd90b82b426301bbe365118",
                "md5": "66a8bb7dffccabc29208ccbfd8d252f8",
                "sha256": "7c3c68ff21f2377aa343ca7cd414485eee70559d912ba20fa74ef1a1880dcfa0"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66a8bb7dffccabc29208ccbfd8d252f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 96899,
            "upload_time": "2025-10-15T20:48:30",
            "upload_time_iso_8601": "2025-10-15T20:48:30.344990Z",
            "url": "https://files.pythonhosted.org/packages/a6/9b/1e95c4c24ca10803c7b5b60da441cda8f677cbd90b82b426301bbe365118/maxminddb-3.0.0-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": "ac43c0e127cb8eb09da55fa08c83ba4429992bcb12ea0319f384f8cf28f47274",
                "md5": "8c005c31e437213fab9191921be7101b",
                "sha256": "719602e0dcf2a6747e2207e1ae497e2847b502e3d63d0e4b2ce3047a97bd467e"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8c005c31e437213fab9191921be7101b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 96621,
            "upload_time": "2025-10-15T20:48:32",
            "upload_time_iso_8601": "2025-10-15T20:48:32.156016Z",
            "url": "https://files.pythonhosted.org/packages/ac/43/c0e127cb8eb09da55fa08c83ba4429992bcb12ea0319f384f8cf28f47274/maxminddb-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c32dbe52ec7cf1ef3bd21a57879cd425efe45e424c59a864c58060f4226477e",
                "md5": "3700f8f77a92b61e3b8ceea1409e2ee7",
                "sha256": "8e6c47b42f7313e1a92d47d0c47d87c1c6c530c91c90721781448a766ffed70f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3700f8f77a92b61e3b8ceea1409e2ee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 94898,
            "upload_time": "2025-10-15T20:48:33",
            "upload_time_iso_8601": "2025-10-15T20:48:33.382079Z",
            "url": "https://files.pythonhosted.org/packages/5c/32/dbe52ec7cf1ef3bd21a57879cd425efe45e424c59a864c58060f4226477e/maxminddb-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26deb1fa899ee4716d8fa02847489e5b3de492cd2a217d8ee43052370e6ec40b",
                "md5": "00cf1c9e5e5a71c3a852a9f3cf06e320",
                "sha256": "dbc03123ec51d760bcaa106f2d8e7eb1bda286087aca5a9e3053a34ca1ad2e85"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "00cf1c9e5e5a71c3a852a9f3cf06e320",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 35348,
            "upload_time": "2025-10-15T20:48:34",
            "upload_time_iso_8601": "2025-10-15T20:48:34.892449Z",
            "url": "https://files.pythonhosted.org/packages/26/de/b1fa899ee4716d8fa02847489e5b3de492cd2a217d8ee43052370e6ec40b/maxminddb-3.0.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed8aba6e54a388e92b65ed100f0c7d9af3f5a20f58e75ac36c1a7a9361632b7a",
                "md5": "f2a029d122ac805888a8c1b51b290f00",
                "sha256": "b14c5c0f11f56e556908f5d3af376e19eb0485974d860a964d134a39448b3772"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2a029d122ac805888a8c1b51b290f00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 37136,
            "upload_time": "2025-10-15T20:48:36",
            "upload_time_iso_8601": "2025-10-15T20:48:36.347161Z",
            "url": "https://files.pythonhosted.org/packages/ed/8a/ba6e54a388e92b65ed100f0c7d9af3f5a20f58e75ac36c1a7a9361632b7a/maxminddb-3.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0276295257fc3abb3ef60978ff40c0b787d95039c02485e241d14d20276e9474",
                "md5": "b4a9da240cb100c9acb81f34ebf9942b",
                "sha256": "69f7f8013d80a1529c399a38706695fd2fdcc26be3e42b830763843e1660b874"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "b4a9da240cb100c9acb81f34ebf9942b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 34257,
            "upload_time": "2025-10-15T20:48:37",
            "upload_time_iso_8601": "2025-10-15T20:48:37.408127Z",
            "url": "https://files.pythonhosted.org/packages/02/76/295257fc3abb3ef60978ff40c0b787d95039c02485e241d14d20276e9474/maxminddb-3.0.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a915a3c156c609b59342799fd1c0e60e4a6f6e096e2a18107d88b61a39c76ab5",
                "md5": "e2b0c97276723a221b070bf51dfe3fd6",
                "sha256": "8e34a0cd9a67f446a6b425b857ac7b63254b5ce64d0b38e013d0e531588b7a66"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e2b0c97276723a221b070bf51dfe3fd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 53857,
            "upload_time": "2025-10-15T20:48:38",
            "upload_time_iso_8601": "2025-10-15T20:48:38.447185Z",
            "url": "https://files.pythonhosted.org/packages/a9/15/a3c156c609b59342799fd1c0e60e4a6f6e096e2a18107d88b61a39c76ab5/maxminddb-3.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa428e367bfa2a9c8ffbe0f0b60a904d35b7cb9d6a0d3a3c8fd803a932b3226e",
                "md5": "9247937e125be7b20e80f1265de52872",
                "sha256": "4e1791a30ac50ec2bdd2203276bcb9da25ff1115fd6f152548b5110993297d14"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9247937e125be7b20e80f1265de52872",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 36118,
            "upload_time": "2025-10-15T20:48:39",
            "upload_time_iso_8601": "2025-10-15T20:48:39.551085Z",
            "url": "https://files.pythonhosted.org/packages/fa/42/8e367bfa2a9c8ffbe0f0b60a904d35b7cb9d6a0d3a3c8fd803a932b3226e/maxminddb-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4783367902eb1e01955d491251812af2226a7d2b2fa3893c1099b5690119ac44",
                "md5": "596acf4b4cf95ee620b4e70a35959797",
                "sha256": "722d4e5c5735f5ae2dcb0ccf972e890c41bccd15476fafe8c2a991f72c4a28d2"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "596acf4b4cf95ee620b4e70a35959797",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 36044,
            "upload_time": "2025-10-15T20:48:40",
            "upload_time_iso_8601": "2025-10-15T20:48:40.927437Z",
            "url": "https://files.pythonhosted.org/packages/47/83/367902eb1e01955d491251812af2226a7d2b2fa3893c1099b5690119ac44/maxminddb-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d3bae5ead6809bc26bd61bab0548d08983a7b2955159df092305eaa45909f6f",
                "md5": "87d8e02ca2eb79baedff9ce7fb0692f9",
                "sha256": "8c71ec72fdbec8be4d1e9b53294d59f04c7ae73ede6273efce7516995bcb5468"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87d8e02ca2eb79baedff9ce7fb0692f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 99409,
            "upload_time": "2025-10-15T20:48:42",
            "upload_time_iso_8601": "2025-10-15T20:48:42.775658Z",
            "url": "https://files.pythonhosted.org/packages/1d/3b/ae5ead6809bc26bd61bab0548d08983a7b2955159df092305eaa45909f6f/maxminddb-3.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "840e3f4bd90ba3def4b490594866641585b93e3deeef4a09aacde921e223629a",
                "md5": "b6d70c5b5a9202169c7ec26043a9c128",
                "sha256": "f62b55d15f796d14a58c84a853a8ae6d2728546f5c81a15a61aa45082afc21c8"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6d70c5b5a9202169c7ec26043a9c128",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 97114,
            "upload_time": "2025-10-15T20:48:44",
            "upload_time_iso_8601": "2025-10-15T20:48:44.378510Z",
            "url": "https://files.pythonhosted.org/packages/84/0e/3f4bd90ba3def4b490594866641585b93e3deeef4a09aacde921e223629a/maxminddb-3.0.0-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": "2e3d49dea88a0931b5764e582e628a55ac2d5a64a8d97ece1853bf751cb43fd3",
                "md5": "c5a620279aa2eac87343ba728bfbc86e",
                "sha256": "78ab0b386ab51ea21d54ca42dee379dfd976d5e650ae0435848278b2aaf9d0fb"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c5a620279aa2eac87343ba728bfbc86e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 96833,
            "upload_time": "2025-10-15T20:48:45",
            "upload_time_iso_8601": "2025-10-15T20:48:45.916446Z",
            "url": "https://files.pythonhosted.org/packages/2e/3d/49dea88a0931b5764e582e628a55ac2d5a64a8d97ece1853bf751cb43fd3/maxminddb-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0ec4419c88774ae183bdfb386882796c85675767339eddc41d86ec3df68f61f",
                "md5": "7ae476d769850d162333d1624dd9cb76",
                "sha256": "9167c80dac8a524af24af22b2093c819cb2ea11c2abe986b6b29be7fa7f6c88f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ae476d769850d162333d1624dd9cb76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 95065,
            "upload_time": "2025-10-15T20:48:47",
            "upload_time_iso_8601": "2025-10-15T20:48:47.096573Z",
            "url": "https://files.pythonhosted.org/packages/f0/ec/4419c88774ae183bdfb386882796c85675767339eddc41d86ec3df68f61f/maxminddb-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "564031fcbe0052848292d8ea17bc3779a8a5f83fd090338a83aeb8c71057ad97",
                "md5": "0777f0e46842acd5b7da36143b4825c1",
                "sha256": "deb2e6bc068db799eac025ab9d1cbf96cd9fbf636a3414a79518e05fe57ae5a3"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0777f0e46842acd5b7da36143b4825c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 35341,
            "upload_time": "2025-10-15T20:48:48",
            "upload_time_iso_8601": "2025-10-15T20:48:48.232942Z",
            "url": "https://files.pythonhosted.org/packages/56/40/31fcbe0052848292d8ea17bc3779a8a5f83fd090338a83aeb8c71057ad97/maxminddb-3.0.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "265348e939bc13be41337aa23c30a3b45122e610a8fa8419af44265ff309dfa2",
                "md5": "c6340c8e4e0d4d817f764ae762b38ba1",
                "sha256": "87062aec30c57af1a6e1c007391f20f1af836a459486801f169af44bc244c9e7"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c6340c8e4e0d4d817f764ae762b38ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 37132,
            "upload_time": "2025-10-15T20:48:49",
            "upload_time_iso_8601": "2025-10-15T20:48:49.324160Z",
            "url": "https://files.pythonhosted.org/packages/26/53/48e939bc13be41337aa23c30a3b45122e610a8fa8419af44265ff309dfa2/maxminddb-3.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eff0df860ee2b8db38332416ceab8756a36d5b5ed82d3f1cccc8978cc716548a",
                "md5": "5c2164ae6a85b427313f9277004148e5",
                "sha256": "612497302bf77d7c90586fc3a19b941e0c78b47f92df035e80550f044a849c96"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c2164ae6a85b427313f9277004148e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 34258,
            "upload_time": "2025-10-15T20:48:50",
            "upload_time_iso_8601": "2025-10-15T20:48:50.404396Z",
            "url": "https://files.pythonhosted.org/packages/ef/f0/df860ee2b8db38332416ceab8756a36d5b5ed82d3f1cccc8978cc716548a/maxminddb-3.0.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31dfdec231686a814f9e279afb39f3e27091770d970964bb94e7bfc1fdf01428",
                "md5": "2bb3a7f49e89c3602dd7b22bc1819cbb",
                "sha256": "bcf83c60a44ec5dfab9e5d3a0c2347ee429d31fa89f88aa283d8551fd5e2c37a"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "2bb3a7f49e89c3602dd7b22bc1819cbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 54352,
            "upload_time": "2025-10-15T20:48:51",
            "upload_time_iso_8601": "2025-10-15T20:48:51.488233Z",
            "url": "https://files.pythonhosted.org/packages/31/df/dec231686a814f9e279afb39f3e27091770d970964bb94e7bfc1fdf01428/maxminddb-3.0.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14e3efb6d621a8940371ecbf393f84fde01f0521116bc281c40124292a593198",
                "md5": "66d24e3033928d9b2266f013598cd632",
                "sha256": "56856d0fadab323fb5dc3fa69bc4cb975242133cab1df2c710779738dadda75d"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66d24e3033928d9b2266f013598cd632",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 36328,
            "upload_time": "2025-10-15T20:48:52",
            "upload_time_iso_8601": "2025-10-15T20:48:52.850562Z",
            "url": "https://files.pythonhosted.org/packages/14/e3/efb6d621a8940371ecbf393f84fde01f0521116bc281c40124292a593198/maxminddb-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51e817cbe454829befb32fec83745141bb6f9ef0b593d53c4e333e938d83ed26",
                "md5": "5a80be2c56477532538393c50b866ca2",
                "sha256": "1bd05d919787719fc1026d53b0e7462cf0c389534620e407676ecf61c2d289bb"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a80be2c56477532538393c50b866ca2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 36174,
            "upload_time": "2025-10-15T20:48:53",
            "upload_time_iso_8601": "2025-10-15T20:48:53.874837Z",
            "url": "https://files.pythonhosted.org/packages/51/e8/17cbe454829befb32fec83745141bb6f9ef0b593d53c4e333e938d83ed26/maxminddb-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae1d5492205210570d851d5a74f5c9c01022993edc74296eb792c890318eff25",
                "md5": "1505d8c868f01462575867f419a9f0af",
                "sha256": "29515dc3606d1d8fffdb4025dccf01c93d16651683e9c6d8611892a4c9f2566d"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1505d8c868f01462575867f419a9f0af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 101153,
            "upload_time": "2025-10-15T20:48:55",
            "upload_time_iso_8601": "2025-10-15T20:48:55.013438Z",
            "url": "https://files.pythonhosted.org/packages/ae/1d/5492205210570d851d5a74f5c9c01022993edc74296eb792c890318eff25/maxminddb-3.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a607f96b5e4fdfdd2cc7a9724f3fa40b6bc282c9d9bdcf85b1920a0dee50c00b",
                "md5": "bf9ae122b0385856fcc617323606b39d",
                "sha256": "52b5edc32894643c93279de2d889c0b98906277e7e91cbba709bc55f5500ecca"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf9ae122b0385856fcc617323606b39d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 99465,
            "upload_time": "2025-10-15T20:48:56",
            "upload_time_iso_8601": "2025-10-15T20:48:56.198515Z",
            "url": "https://files.pythonhosted.org/packages/a6/07/f96b5e4fdfdd2cc7a9724f3fa40b6bc282c9d9bdcf85b1920a0dee50c00b/maxminddb-3.0.0-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": "d730ef2c167277292ce360bcd2a11e0fa9fe2e4e67e7c7b49fff2eab7caae787",
                "md5": "2404c5ea151b9d6477179618f688ca9d",
                "sha256": "0a095ce04e404315f9d47a186a7d96b11a283430d811ba6b0530167233100b95"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2404c5ea151b9d6477179618f688ca9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 98395,
            "upload_time": "2025-10-15T20:48:57",
            "upload_time_iso_8601": "2025-10-15T20:48:57.489384Z",
            "url": "https://files.pythonhosted.org/packages/d7/30/ef2c167277292ce360bcd2a11e0fa9fe2e4e67e7c7b49fff2eab7caae787/maxminddb-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04c971ce286a4ba12ec74b094d1a627d57a306349f4f23ce66d3ec2eca045e9f",
                "md5": "8db55fca0a9044c7e938306a80101a51",
                "sha256": "1d3645a44c392d9ffdea4d2252d70b2910eee47d56b8305da0c0923a63e895d6"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8db55fca0a9044c7e938306a80101a51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 97320,
            "upload_time": "2025-10-15T20:48:58",
            "upload_time_iso_8601": "2025-10-15T20:48:58.700848Z",
            "url": "https://files.pythonhosted.org/packages/04/c9/71ce286a4ba12ec74b094d1a627d57a306349f4f23ce66d3ec2eca045e9f/maxminddb-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da4a3e3f24f876242dd53a8a95250669e2f08b8cd8bc4640e947c982efcdaca6",
                "md5": "09ddb394c800c3c62ed2a8e393e641c2",
                "sha256": "c0e6d54da5d85d38e674fee9b04b1ad9212c38cb57adcc7c86bb4ed71b2b6555"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "09ddb394c800c3c62ed2a8e393e641c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 35481,
            "upload_time": "2025-10-15T20:49:00",
            "upload_time_iso_8601": "2025-10-15T20:49:00.755243Z",
            "url": "https://files.pythonhosted.org/packages/da/4a/3e3f24f876242dd53a8a95250669e2f08b8cd8bc4640e947c982efcdaca6/maxminddb-3.0.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71de56feda63d5d8d896c2dcfa6ef9754a429fa2c5353fa5f0c32ed1f46fa004",
                "md5": "c9c983563bfa7f7d3be7576044e32afc",
                "sha256": "4931ee0cbba030e1b729599e485aca438b668432ccd1eb73770c93bbc38f2b60"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9c983563bfa7f7d3be7576044e32afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 37295,
            "upload_time": "2025-10-15T20:49:01",
            "upload_time_iso_8601": "2025-10-15T20:49:01.993953Z",
            "url": "https://files.pythonhosted.org/packages/71/de/56feda63d5d8d896c2dcfa6ef9754a429fa2c5353fa5f0c32ed1f46fa004/maxminddb-3.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "874a87c86516dee431a9e6cdded7eb865b5b7fc7c73b17262a50c75e2da5c9b6",
                "md5": "c4d7be442ee69073f70722c8c1ed95bb",
                "sha256": "f55fb5c607dc4ddab7eba67da92d75921ef7d8e682ab47d21935566dc6990021"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c4d7be442ee69073f70722c8c1ed95bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 34263,
            "upload_time": "2025-10-15T20:49:03",
            "upload_time_iso_8601": "2025-10-15T20:49:03.237356Z",
            "url": "https://files.pythonhosted.org/packages/87/4a/87c86516dee431a9e6cdded7eb865b5b7fc7c73b17262a50c75e2da5c9b6/maxminddb-3.0.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e64e9c97eaea080d450ab63197a20ead71cc652f99f5ecb1e68fc0896db33ac8",
                "md5": "3419335694df73c2c5fb6dc4a2061a2f",
                "sha256": "f2162e6bee9643d86647518c891756ef5091afb1c2d522fc206d7c26187862eb"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-android_21_arm64_v8a.whl",
            "has_sig": false,
            "md5_digest": "3419335694df73c2c5fb6dc4a2061a2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 37615,
            "upload_time": "2025-10-15T20:49:04",
            "upload_time_iso_8601": "2025-10-15T20:49:04.728127Z",
            "url": "https://files.pythonhosted.org/packages/e6/4e/9c97eaea080d450ab63197a20ead71cc652f99f5ecb1e68fc0896db33ac8/maxminddb-3.0.0-cp313-cp313-android_21_arm64_v8a.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4a1900f105a1562667e22566bbbfa3ca8ca6ea2b2e7e31ff30673459809be74",
                "md5": "cf85274c9f4e8e6503c587e2b77397c2",
                "sha256": "eace3ccb184546287d27fce54852751e935c00f9ba7b66fece09e7761503cd13"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-android_21_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf85274c9f4e8e6503c587e2b77397c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 38070,
            "upload_time": "2025-10-15T20:49:06",
            "upload_time_iso_8601": "2025-10-15T20:49:06.138802Z",
            "url": "https://files.pythonhosted.org/packages/b4/a1/900f105a1562667e22566bbbfa3ca8ca6ea2b2e7e31ff30673459809be74/maxminddb-3.0.0-cp313-cp313-android_21_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "396b247ef29d080be9b57efba90e33445e2cc028f8cf09beb5e697e5132c95dd",
                "md5": "3ebbadc0b445634bc3b437ef5455e7fb",
                "sha256": "babf6c600361e5f9bc3e3873b900ab044f6cdc7c0f15c086e0b52d2e005ab949"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl",
            "has_sig": false,
            "md5_digest": "3ebbadc0b445634bc3b437ef5455e7fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 35365,
            "upload_time": "2025-10-15T20:49:07",
            "upload_time_iso_8601": "2025-10-15T20:49:07.233051Z",
            "url": "https://files.pythonhosted.org/packages/39/6b/247ef29d080be9b57efba90e33445e2cc028f8cf09beb5e697e5132c95dd/maxminddb-3.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dddca6c4929e1a634507a99e8143c81ecc3f3f913e1a0c47b656b5a006538ec",
                "md5": "222a9a460a7a7a17484430f1a1db9c4b",
                "sha256": "024221e821f3385dd41f13e2d0ac5afca569b69a6d7755c8c960edaf31c0e47f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl",
            "has_sig": false,
            "md5_digest": "222a9a460a7a7a17484430f1a1db9c4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 35919,
            "upload_time": "2025-10-15T20:49:08",
            "upload_time_iso_8601": "2025-10-15T20:49:08.300787Z",
            "url": "https://files.pythonhosted.org/packages/7d/dd/ca6c4929e1a634507a99e8143c81ecc3f3f913e1a0c47b656b5a006538ec/maxminddb-3.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e641a7faaf244114d47994fef85accd06dd906832cdcc5465ad27b48e0f11f2d",
                "md5": "e9d2990eb956d16d72635bba02cc847b",
                "sha256": "bc838d9060e6e623b4bd055d498a2159a072d43beb3eeaefde5af39ac1b1b249"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "e9d2990eb956d16d72635bba02cc847b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 54354,
            "upload_time": "2025-10-15T20:49:09",
            "upload_time_iso_8601": "2025-10-15T20:49:09.417718Z",
            "url": "https://files.pythonhosted.org/packages/e6/41/a7faaf244114d47994fef85accd06dd906832cdcc5465ad27b48e0f11f2d/maxminddb-3.0.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6c876b3c0ea1f180209496cb401892a4ad197ee23ac1f370da578fffa466418",
                "md5": "3cfd4b983fe392f9ceaabb440cc9ef1d",
                "sha256": "29fd164067b2765752d5970aaef823a51d262a484c59e866c20dbf99f45453ac"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3cfd4b983fe392f9ceaabb440cc9ef1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 36312,
            "upload_time": "2025-10-15T20:49:10",
            "upload_time_iso_8601": "2025-10-15T20:49:10.713127Z",
            "url": "https://files.pythonhosted.org/packages/d6/c8/76b3c0ea1f180209496cb401892a4ad197ee23ac1f370da578fffa466418/maxminddb-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b696b2d5ab37458ec892d7d52b6a9e6aa9992354d61df20b9978bae60e35d17a",
                "md5": "e1e264b0ebcca3970911734bd8328788",
                "sha256": "6008ecba67b7024b80e3f28e276b736f2f984795cd4a6922ddffaba8038d6a60"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1e264b0ebcca3970911734bd8328788",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 36174,
            "upload_time": "2025-10-15T20:49:12",
            "upload_time_iso_8601": "2025-10-15T20:49:12.232359Z",
            "url": "https://files.pythonhosted.org/packages/b6/96/b2d5ab37458ec892d7d52b6a9e6aa9992354d61df20b9978bae60e35d17a/maxminddb-3.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec3dc22a117c1c6ca42a62be9473f12d113e2eab72ac28c032a290d0fbbd488e",
                "md5": "021ce3d5e26c7a1b749421d899047376",
                "sha256": "684fec138b463d1fc6fa88fd2967e25b3af0629eb0b5e6f3bbc017e64e2f68c6"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "021ce3d5e26c7a1b749421d899047376",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 101205,
            "upload_time": "2025-10-15T20:49:13",
            "upload_time_iso_8601": "2025-10-15T20:49:13.342806Z",
            "url": "https://files.pythonhosted.org/packages/ec/3d/c22a117c1c6ca42a62be9473f12d113e2eab72ac28c032a290d0fbbd488e/maxminddb-3.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfe6a170e6ae3492d8e334a6ce9e39668f2b8d0cb0a158804460b5d851315230",
                "md5": "50b58fa0214527508070a88ef27a4b37",
                "sha256": "e2dd94deb1baa19f9fd17968b90b7c03589078a3000972948e3aecfa723300d1"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50b58fa0214527508070a88ef27a4b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 99495,
            "upload_time": "2025-10-15T20:49:14",
            "upload_time_iso_8601": "2025-10-15T20:49:14.650288Z",
            "url": "https://files.pythonhosted.org/packages/df/e6/a170e6ae3492d8e334a6ce9e39668f2b8d0cb0a158804460b5d851315230/maxminddb-3.0.0-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": "7b8ba18aba0838a85bf9ff30f165d3cb5f52967858e89e54aa8a7509a674f253",
                "md5": "53ac4c65a13b00ac522e9cf2b295de29",
                "sha256": "880e233c00a4403bb6dd5e406f156be3c6a5a5b37b472102928014ab21c12b4b"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "53ac4c65a13b00ac522e9cf2b295de29",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 98402,
            "upload_time": "2025-10-15T20:49:15",
            "upload_time_iso_8601": "2025-10-15T20:49:15.864839Z",
            "url": "https://files.pythonhosted.org/packages/7b/8b/a18aba0838a85bf9ff30f165d3cb5f52967858e89e54aa8a7509a674f253/maxminddb-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e2485d15613b6dbf2b683a5b9817640c3baac1931edf59a7465c54e0ad92084",
                "md5": "946ee0724d2d1dc4509142c164543310",
                "sha256": "8e8031353eaece26ee634bcba2cba3bb91092f52a69e5f5dbc5931d59f84b2de"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "946ee0724d2d1dc4509142c164543310",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 97303,
            "upload_time": "2025-10-15T20:49:17",
            "upload_time_iso_8601": "2025-10-15T20:49:17.121050Z",
            "url": "https://files.pythonhosted.org/packages/2e/24/85d15613b6dbf2b683a5b9817640c3baac1931edf59a7465c54e0ad92084/maxminddb-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ffb23883b82abf92d0613375a9a9f4a4412ff8cc0596d124070832bf7f783a6",
                "md5": "dde4a113f607f0bf9d069ec45ef81b49",
                "sha256": "2d325fcdbf1ba356ac47304ba3fc8605b21b9bd09d0818b24f43ebecc71c5e29"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "dde4a113f607f0bf9d069ec45ef81b49",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 35481,
            "upload_time": "2025-10-15T20:49:18",
            "upload_time_iso_8601": "2025-10-15T20:49:18.266487Z",
            "url": "https://files.pythonhosted.org/packages/1f/fb/23883b82abf92d0613375a9a9f4a4412ff8cc0596d124070832bf7f783a6/maxminddb-3.0.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b19a498bf14a86e98475d4ca994988e8f072dccfd407d026403ad95725321de",
                "md5": "5d0da81e6680968e29a17f349227a765",
                "sha256": "3ad60671645bf88b853f126999cafd0e61ad668f210176ea24a8b5e99dd3e049"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d0da81e6680968e29a17f349227a765",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 37299,
            "upload_time": "2025-10-15T20:49:19",
            "upload_time_iso_8601": "2025-10-15T20:49:19.488725Z",
            "url": "https://files.pythonhosted.org/packages/4b/19/a498bf14a86e98475d4ca994988e8f072dccfd407d026403ad95725321de/maxminddb-3.0.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34ca36fecfbed3ef0175b569b07f968fb56d591a6effdaeda81f1247dc8034a4",
                "md5": "f237101e23eed6ce6d6994ed57ecef74",
                "sha256": "4ca8989b0e389404f268c8650aeeadda34417f87baa405325b051a511f56c382"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f237101e23eed6ce6d6994ed57ecef74",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 34254,
            "upload_time": "2025-10-15T20:49:20",
            "upload_time_iso_8601": "2025-10-15T20:49:20.533230Z",
            "url": "https://files.pythonhosted.org/packages/34/ca/36fecfbed3ef0175b569b07f968fb56d591a6effdaeda81f1247dc8034a4/maxminddb-3.0.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96cbeed553828b6bcd1bb8c3eb74818aee471c63aba6612128d73c20da122921",
                "md5": "dba101f5c61effccd73e7e14ed9a6330",
                "sha256": "1a89feae4b7296f24a76467788dad73578bbf51e4cf9672e61ef1be1320dd3d6"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-android_24_arm64_v8a.whl",
            "has_sig": false,
            "md5_digest": "dba101f5c61effccd73e7e14ed9a6330",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 37412,
            "upload_time": "2025-10-15T20:49:21",
            "upload_time_iso_8601": "2025-10-15T20:49:21.649241Z",
            "url": "https://files.pythonhosted.org/packages/96/cb/eed553828b6bcd1bb8c3eb74818aee471c63aba6612128d73c20da122921/maxminddb-3.0.0-cp314-cp314-android_24_arm64_v8a.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "653b0dba6d1d078e2a0523bc0a89c0060b1366a2f9ee8f72f47c33a107e56fab",
                "md5": "ef8a29c8085d7784f3934e1a330b159e",
                "sha256": "e874238be93b6e6b3c6589795015edb9b935d2638806439ee65c66669e399b2d"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-android_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef8a29c8085d7784f3934e1a330b159e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 37876,
            "upload_time": "2025-10-15T20:49:23",
            "upload_time_iso_8601": "2025-10-15T20:49:23.165698Z",
            "url": "https://files.pythonhosted.org/packages/65/3b/0dba6d1d078e2a0523bc0a89c0060b1366a2f9ee8f72f47c33a107e56fab/maxminddb-3.0.0-cp314-cp314-android_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a349d4b0636aec3671c3aedf97013b24b6b310de62d6ab373b775a3a8dd594a9",
                "md5": "61baa0bee959febdd5001e5af10586d0",
                "sha256": "a45fc20423952f84a73c008d40ea5b1d8c343a3c58d229a45d78a20093817a6f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl",
            "has_sig": false,
            "md5_digest": "61baa0bee959febdd5001e5af10586d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 35334,
            "upload_time": "2025-10-15T20:49:24",
            "upload_time_iso_8601": "2025-10-15T20:49:24.554782Z",
            "url": "https://files.pythonhosted.org/packages/a3/49/d4b0636aec3671c3aedf97013b24b6b310de62d6ab373b775a3a8dd594a9/maxminddb-3.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37d76ff7c7386365f639cff20fb1d0f4b6533b12706b4a0ae05cfdaf0b41f768",
                "md5": "bc5be74145c9233b4293d722c35a97f4",
                "sha256": "d3796460179976fea3f99855bd75811af74f5659699584d4b7e80a7c66b52893"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl",
            "has_sig": false,
            "md5_digest": "bc5be74145c9233b4293d722c35a97f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 35887,
            "upload_time": "2025-10-15T20:49:25",
            "upload_time_iso_8601": "2025-10-15T20:49:25.614285Z",
            "url": "https://files.pythonhosted.org/packages/37/d7/6ff7c7386365f639cff20fb1d0f4b6533b12706b4a0ae05cfdaf0b41f768/maxminddb-3.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbeee7d8942bbdf06a2082611d52e89ece4e6064195ddb18a7158b5f53e76bc7",
                "md5": "822c96a9bc6bcc62f26e8732fedcab46",
                "sha256": "7997f0b1ed0210b0790a1885e9bc38bed53fdcaaf37141cf8dd1a97894c8fa1b"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "822c96a9bc6bcc62f26e8732fedcab46",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 54335,
            "upload_time": "2025-10-15T20:49:26",
            "upload_time_iso_8601": "2025-10-15T20:49:26.728877Z",
            "url": "https://files.pythonhosted.org/packages/bb/ee/e7d8942bbdf06a2082611d52e89ece4e6064195ddb18a7158b5f53e76bc7/maxminddb-3.0.0-cp314-cp314-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77e1bd16679264463d2c340940b5b320cc97cd240a3a0b6c1811c88b82d292db",
                "md5": "9cd1454b552625edbb3d4d5f65f6cb1b",
                "sha256": "21f9d0c164f7c058f419cd9b1105f01606b2abf77b456e8d201700804667686f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cd1454b552625edbb3d4d5f65f6cb1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 36528,
            "upload_time": "2025-10-15T20:49:27",
            "upload_time_iso_8601": "2025-10-15T20:49:27.842289Z",
            "url": "https://files.pythonhosted.org/packages/77/e1/bd16679264463d2c340940b5b320cc97cd240a3a0b6c1811c88b82d292db/maxminddb-3.0.0-cp314-cp314-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f41cf8a5ca1ede1fcd1b306d504a3949d52fd87124fcc2c2180afbcf714ff54",
                "md5": "dd258f02c556569e210228a39119e69e",
                "sha256": "e7fe7a2a6b2275736fd090d98e081146a1b81abf475d6d2dfd1b106d3792b208"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd258f02c556569e210228a39119e69e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 36147,
            "upload_time": "2025-10-15T20:49:28",
            "upload_time_iso_8601": "2025-10-15T20:49:28.935510Z",
            "url": "https://files.pythonhosted.org/packages/6f/41/cf8a5ca1ede1fcd1b306d504a3949d52fd87124fcc2c2180afbcf714ff54/maxminddb-3.0.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ae0cd48d467c34ac108fcee9e444dd537e27f04a945d787acd5614f1127dbe5",
                "md5": "8bd1b2ce4bd9725607e2d202cf236b6b",
                "sha256": "5aaa656d5cb2ea60f4e845669be6a759a25aa1f0cd67fbfef0e64759af28dbb7"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8bd1b2ce4bd9725607e2d202cf236b6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 101010,
            "upload_time": "2025-10-15T20:49:30",
            "upload_time_iso_8601": "2025-10-15T20:49:30.122051Z",
            "url": "https://files.pythonhosted.org/packages/4a/e0/cd48d467c34ac108fcee9e444dd537e27f04a945d787acd5614f1127dbe5/maxminddb-3.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f4b323ec8abe811702bcea537a0aa5e83442f48f1974084bdb048b75424536c",
                "md5": "3e73d7b37e582230c447879a51f22264",
                "sha256": "c6b86dedb1ae681376bcc31bec37d7d674c86ff05687738ab333f18988f17c3a"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e73d7b37e582230c447879a51f22264",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 99249,
            "upload_time": "2025-10-15T20:49:31",
            "upload_time_iso_8601": "2025-10-15T20:49:31.332951Z",
            "url": "https://files.pythonhosted.org/packages/4f/4b/323ec8abe811702bcea537a0aa5e83442f48f1974084bdb048b75424536c/maxminddb-3.0.0-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": "d71a520fcb6ad4185857fbba74cb1ee42b580492049c3730ce0687ac54dbe731",
                "md5": "1664ec0cfa62a9af45477b8c26e8b0bb",
                "sha256": "fde874c2af4dd4488c423b4f4bc2ec9931e5e992f382feb43d07dc4e8dda5e24"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1664ec0cfa62a9af45477b8c26e8b0bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 98418,
            "upload_time": "2025-10-15T20:49:32",
            "upload_time_iso_8601": "2025-10-15T20:49:32.879820Z",
            "url": "https://files.pythonhosted.org/packages/d7/1a/520fcb6ad4185857fbba74cb1ee42b580492049c3730ce0687ac54dbe731/maxminddb-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af208650798c8e0806a07e2534c562acf1e3d735ac7aaee0abab370f80c56977",
                "md5": "9622df68c0d38b33e1cef3466c693a14",
                "sha256": "397a90b6db4563abe6d5fb08e112afd4481b8354fa64d289625c2e941b787860"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9622df68c0d38b33e1cef3466c693a14",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 97092,
            "upload_time": "2025-10-15T20:49:34",
            "upload_time_iso_8601": "2025-10-15T20:49:34.529843Z",
            "url": "https://files.pythonhosted.org/packages/af/20/8650798c8e0806a07e2534c562acf1e3d735ac7aaee0abab370f80c56977/maxminddb-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f302512f13edf16e8bf3e01cff958d58bcf023c9ab3ba3d5cda92e011a57f34e",
                "md5": "a1ee43e75da147fb7da7e547b5abd439",
                "sha256": "6a4330999ab1987f82d32ad969fddcace596dbf8a5c075104e88568f0c326f94"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "a1ee43e75da147fb7da7e547b5abd439",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 58264,
            "upload_time": "2025-10-15T20:49:39",
            "upload_time_iso_8601": "2025-10-15T20:49:39.891013Z",
            "url": "https://files.pythonhosted.org/packages/f3/02/512f13edf16e8bf3e01cff958d58bcf023c9ab3ba3d5cda92e011a57f34e/maxminddb-3.0.0-cp314-cp314t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "103a0e8551e0a254489769ab5336bddf5898bead7f6dad17645f85473922a01d",
                "md5": "54dd0bea2dbd9d776abed1d825a30a6a",
                "sha256": "7d22b9706c96872b5ee08a1085af9af986832e52c9cc399aa445f4d3d52f2475"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54dd0bea2dbd9d776abed1d825a30a6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 38622,
            "upload_time": "2025-10-15T20:49:41",
            "upload_time_iso_8601": "2025-10-15T20:49:41.880667Z",
            "url": "https://files.pythonhosted.org/packages/10/3a/0e8551e0a254489769ab5336bddf5898bead7f6dad17645f85473922a01d/maxminddb-3.0.0-cp314-cp314t-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46851ee105d2870c62df68aa2c6c2b886910de8936d9a67d261e55b0dfc9be53",
                "md5": "a31e9c1fcccfc4ecd134a761f30da23e",
                "sha256": "758f1b656c8bf7b5308d23bbcfe61918f1dd57394331e4300402fd2814e748f4"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a31e9c1fcccfc4ecd134a761f30da23e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 38028,
            "upload_time": "2025-10-15T20:49:43",
            "upload_time_iso_8601": "2025-10-15T20:49:43.326762Z",
            "url": "https://files.pythonhosted.org/packages/46/85/1ee105d2870c62df68aa2c6c2b886910de8936d9a67d261e55b0dfc9be53/maxminddb-3.0.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c5fb01340be810e8a846db21e839a5d80305628765803fabb45aab31d4c96f6",
                "md5": "d7c1378ebb22a1b242e42ded0735d359",
                "sha256": "1efe051b84bd90c86571ae7e02479d09dcf6f84925702c2abe870f8cec4a443c"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7c1378ebb22a1b242e42ded0735d359",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 117895,
            "upload_time": "2025-10-15T20:49:45",
            "upload_time_iso_8601": "2025-10-15T20:49:45.209241Z",
            "url": "https://files.pythonhosted.org/packages/2c/5f/b01340be810e8a846db21e839a5d80305628765803fabb45aab31d4c96f6/maxminddb-3.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e3406c029169335d3557904749f15e4a03361471869655693c8b83d4b64dd29",
                "md5": "4bf2c71cc975f0d938f3c8a2d438cc4e",
                "sha256": "3a87b1d0409aea9903a5f9f2700abb798c46a115941f28ac23b7905fc3ce3967"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bf2c71cc975f0d938f3c8a2d438cc4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 114609,
            "upload_time": "2025-10-15T20:49:46",
            "upload_time_iso_8601": "2025-10-15T20:49:46.590047Z",
            "url": "https://files.pythonhosted.org/packages/3e/34/06c029169335d3557904749f15e4a03361471869655693c8b83d4b64dd29/maxminddb-3.0.0-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": "18e13dc1c8742e552be3f074943a6fc2e27a6cdaef559613f03b5158833994a4",
                "md5": "982322f82043029da1a1fa599adadd14",
                "sha256": "029fce189a447d0c0a5729685ae1af3793de364f7301391cde5604282901c52f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "982322f82043029da1a1fa599adadd14",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 113977,
            "upload_time": "2025-10-15T20:49:47",
            "upload_time_iso_8601": "2025-10-15T20:49:47.817240Z",
            "url": "https://files.pythonhosted.org/packages/18/e1/3dc1c8742e552be3f074943a6fc2e27a6cdaef559613f03b5158833994a4/maxminddb-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96f3566927372c444dc35f54d17a3a608939586c9b3e5ce9d1282a27ed0e1dde",
                "md5": "6863517d80e6e2f0eefbea0c7680657e",
                "sha256": "0652a3858c6c6f70e94df1eb3e4755087b8278c4280c473fb533280ff2a4d281"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6863517d80e6e2f0eefbea0c7680657e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 111818,
            "upload_time": "2025-10-15T20:49:49",
            "upload_time_iso_8601": "2025-10-15T20:49:49.217034Z",
            "url": "https://files.pythonhosted.org/packages/96/f3/566927372c444dc35f54d17a3a608939586c9b3e5ce9d1282a27ed0e1dde/maxminddb-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9b66f97bbb6535cbf0e57cbfff3cde75d3b419d0e192b38d6f33050d6f97ec3",
                "md5": "2d50f9c0025ad7ec80868776ba9572cc",
                "sha256": "b240375d51a91f98d050f3f4f1ed164c0c7e4fb7c55ef7767242ef3d56147853"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "2d50f9c0025ad7ec80868776ba9572cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 37395,
            "upload_time": "2025-10-15T20:49:50",
            "upload_time_iso_8601": "2025-10-15T20:49:50.401883Z",
            "url": "https://files.pythonhosted.org/packages/c9/b6/6f97bbb6535cbf0e57cbfff3cde75d3b419d0e192b38d6f33050d6f97ec3/maxminddb-3.0.0-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96415296294d494cfc111d000d2e85367a89abe5756f86d2669453c6e1a39334",
                "md5": "130a3fa0126d8a5552772265ce7a7c3f",
                "sha256": "b23e77eaa343dccdf85aad422ac16b65ed2181abdc7678945d07e89187a0b15b"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "130a3fa0126d8a5552772265ce7a7c3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 39553,
            "upload_time": "2025-10-15T20:49:51",
            "upload_time_iso_8601": "2025-10-15T20:49:51.464110Z",
            "url": "https://files.pythonhosted.org/packages/96/41/5296294d494cfc111d000d2e85367a89abe5756f86d2669453c6e1a39334/maxminddb-3.0.0-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c347910eff964987e82ffa78b94a59e943e52cd2e51f40a1ffede0e9e6ecf86",
                "md5": "111a913356ff37be8649ecd44d17de7f",
                "sha256": "d2306c0a50eeafc882fcfce0c99b44400ae95b9283187902236248c2cf904d2a"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "111a913356ff37be8649ecd44d17de7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 35418,
            "upload_time": "2025-10-15T20:49:52",
            "upload_time_iso_8601": "2025-10-15T20:49:52.528621Z",
            "url": "https://files.pythonhosted.org/packages/8c/34/7910eff964987e82ffa78b94a59e943e52cd2e51f40a1ffede0e9e6ecf86/maxminddb-3.0.0-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97c80b89ba3651519c021cf2258a5d0c1af306245f2f5e3e05618f28200270d2",
                "md5": "3756d55b24ca275372f2e8b45388eaf6",
                "sha256": "38ba5ce9efb19f1bf5915f9dca8495f5eb63677cf7760ba7038850d3dcde6572"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "3756d55b24ca275372f2e8b45388eaf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 36144,
            "upload_time": "2025-10-15T20:49:35",
            "upload_time_iso_8601": "2025-10-15T20:49:35.702772Z",
            "url": "https://files.pythonhosted.org/packages/97/c8/0b89ba3651519c021cf2258a5d0c1af306245f2f5e3e05618f28200270d2/maxminddb-3.0.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e9f06b232bb67f13580ae36aa15ddac85d4b38203363801cdd72d70aaba1b56",
                "md5": "0d548a9bd32c3bef12e0879996462658",
                "sha256": "9c8c62de3b10d1940abd0c18ed57879b6618e26b78a17ab4a576ac30f96a0e83"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d548a9bd32c3bef12e0879996462658",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 38069,
            "upload_time": "2025-10-15T20:49:37",
            "upload_time_iso_8601": "2025-10-15T20:49:37.141151Z",
            "url": "https://files.pythonhosted.org/packages/9e/9f/06b232bb67f13580ae36aa15ddac85d4b38203363801cdd72d70aaba1b56/maxminddb-3.0.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70dda76d5b755bdbe24dd1e03f2ce1951d8d9e70fca80abc7498abbec4441f71",
                "md5": "257bb72e12fed42d06a096285d7954f6",
                "sha256": "f0bfd8326a012cb2c8a282531ce900e6535dfc3e50d99c04e64453f782201bd0"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "257bb72e12fed42d06a096285d7954f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 34804,
            "upload_time": "2025-10-15T20:49:38",
            "upload_time_iso_8601": "2025-10-15T20:49:38.440342Z",
            "url": "https://files.pythonhosted.org/packages/70/dd/a76d5b755bdbe24dd1e03f2ce1951d8d9e70fca80abc7498abbec4441f71/maxminddb-3.0.0-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3b241e09c1d6642e054a0af77dcc4d47f581c99c0b69496dd4cf1007fc586f4",
                "md5": "84544334538dd3d529e386d7fa00e5b9",
                "sha256": "e48e2cde4e3974c27b87969363d81063ec09d44cc37a50563abfc7d98214d4a1"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84544334538dd3d529e386d7fa00e5b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 35070,
            "upload_time": "2025-10-15T20:49:53",
            "upload_time_iso_8601": "2025-10-15T20:49:53.612631Z",
            "url": "https://files.pythonhosted.org/packages/e3/b2/41e09c1d6642e054a0af77dcc4d47f581c99c0b69496dd4cf1007fc586f4/maxminddb-3.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3a899d66bb31ff76b6a9aa54fad87943461cd8b3970b956f1eb8f8e0f2fd884",
                "md5": "c8eefd80915f9899a5e529649c67b7be",
                "sha256": "cbd1bda6ebbae9ddffb5e93366734fa139056fe5469a8936c1668e6861f34e95"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c8eefd80915f9899a5e529649c67b7be",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 34698,
            "upload_time": "2025-10-15T20:49:54",
            "upload_time_iso_8601": "2025-10-15T20:49:54.786400Z",
            "url": "https://files.pythonhosted.org/packages/d3/a8/99d66bb31ff76b6a9aa54fad87943461cd8b3970b956f1eb8f8e0f2fd884/maxminddb-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa62e708b73e9b159b8d1ccabea6b1c204413fcf39c5dea7fcd9bed430095d1f",
                "md5": "7904ed32d75f6419747ecf8cf6c2731b",
                "sha256": "87030cc8eb8a81b9a349b64d7b4db13c948c9862e9da7928f4ad40757ebef8a1"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7904ed32d75f6419747ecf8cf6c2731b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 39164,
            "upload_time": "2025-10-15T20:49:56",
            "upload_time_iso_8601": "2025-10-15T20:49:56.299443Z",
            "url": "https://files.pythonhosted.org/packages/aa/62/e708b73e9b159b8d1ccabea6b1c204413fcf39c5dea7fcd9bed430095d1f/maxminddb-3.0.0-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": "4586648eff1eec2995d34dbfdc5664cf6c9da1e718b27370172e9c3a2fc6981e",
                "md5": "047043b9ec00ab4f24a6a03648d162e8",
                "sha256": "c67de5b63dbf798d95ea4ababc12ec599ce79329c1b9df1360978e2f1002915c"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "047043b9ec00ab4f24a6a03648d162e8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 37988,
            "upload_time": "2025-10-15T20:49:58",
            "upload_time_iso_8601": "2025-10-15T20:49:58.053519Z",
            "url": "https://files.pythonhosted.org/packages/45/86/648eff1eec2995d34dbfdc5664cf6c9da1e718b27370172e9c3a2fc6981e/maxminddb-3.0.0-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": "7e9ab9468a103853b65531ac8cd06093bac1bf5b38dac6f5d0e9035a7103013c",
                "md5": "88b9eaeb789f249ea8cd0dab8307240a",
                "sha256": "14f3812b4bfd9c438cc87ae099fd4bbe0c1121d268e62fed840998191b4fe991"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "88b9eaeb789f249ea8cd0dab8307240a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 37220,
            "upload_time": "2025-10-15T20:49:59",
            "upload_time_iso_8601": "2025-10-15T20:49:59.758069Z",
            "url": "https://files.pythonhosted.org/packages/7e/9a/b9468a103853b65531ac8cd06093bac1bf5b38dac6f5d0e9035a7103013c/maxminddb-3.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cd9fe6243736aed22a7fa877e4bce7f0a5d45e07115fc0da2b5c261d2d8dc19",
                "md5": "3ab58e56ef1117950c1b05102f70099c",
                "sha256": "aca2e80a32749e0484e8f0e885014efe0c43218acb6f44c6ca4cd8daa90c8f98"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ab58e56ef1117950c1b05102f70099c",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.10",
            "size": 34992,
            "upload_time": "2025-10-15T20:50:00",
            "upload_time_iso_8601": "2025-10-15T20:50:00.902657Z",
            "url": "https://files.pythonhosted.org/packages/8c/d9/fe6243736aed22a7fa877e4bce7f0a5d45e07115fc0da2b5c261d2d8dc19/maxminddb-3.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70a61719d8e980edd735f2ad10e47fe0345a4598cb20658b53b8649e7adecec3",
                "md5": "de45e29bbd6611cc8a6470db186bcf20",
                "sha256": "0ea42502167190cc52e11ec9c26ff642ee276418f557304d1773b888563feb3f"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "de45e29bbd6611cc8a6470db186bcf20",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.10",
            "size": 34643,
            "upload_time": "2025-10-15T20:50:01",
            "upload_time_iso_8601": "2025-10-15T20:50:01.985845Z",
            "url": "https://files.pythonhosted.org/packages/70/a6/1719d8e980edd735f2ad10e47fe0345a4598cb20658b53b8649e7adecec3/maxminddb-3.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9301fef9105639a0abedf2891b2492399417f4e2a166a1bad4f7aa6d262254b9",
                "md5": "cfdc54a867049bfa6d752735834cea1c",
                "sha256": "71db302b3eafab7d421d482fcaa977bf94d696dde4db6aab9a9ffd3f4ea3c186"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfdc54a867049bfa6d752735834cea1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.10",
            "size": 39163,
            "upload_time": "2025-10-15T20:50:03",
            "upload_time_iso_8601": "2025-10-15T20:50:03.074961Z",
            "url": "https://files.pythonhosted.org/packages/93/01/fef9105639a0abedf2891b2492399417f4e2a166a1bad4f7aa6d262254b9/maxminddb-3.0.0-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": "e688dd27d7834a5db56e7ac6dca93fd5c4c5f2abd3be3eab0dae2c07023dcb20",
                "md5": "48df99020daf8d521d819fb472300bbe",
                "sha256": "98eb4bd49301a9066c6ed5817867b8289af3dc41f60a59e29ee2460d80e348da"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48df99020daf8d521d819fb472300bbe",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.10",
            "size": 37988,
            "upload_time": "2025-10-15T20:50:04",
            "upload_time_iso_8601": "2025-10-15T20:50:04.499549Z",
            "url": "https://files.pythonhosted.org/packages/e6/88/dd27d7834a5db56e7ac6dca93fd5c4c5f2abd3be3eab0dae2c07023dcb20/maxminddb-3.0.0-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": "02c5fa52785a18300a0a5dfa36d4d640bbaf6dc7f41db102f86293156101bdd0",
                "md5": "ebb0b6236e42b12e5bb69419fb9b6a2a",
                "sha256": "2de7f8255157107e3ed03690d9dc0c278fd5da108b2f36b8b161e21c67175940"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ebb0b6236e42b12e5bb69419fb9b6a2a",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.10",
            "size": 37219,
            "upload_time": "2025-10-15T20:50:05",
            "upload_time_iso_8601": "2025-10-15T20:50:05.667441Z",
            "url": "https://files.pythonhosted.org/packages/02/c5/fa52785a18300a0a5dfa36d4d640bbaf6dc7f41db102f86293156101bdd0/maxminddb-3.0.0-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b26e6adbb0b2280a853e8b3344737fea5167e8a2a2ff67168555589b7278e2e8",
                "md5": "295f77ae4463de4d53951ab96a718d41",
                "sha256": "9792b19625945dff146e2e3187f9e470b82330a912f7cea5581b8bd5af30da8b"
            },
            "downloads": -1,
            "filename": "maxminddb-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "295f77ae4463de4d53951ab96a718d41",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 199784,
            "upload_time": "2025-10-15T20:50:07",
            "upload_time_iso_8601": "2025-10-15T20:50:07.283663Z",
            "url": "https://files.pythonhosted.org/packages/b2/6e/6adbb0b2280a853e8b3344737fea5167e8a2a2ff67168555589b7278e2e8/maxminddb-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-15 20:50:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "maxmind",
    "github_project": "MaxMind-DB-Reader-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "maxminddb"
}
        
Elapsed time: 0.83337s