maxminddb


Namemaxminddb JSON
Version 2.6.1 PyPI version JSON
download
home_pageNone
SummaryReader for the MaxMind DB format
upload_time2024-04-12 17:24:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ========================
MaxMind DB Python Module
========================

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

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

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

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

To install maxminddb, type:

.. code-block:: bash

    $ pip install maxminddb

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

.. code-block:: bash

    $ easy_install .

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

Usage
-----

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

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

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

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

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

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

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

Example
-------

.. code-block:: pycon

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

Exceptions
----------

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

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

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

Versioning
----------

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

Support
-------

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

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

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "maxminddb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Gregory Oschwald <goschwald@maxmind.com>",
    "download_url": "https://files.pythonhosted.org/packages/51/a0/515e51f564a7d0323316296ce43a796c92a60246ffdbab8bb6d2e548b4d1/maxminddb-2.6.1.tar.gz",
    "platform": null,
    "description": "========================\nMaxMind DB Python Module\n========================\n\nDescription\n-----------\n\nThis is a Python module for reading MaxMind DB files. The module includes both\na pure Python reader and an optional C extension.\n\nMaxMind DB is a binary file format that stores data indexed by IP address\nsubnets (IPv4 or IPv6).\n\nInstallation\n------------\n\nTo install maxminddb, type:\n\n.. code-block:: bash\n\n    $ pip install maxminddb\n\nIf you are not able to use pip, you may also use easy_install from the\nsource directory:\n\n.. code-block:: bash\n\n    $ easy_install .\n\nThe installer will attempt to build the C extension. If this fails, the\nmodule will fall-back to the pure Python implementation.\n\nUsage\n-----\n\nTo use this module, you must first download or create a MaxMind DB file. We\nprovide `free GeoLite2 databases\n<https://dev.maxmind.com/geoip/geolocate-an-ip/databases?lang=en>`_. These\nfiles must be decompressed with ``gunzip``.\n\nAfter you have obtained a database and imported the module, call\n``open_database`` with a path, or file descriptor (in the case of ``MODE_FD``),\nto the database as the first argument. Optionally, you may pass a mode as the\nsecond argument. The modes are exported from ``maxminddb``. Valid modes are:\n\n* ``MODE_MMAP_EXT`` - use the C extension with memory map.\n* ``MODE_MMAP`` - read from memory map. Pure Python.\n* ``MODE_FILE`` - read database as standard file. Pure Python.\n* ``MODE_MEMORY`` - load database into memory. Pure Python.\n* ``MODE_FD`` - load database into memory from a file descriptor. Pure Python.\n* ``MODE_AUTO`` - try ``MODE_MMAP_EXT``, ``MODE_MMAP``, ``MODE_FILE`` in that\n  order. Default.\n\n**NOTE**: When using ``MODE_FD``, it is the *caller's* responsibility to be\nsure that the file descriptor gets closed properly. The caller may close the\nfile descriptor immediately after the ``Reader`` object is created.\n\nThe ``open_database`` function returns a ``Reader`` object. To look up an IP\naddress, use the ``get`` method on this object. The method will return the\ncorresponding values for the IP address from the database (e.g., a dictionary\nfor GeoIP2/GeoLite2 databases). If the database does not contain a record for\nthat IP address, the method will return ``None``.\n\nIf you wish to also retrieve the prefix length for the record, use the\n``get_with_prefix_len`` method. This returns a tuple containing the record\nfollowed by the network prefix length associated with the record.\n\nYou may also iterate over the whole database. The ``Reader`` class implements\nthe ``__iter__`` method that returns an iterator. This iterator yields a\ntuple containing the network and the record.\n\nExample\n-------\n\n.. code-block:: pycon\n\n    >>> import maxminddb\n    >>>\n    >>> with maxminddb.open_database('GeoLite2-City.mmdb') as reader:\n    >>>\n    >>>     reader.get('152.216.7.110')\n    {'country': ... }\n    >>>\n    >>>     reader.get_with_prefix_len('152.216.7.110')\n    ({'country': ... }, 24)\n    >>>\n    >>>     for network, record in reader:\n    >>>         ...\n\nExceptions\n----------\n\nThe module will return an ``InvalidDatabaseError`` if the database is corrupt\nor otherwise invalid. A ``ValueError`` will be thrown if you look up an\ninvalid IP address or an IPv6 address in an IPv4 database.\n\nRequirements\n------------\n\nThis code requires Python 3.8+. Older versions are not supported. The C\nextension requires CPython.\n\nVersioning\n----------\n\nThe MaxMind DB Python module uses `Semantic Versioning <https://semver.org/>`_.\n\nSupport\n-------\n\nPlease report all issues with this code using the `GitHub issue tracker\n<https://github.com/maxmind/MaxMind-DB-Reader-python/issues>`_\n\nIf you are having an issue with a MaxMind service that is not specific to this\nAPI, please contact `MaxMind support <https://www.maxmind.com/en/support>`_ for\nassistance.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Reader for the MaxMind DB format",
    "version": "2.6.1",
    "project_urls": {
        "Documentation": "https://maxminddb.readthedocs.org/",
        "Homepage": "https://www.maxmind.com/",
        "Issue Tracker": "https://github.com/maxmind/MaxMind-DB-Reader-python/issues",
        "Source Code": "https://github.com/maxmind/MaxMind-DB-Reader-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aab328ce548f61ccc08459964ee9262b45c38761ca649bcfddb332ac01e832c4",
                "md5": "de76c9c7679ba71a815499791380ece3",
                "sha256": "3c8db454446d83b65bd605f6093400897a8698de82ca1c20f37494361ee5b6a7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de76c9c7679ba71a815499791380ece3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34923,
            "upload_time": "2024-04-12T17:23:16",
            "upload_time_iso_8601": "2024-04-12T17:23:16.304852Z",
            "url": "https://files.pythonhosted.org/packages/aa/b3/28ce548f61ccc08459964ee9262b45c38761ca649bcfddb332ac01e832c4/maxminddb-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a31eddcbf4151c82c3ae75a5bf41f3aa48f9b5e2b8f5aa03f90ba6b9d6883307",
                "md5": "d086863a13a97b7866a3ea986366a983",
                "sha256": "3f04a217240323caea98adb0eaf0342466656486fc27b18ff53f74414dbaecce"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d086863a13a97b7866a3ea986366a983",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34781,
            "upload_time": "2024-04-12T17:23:23",
            "upload_time_iso_8601": "2024-04-12T17:23:23.057132Z",
            "url": "https://files.pythonhosted.org/packages/a3/1e/ddcbf4151c82c3ae75a5bf41f3aa48f9b5e2b8f5aa03f90ba6b9d6883307/maxminddb-2.6.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a86d5423e658e58efddef853545be534220af201464890ce6e0941c537d7cf1",
                "md5": "0a0818a9a59890eea5eeccaaa2896606",
                "sha256": "f40c1a145550a297b8c8743d62b8b1bf9fa572b36fa1df9157ea45fed0da9abc"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0a0818a9a59890eea5eeccaaa2896606",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 88510,
            "upload_time": "2024-04-12T17:23:24",
            "upload_time_iso_8601": "2024-04-12T17:23:24.823692Z",
            "url": "https://files.pythonhosted.org/packages/8a/86/d5423e658e58efddef853545be534220af201464890ce6e0941c537d7cf1/maxminddb-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3009249e16be1d2d82d5e04ad65a43b9def6501b6ad453bce5a66b777540782e",
                "md5": "76c4c4a682ab45012fa9ff25df61bca0",
                "sha256": "940c349e0937e1123f1ae7f213e4a7e90e972cd4501c5898ec70814e4c472747"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76c4c4a682ab45012fa9ff25df61bca0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 87770,
            "upload_time": "2024-04-12T17:23:26",
            "upload_time_iso_8601": "2024-04-12T17:23:26.313526Z",
            "url": "https://files.pythonhosted.org/packages/30/09/249e16be1d2d82d5e04ad65a43b9def6501b6ad453bce5a66b777540782e/maxminddb-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97979783231fa7f83d95099407a4a0204d09d4fbfe64588bfebcdf2449d04652",
                "md5": "7138ab15b568addc53cfaf139904dc60",
                "sha256": "c8f9fcd1bb0e016e7a2ff2341920f99932cd0f573e18bc89e9ad168c9cb93392"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7138ab15b568addc53cfaf139904dc60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 86224,
            "upload_time": "2024-04-12T17:23:27",
            "upload_time_iso_8601": "2024-04-12T17:23:27.770096Z",
            "url": "https://files.pythonhosted.org/packages/97/97/9783231fa7f83d95099407a4a0204d09d4fbfe64588bfebcdf2449d04652/maxminddb-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbb754449e510cee1a66584f419e26adb664a0fe342df6c33d533dc28e73ac37",
                "md5": "aced8c2cbcd10a779c4e164dfb3c9f4f",
                "sha256": "a467ebf7cec651001a318aab5c9582f6774886e8d2d86aac77db33e5006ea118"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aced8c2cbcd10a779c4e164dfb3c9f4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 92663,
            "upload_time": "2024-04-12T17:23:29",
            "upload_time_iso_8601": "2024-04-12T17:23:29.029123Z",
            "url": "https://files.pythonhosted.org/packages/fb/b7/54449e510cee1a66584f419e26adb664a0fe342df6c33d533dc28e73ac37/maxminddb-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11ccbe6ba964f35cf73ae41c4d379b55834f906b185114f1087485cfa47af9d0",
                "md5": "f316ca06d829e4544c5291a835804899",
                "sha256": "3ce8cdf86cbfb569fe7f33dbef283476d7693e002a4b73195996655067f770bd"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f316ca06d829e4544c5291a835804899",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 90977,
            "upload_time": "2024-04-12T17:23:30",
            "upload_time_iso_8601": "2024-04-12T17:23:30.923678Z",
            "url": "https://files.pythonhosted.org/packages/11/cc/be6ba964f35cf73ae41c4d379b55834f906b185114f1087485cfa47af9d0/maxminddb-2.6.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bec49024fd526afbb8f00f9c71de0f8a4d3e4bfac205e222e86a982035eba02b",
                "md5": "a954fc97e007b05325e8a96b879bd5d7",
                "sha256": "6d3790e9ee0157a320b0aa7ddf9f33290f33797608beae604b202a24aaf9db17"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a954fc97e007b05325e8a96b879bd5d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 91905,
            "upload_time": "2024-04-12T17:23:32",
            "upload_time_iso_8601": "2024-04-12T17:23:32.175647Z",
            "url": "https://files.pythonhosted.org/packages/be/c4/9024fd526afbb8f00f9c71de0f8a4d3e4bfac205e222e86a982035eba02b/maxminddb-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9794371462d74bb8428eac674e357f308d093ae3785d7128741804c0ec8e1335",
                "md5": "fb4aec88d0311304ea548a88c7561259",
                "sha256": "4a75d73d8aaa82718d3553880951d1b7fe8c1cd309a84b992ca7789b832b1de7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "fb4aec88d0311304ea548a88c7561259",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34216,
            "upload_time": "2024-04-12T17:23:33",
            "upload_time_iso_8601": "2024-04-12T17:23:33.446998Z",
            "url": "https://files.pythonhosted.org/packages/97/94/371462d74bb8428eac674e357f308d093ae3785d7128741804c0ec8e1335/maxminddb-2.6.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc1197cbb0b874654e744fc3eb0cd7ed5096a541d943fbfd6be67ecdb0f9b3f",
                "md5": "d56271a3e384f1c162a981ef1c396c7c",
                "sha256": "9ac567627ac141d3e1a797b5696b4e652b1660ddfa6c861f202eed1eb34143ab"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d56271a3e384f1c162a981ef1c396c7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 36281,
            "upload_time": "2024-04-12T17:23:35",
            "upload_time_iso_8601": "2024-04-12T17:23:35.060221Z",
            "url": "https://files.pythonhosted.org/packages/1d/c1/197cbb0b874654e744fc3eb0cd7ed5096a541d943fbfd6be67ecdb0f9b3f/maxminddb-2.6.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad737f53ac26d9269a9edf1c0ea42f1608721a89dde105b3486347e196d0cd11",
                "md5": "f4fb82a396e584af90fffd5c3e00d111",
                "sha256": "24f362eb049109f01dda5adba03d703d1a83e73fa95569ea2bc723a7ecbbea2b"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4fb82a396e584af90fffd5c3e00d111",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34924,
            "upload_time": "2024-04-12T17:23:36",
            "upload_time_iso_8601": "2024-04-12T17:23:36.233456Z",
            "url": "https://files.pythonhosted.org/packages/ad/73/7f53ac26d9269a9edf1c0ea42f1608721a89dde105b3486347e196d0cd11/maxminddb-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "503c825cca3ce8d0603d57c0d14b1fe2da8640a859bc3eb61a39305d771ef507",
                "md5": "6409890b6817cb85aa14785d0771fca1",
                "sha256": "39be382e82ecf231869e4c3f628f18b21f032b7bc42f980b75f042c16818b991"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6409890b6817cb85aa14785d0771fca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34780,
            "upload_time": "2024-04-12T17:23:37",
            "upload_time_iso_8601": "2024-04-12T17:23:37.712687Z",
            "url": "https://files.pythonhosted.org/packages/50/3c/825cca3ce8d0603d57c0d14b1fe2da8640a859bc3eb61a39305d771ef507/maxminddb-2.6.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "862cef95db198d734e3da445a0e3d5c3751fad37d5647fd59dcfbf16f773b0f0",
                "md5": "92df9d42011eedf20ac7f43a829bbf5e",
                "sha256": "103c7c5740a63d42f1062a99c79712d73106b3b0663c4e6c559f502b673c50c8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92df9d42011eedf20ac7f43a829bbf5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 88720,
            "upload_time": "2024-04-12T17:23:38",
            "upload_time_iso_8601": "2024-04-12T17:23:38.763542Z",
            "url": "https://files.pythonhosted.org/packages/86/2c/ef95db198d734e3da445a0e3d5c3751fad37d5647fd59dcfbf16f773b0f0/maxminddb-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "813e94f89bb13502d6534fe9a5cac5bb639aeb1140d014c2c257844fca26e6fd",
                "md5": "54fd1fc1b7870cc47439866c4b6b9e70",
                "sha256": "03f59f5c06bb54907e74f8a5d5149032a6e14cb2d990e17e4b0446d18195ede6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54fd1fc1b7870cc47439866c4b6b9e70",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 87985,
            "upload_time": "2024-04-12T17:23:39",
            "upload_time_iso_8601": "2024-04-12T17:23:39.925173Z",
            "url": "https://files.pythonhosted.org/packages/81/3e/94f89bb13502d6534fe9a5cac5bb639aeb1140d014c2c257844fca26e6fd/maxminddb-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0982ef8300796b49a1076189eaa97531d8657eb4aca1f7c7945aee262eadb49",
                "md5": "7353532bd588eec78d7e46ad1c3c6dcb",
                "sha256": "8eb72818e43d2e52e896e72622f41219afe98913eda456ef626fb10a636acca3"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7353532bd588eec78d7e46ad1c3c6dcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 86399,
            "upload_time": "2024-04-12T17:23:41",
            "upload_time_iso_8601": "2024-04-12T17:23:41.464281Z",
            "url": "https://files.pythonhosted.org/packages/c0/98/2ef8300796b49a1076189eaa97531d8657eb4aca1f7c7945aee262eadb49/maxminddb-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85cff4258cbc5e4f9a5b613439c8ae68ccb43d0cf7a9709446835c62e86e538d",
                "md5": "3c59f17bd83df5595409b7e083e0970c",
                "sha256": "cd4afedf6fab1678e5fac0f0cdeb9be2f77fcc07ae1ebc5abe788aec32dd3de8"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c59f17bd83df5595409b7e083e0970c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 93652,
            "upload_time": "2024-04-12T17:23:42",
            "upload_time_iso_8601": "2024-04-12T17:23:42.705305Z",
            "url": "https://files.pythonhosted.org/packages/85/cf/f4258cbc5e4f9a5b613439c8ae68ccb43d0cf7a9709446835c62e86e538d/maxminddb-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3d889730e8b6492f652aecb5fd5227030f26b459f0ea098c399c633d1675075",
                "md5": "e0ad1ef710684cc4184d1986b2071c08",
                "sha256": "bcc9ac85007ab222838974b084f49bb62531669e793a7730260dec2cf6e34bfd"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e0ad1ef710684cc4184d1986b2071c08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 91873,
            "upload_time": "2024-04-12T17:23:43",
            "upload_time_iso_8601": "2024-04-12T17:23:43.944189Z",
            "url": "https://files.pythonhosted.org/packages/f3/d8/89730e8b6492f652aecb5fd5227030f26b459f0ea098c399c633d1675075/maxminddb-2.6.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3236913d8928f4183aa8f4f339b0938e99d85311bea63e36acbd6f74fbb0f0",
                "md5": "026f81784d58e5f9fc23fd055bc9189f",
                "sha256": "4774750c744c378653536ad6d5f8e28bcb2566e7e24081e881b00c95b51cad09"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "026f81784d58e5f9fc23fd055bc9189f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 92788,
            "upload_time": "2024-04-12T17:23:45",
            "upload_time_iso_8601": "2024-04-12T17:23:45.226006Z",
            "url": "https://files.pythonhosted.org/packages/0f/32/36913d8928f4183aa8f4f339b0938e99d85311bea63e36acbd6f74fbb0f0/maxminddb-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d89a088a0db281b288b429c18e5ae8311199dab0e3d5f8a7d576b5ab36b564f1",
                "md5": "993e10c926f25c36c8dc51f245cf6415",
                "sha256": "9b8ef7ed2bbbd8216a0560dd06caafe2fc1d6f9fa18cf46282c6f4a9a3d91b9c"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "993e10c926f25c36c8dc51f245cf6415",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34214,
            "upload_time": "2024-04-12T17:23:46",
            "upload_time_iso_8601": "2024-04-12T17:23:46.426954Z",
            "url": "https://files.pythonhosted.org/packages/d8/9a/088a0db281b288b429c18e5ae8311199dab0e3d5f8a7d576b5ab36b564f1/maxminddb-2.6.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d19fa2eb4adca63f14ff94285d64e852bf9e31cfb2f29e97423dff270504751b",
                "md5": "0f57c52138b75a7e2d0897142abb6dda",
                "sha256": "5555698be89fa568b787570911a2aa5c666c335c12dcc5cd8166f96e3155e210"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f57c52138b75a7e2d0897142abb6dda",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 36289,
            "upload_time": "2024-04-12T17:23:48",
            "upload_time_iso_8601": "2024-04-12T17:23:48.222576Z",
            "url": "https://files.pythonhosted.org/packages/d1/9f/a2eb4adca63f14ff94285d64e852bf9e31cfb2f29e97423dff270504751b/maxminddb-2.6.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03a66e8a81b9b17a890b655819ccbed58cbb170e2b08fa195eb71bd3ed563670",
                "md5": "6873431a3862e48b21c5d8cdb5a0d0c0",
                "sha256": "d0a8b70fcfa0980c0e8501e1506115dbd6f2410436f54161647627430d7cbb66"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6873431a3862e48b21c5d8cdb5a0d0c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35172,
            "upload_time": "2024-04-12T17:23:49",
            "upload_time_iso_8601": "2024-04-12T17:23:49.667273Z",
            "url": "https://files.pythonhosted.org/packages/03/a6/6e8a81b9b17a890b655819ccbed58cbb170e2b08fa195eb71bd3ed563670/maxminddb-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8492f01ae07b8a0a010d4c929d7d914cc3b3760ab41a03897e8eb106a1b1d1ed",
                "md5": "aae4acd119f7ded7dba8c2cea7a83803",
                "sha256": "5719b58cfbed4464f89afcbdbaf1eb84f9de805f1716f27c671bf11635ce5458"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aae4acd119f7ded7dba8c2cea7a83803",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34941,
            "upload_time": "2024-04-12T17:23:51",
            "upload_time_iso_8601": "2024-04-12T17:23:51.077646Z",
            "url": "https://files.pythonhosted.org/packages/84/92/f01ae07b8a0a010d4c929d7d914cc3b3760ab41a03897e8eb106a1b1d1ed/maxminddb-2.6.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "537b65eadbdf4ac0f1a5aa24f151637660b0047dc9d28ae791c8109d79f5abe3",
                "md5": "36481c989bbea4652d5450503b37f8ec",
                "sha256": "87989f153ce9a0974c69bb0bf26a3cb339c7dfbbfe3330883075543d8ef70fc5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36481c989bbea4652d5450503b37f8ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 90012,
            "upload_time": "2024-04-12T17:23:52",
            "upload_time_iso_8601": "2024-04-12T17:23:52.719084Z",
            "url": "https://files.pythonhosted.org/packages/53/7b/65eadbdf4ac0f1a5aa24f151637660b0047dc9d28ae791c8109d79f5abe3/maxminddb-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21d8be9c95c2c2e8f8a5fbf80f946561b7dbaa53d2452e6f38c67a1adf169765",
                "md5": "a33abbe249792e1673710a1da6ad35c9",
                "sha256": "fa43c3783da55ca2a2ed68b97048b63c86ee1462caf32e5f9bfe038db9dac31f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a33abbe249792e1673710a1da6ad35c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 89503,
            "upload_time": "2024-04-12T17:23:53",
            "upload_time_iso_8601": "2024-04-12T17:23:53.977198Z",
            "url": "https://files.pythonhosted.org/packages/21/d8/be9c95c2c2e8f8a5fbf80f946561b7dbaa53d2452e6f38c67a1adf169765/maxminddb-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "063f89d6feea840bb88e8491cfec83e059c02f960da01045cdfe2820592a809e",
                "md5": "89b2c38348b794d5ce81f23881feeafa",
                "sha256": "b3863e6017b96ee3ae1a6bb7ef0c25cd9013b04cccc1fd27880ab6371cdd1d84"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "89b2c38348b794d5ce81f23881feeafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 87438,
            "upload_time": "2024-04-12T17:23:55",
            "upload_time_iso_8601": "2024-04-12T17:23:55.083719Z",
            "url": "https://files.pythonhosted.org/packages/06/3f/89d6feea840bb88e8491cfec83e059c02f960da01045cdfe2820592a809e/maxminddb-2.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f352163d98dc905cc5cf1fea85b5ed0fe29b9d2d35d83a56a23bbfc805eaf2b",
                "md5": "e5810cef3aa46bf8dd11a7c7182477ce",
                "sha256": "f1481c05b2a7fa909bb48ada037d2c920d7845ea737d9a1e6513ab1c85a64a32"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e5810cef3aa46bf8dd11a7c7182477ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 94439,
            "upload_time": "2024-04-12T17:23:56",
            "upload_time_iso_8601": "2024-04-12T17:23:56.449707Z",
            "url": "https://files.pythonhosted.org/packages/9f/35/2163d98dc905cc5cf1fea85b5ed0fe29b9d2d35d83a56a23bbfc805eaf2b/maxminddb-2.6.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0393ea29e2b42e48c985d8d93ee3f0934f2016d706109cc98be404fcdfd9b219",
                "md5": "623f7701f5d8ec296f6fba4037a99ed6",
                "sha256": "416f3fddd1add9a421483b26d24abaf2dd355f3a5afd72923681698d345d99d6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "623f7701f5d8ec296f6fba4037a99ed6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 92496,
            "upload_time": "2024-04-12T17:23:57",
            "upload_time_iso_8601": "2024-04-12T17:23:57.681879Z",
            "url": "https://files.pythonhosted.org/packages/03/93/ea29e2b42e48c985d8d93ee3f0934f2016d706109cc98be404fcdfd9b219/maxminddb-2.6.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea096444c52a98a1d52d0b37f67ca82c11fa8a362d226adac79946c44033a636",
                "md5": "b7c5cda2668ae5ee4980747589eda352",
                "sha256": "0f5286b5db8065a59cf9e005281c9d74d3839a8cda8e8ee04305d42d5afcc523"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7c5cda2668ae5ee4980747589eda352",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 93730,
            "upload_time": "2024-04-12T17:23:59",
            "upload_time_iso_8601": "2024-04-12T17:23:59.535735Z",
            "url": "https://files.pythonhosted.org/packages/ea/09/6444c52a98a1d52d0b37f67ca82c11fa8a362d226adac79946c44033a636/maxminddb-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "278ca847133d28ca263c52921de5638980b5aebd470e2ee49a0bbcf445cc4a52",
                "md5": "0d7bbc6fb03ccea04c1460fc85e439e4",
                "sha256": "d44081ec6633a225e051eaf851aa5986aae5f5c8c1f33cf78b3a825c5d0df642"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "0d7bbc6fb03ccea04c1460fc85e439e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34406,
            "upload_time": "2024-04-12T17:24:01",
            "upload_time_iso_8601": "2024-04-12T17:24:01.264769Z",
            "url": "https://files.pythonhosted.org/packages/27/8c/a847133d28ca263c52921de5638980b5aebd470e2ee49a0bbcf445cc4a52/maxminddb-2.6.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "730e2227a56c000d19703d134e3a3b54e0c6644b27b98dcd4bd41dd021433688",
                "md5": "415370715f008f9936627f277db95d13",
                "sha256": "f117fe0b5bafee78dbd97606dc60bba2160cfe1968484925174d7aadb7a38f37"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "415370715f008f9936627f277db95d13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 36372,
            "upload_time": "2024-04-12T17:24:02",
            "upload_time_iso_8601": "2024-04-12T17:24:02.473496Z",
            "url": "https://files.pythonhosted.org/packages/73/0e/2227a56c000d19703d134e3a3b54e0c6644b27b98dcd4bd41dd021433688/maxminddb-2.6.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24317993b2d26259e69308b841ee97d2a219793465e2150053115b0aca84ffaa",
                "md5": "5c34a6fa4454ce1d7a0b74ae25383849",
                "sha256": "c9dd4275749d1d3fb3700df373cd593235ee307f17a3180bad151562e8294a61"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c34a6fa4454ce1d7a0b74ae25383849",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34922,
            "upload_time": "2024-04-12T17:24:04",
            "upload_time_iso_8601": "2024-04-12T17:24:04.079483Z",
            "url": "https://files.pythonhosted.org/packages/24/31/7993b2d26259e69308b841ee97d2a219793465e2150053115b0aca84ffaa/maxminddb-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fe9a195da9569752f52748603a666a9d98d4c520e821a06371d3cd289e57ff1",
                "md5": "9f1c4c7026064708c9e6b20b469af85f",
                "sha256": "242e572b3e132146acd0e2633c00564a8e33cf6de54c060778c618070d109054"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f1c4c7026064708c9e6b20b469af85f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34794,
            "upload_time": "2024-04-12T17:24:05",
            "upload_time_iso_8601": "2024-04-12T17:24:05.487460Z",
            "url": "https://files.pythonhosted.org/packages/3f/e9/a195da9569752f52748603a666a9d98d4c520e821a06371d3cd289e57ff1/maxminddb-2.6.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbf94e6042761ca9fdab672aa13880a1c13187977dfd7d6e7f9137a304cb1cea",
                "md5": "ad018c152d2fb493dc4dd2e7d26c0e25",
                "sha256": "4d718bb2379d06e8ca3c4aa09f22634e84fe76db44f66845d7c18c1f0e414fd6"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad018c152d2fb493dc4dd2e7d26c0e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 89680,
            "upload_time": "2024-04-12T17:24:06",
            "upload_time_iso_8601": "2024-04-12T17:24:06.711791Z",
            "url": "https://files.pythonhosted.org/packages/cb/f9/4e6042761ca9fdab672aa13880a1c13187977dfd7d6e7f9137a304cb1cea/maxminddb-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cc79f3c2d06ece5b1a504a723364004ac4e2ac510c82f2f09d1d219fc16d43c",
                "md5": "8b38232371d3130910d4a0d070975856",
                "sha256": "2319e73cad84bb3897a0cfbe8473a87b0e83b7a69b84118be829cc761a4388ac"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b38232371d3130910d4a0d070975856",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 88804,
            "upload_time": "2024-04-12T17:24:08",
            "upload_time_iso_8601": "2024-04-12T17:24:08.139256Z",
            "url": "https://files.pythonhosted.org/packages/1c/c7/9f3c2d06ece5b1a504a723364004ac4e2ac510c82f2f09d1d219fc16d43c/maxminddb-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77419a4be05c54827ca690868ef12cd9d947237f176bf7d5e888fd20a3604b37",
                "md5": "a6b9cc0b2598ad6a2cc5f37bc94e0351",
                "sha256": "a029d2c23b8ad9f4e8316319d79f0d55899aa8e6d69a2bee77d998991256dee0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a6b9cc0b2598ad6a2cc5f37bc94e0351",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 87261,
            "upload_time": "2024-04-12T17:24:10",
            "upload_time_iso_8601": "2024-04-12T17:24:10.002650Z",
            "url": "https://files.pythonhosted.org/packages/77/41/9a4be05c54827ca690868ef12cd9d947237f176bf7d5e888fd20a3604b37/maxminddb-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "737b75150d63f308da376f8b5deb9a45b7a47f177d307fca02f5454b6ecb7b49",
                "md5": "cf41de7315c58a6d1be5024e875c4aea",
                "sha256": "9eb6a13e781e2e7a02e88734e29139fb0e5e4024020b146da56202893e425595"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf41de7315c58a6d1be5024e875c4aea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 93758,
            "upload_time": "2024-04-12T17:24:11",
            "upload_time_iso_8601": "2024-04-12T17:24:11.257513Z",
            "url": "https://files.pythonhosted.org/packages/73/7b/75150d63f308da376f8b5deb9a45b7a47f177d307fca02f5454b6ecb7b49/maxminddb-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2b0fb3c1450de7150312fcacc2be5975135fae98d99ccbb697117b912c065cf",
                "md5": "4bc82aac142708b0a5e8e8612203fd51",
                "sha256": "86457125adccf5c248d481fc1cd80e77674afeaf45995aed480a3c7e0e118ddc"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4bc82aac142708b0a5e8e8612203fd51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 91908,
            "upload_time": "2024-04-12T17:24:12",
            "upload_time_iso_8601": "2024-04-12T17:24:12.539238Z",
            "url": "https://files.pythonhosted.org/packages/b2/b0/fb3c1450de7150312fcacc2be5975135fae98d99ccbb697117b912c065cf/maxminddb-2.6.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b845de0c3afed7274ad884b78cd3c9ad13b9bfc3f73584695fb1f9209da93b",
                "md5": "a625b3b99355a578aa69e8b792a1245c",
                "sha256": "153ca60a282d5ba1db86eedd27b6bb0e158d0f94682598f9900f20690e01395f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a625b3b99355a578aa69e8b792a1245c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 92881,
            "upload_time": "2024-04-12T17:24:13",
            "upload_time_iso_8601": "2024-04-12T17:24:13.764164Z",
            "url": "https://files.pythonhosted.org/packages/c6/b8/45de0c3afed7274ad884b78cd3c9ad13b9bfc3f73584695fb1f9209da93b/maxminddb-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2be55889e64bf11080e0f7fe200725b9d5f177faa94314afd8220f524b06199",
                "md5": "7354f4269ebc56b3a9253340c0efda09",
                "sha256": "21e93c0d094d167bb96ab49c89df2746d78c99228c5273bd7dc6d11385dd63b3"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7354f4269ebc56b3a9253340c0efda09",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34234,
            "upload_time": "2024-04-12T17:24:15",
            "upload_time_iso_8601": "2024-04-12T17:24:15.672647Z",
            "url": "https://files.pythonhosted.org/packages/d2/be/55889e64bf11080e0f7fe200725b9d5f177faa94314afd8220f524b06199/maxminddb-2.6.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db8ce960da096f5ac28f15c0eadc9b12fbc82934959e1724d7b66b0d4a9c5cfb",
                "md5": "f77143da1d0f8dba5ef6a37baa4c39b3",
                "sha256": "ae3c76fbc989eca9b31512ae899528a9dae9092f4c9b7e807ed55b9ff4254ed0"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f77143da1d0f8dba5ef6a37baa4c39b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 36282,
            "upload_time": "2024-04-12T17:24:17",
            "upload_time_iso_8601": "2024-04-12T17:24:17.420228Z",
            "url": "https://files.pythonhosted.org/packages/db/8c/e960da096f5ac28f15c0eadc9b12fbc82934959e1724d7b66b0d4a9c5cfb/maxminddb-2.6.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdc3f3d483ceb7e54bf06994fa32c8d5f312fb7910092ca40bb3c19d6b614d1a",
                "md5": "b88e6ffa2b5858e2a25c297e6e0c9b71",
                "sha256": "f11a0899eb671c77dc131c8dd5d6702eb2d7c19952790c87b36ef72d73696bc2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b88e6ffa2b5858e2a25c297e6e0c9b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34927,
            "upload_time": "2024-04-12T17:24:18",
            "upload_time_iso_8601": "2024-04-12T17:24:18.511460Z",
            "url": "https://files.pythonhosted.org/packages/bd/c3/f3d483ceb7e54bf06994fa32c8d5f312fb7910092ca40bb3c19d6b614d1a/maxminddb-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16af76458be7d92a58fc18d47f419a977d32c709c8472076230638641f7262da",
                "md5": "e9861a9630dd6441e463aff6da657f6a",
                "sha256": "db8e0a5c1262d43ba5d0f6efb357ba9e5b65b7f3fc982b77a9f543f222a7fca3"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e9861a9630dd6441e463aff6da657f6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34789,
            "upload_time": "2024-04-12T17:24:19",
            "upload_time_iso_8601": "2024-04-12T17:24:19.858682Z",
            "url": "https://files.pythonhosted.org/packages/16/af/76458be7d92a58fc18d47f419a977d32c709c8472076230638641f7262da/maxminddb-2.6.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56f768702c329f9c8dfb5f6d65425fef79a1ac3ed4d2464163c2686d1a53d4b1",
                "md5": "3bf8242f04f23f073b90423115a0beb9",
                "sha256": "9c5aa6d50a30cc733b57afa80cbb51c004a7beac23a6c6a56e3550992faaeac1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bf8242f04f23f073b90423115a0beb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 88227,
            "upload_time": "2024-04-12T17:24:21",
            "upload_time_iso_8601": "2024-04-12T17:24:21.174692Z",
            "url": "https://files.pythonhosted.org/packages/56/f7/68702c329f9c8dfb5f6d65425fef79a1ac3ed4d2464163c2686d1a53d4b1/maxminddb-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd3b0977990059d4e78edc6427b1f2040a739e0dffd2fb5ad8e1c61420aabdfa",
                "md5": "d23ff0f92545f4377ecfe245c9d5d7ac",
                "sha256": "f6edc11c4fb4c1ecbfb28cc5da167f7db415c4fabc1aeff0171b06473057e5fb"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d23ff0f92545f4377ecfe245c9d5d7ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 87532,
            "upload_time": "2024-04-12T17:24:22",
            "upload_time_iso_8601": "2024-04-12T17:24:22.478068Z",
            "url": "https://files.pythonhosted.org/packages/dd/3b/0977990059d4e78edc6427b1f2040a739e0dffd2fb5ad8e1c61420aabdfa/maxminddb-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e33a9a11ba64dc80ce0aa837fc5a2504bd83badff3f5ad94f34d42160599db8f",
                "md5": "b8ce5e93a9a259c07445c596b9f9d1df",
                "sha256": "2a943e4a0dd59bd6b98ee131f40bdf4efbab8db7667c3dfa9165b1e06ed3b46d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b8ce5e93a9a259c07445c596b9f9d1df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 85972,
            "upload_time": "2024-04-12T17:24:23",
            "upload_time_iso_8601": "2024-04-12T17:24:23.684246Z",
            "url": "https://files.pythonhosted.org/packages/e3/3a/9a11ba64dc80ce0aa837fc5a2504bd83badff3f5ad94f34d42160599db8f/maxminddb-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b1fa19213e620f313f9b9ef22be9f4b3e7f4ea26e6acdd26c76f24783d35186",
                "md5": "44ee78c66c58cdabf663b680fa538d1f",
                "sha256": "33859797f89c2949f86a98a0b89dc577a40561643e78084ad44307bbdc40dd76"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "44ee78c66c58cdabf663b680fa538d1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 92343,
            "upload_time": "2024-04-12T17:24:25",
            "upload_time_iso_8601": "2024-04-12T17:24:25.033067Z",
            "url": "https://files.pythonhosted.org/packages/3b/1f/a19213e620f313f9b9ef22be9f4b3e7f4ea26e6acdd26c76f24783d35186/maxminddb-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2647625d52c55faf056d43cf2fc2185f870fd6d77e67b8d4bfb8995a13b6ecf5",
                "md5": "d2da573d088e2a50ee3cf67a4eab6bce",
                "sha256": "d45a6a5d964182ff083f2ee545d049517e88f0898ab4df3e119582518cd97b64"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d2da573d088e2a50ee3cf67a4eab6bce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 90699,
            "upload_time": "2024-04-12T17:24:26",
            "upload_time_iso_8601": "2024-04-12T17:24:26.268631Z",
            "url": "https://files.pythonhosted.org/packages/26/47/625d52c55faf056d43cf2fc2185f870fd6d77e67b8d4bfb8995a13b6ecf5/maxminddb-2.6.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd41652ab1a0cf9a84ef2534bdce912c3fe89e78ec9706bff896e13c1e25d36f",
                "md5": "1cafe1bf6a7daf663cf58c6a93583f54",
                "sha256": "b1090088504c4b45cf1f3ffc32eabd6d5065e56883d910658e5d5f31e80e4be4"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1cafe1bf6a7daf663cf58c6a93583f54",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 91630,
            "upload_time": "2024-04-12T17:24:27",
            "upload_time_iso_8601": "2024-04-12T17:24:27.778379Z",
            "url": "https://files.pythonhosted.org/packages/cd/41/652ab1a0cf9a84ef2534bdce912c3fe89e78ec9706bff896e13c1e25d36f/maxminddb-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "861f82192da84d46a51284026e3a29a29077981cf2ea332afd8a88cd01e0fe52",
                "md5": "7ce5a71b475cabdd134a4d6a23815532",
                "sha256": "41af38a328cfa94041135753b7ab2dc08863b22535a4295f6e65f72de0a862b9"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "7ce5a71b475cabdd134a4d6a23815532",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34231,
            "upload_time": "2024-04-12T17:24:29",
            "upload_time_iso_8601": "2024-04-12T17:24:29.067088Z",
            "url": "https://files.pythonhosted.org/packages/86/1f/82192da84d46a51284026e3a29a29077981cf2ea332afd8a88cd01e0fe52/maxminddb-2.6.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78039c358f0e15184b2d2c06225bffbddb88b74505fb1d9d2a242f4550897f90",
                "md5": "07ef72eb4f91a4172fd0224db6c91e24",
                "sha256": "4a2a1b713ceea188d066ca676c033f334baad4f41bc1d89640c9795d514b6617"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "07ef72eb4f91a4172fd0224db6c91e24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 36284,
            "upload_time": "2024-04-12T17:24:30",
            "upload_time_iso_8601": "2024-04-12T17:24:30.781337Z",
            "url": "https://files.pythonhosted.org/packages/78/03/9c358f0e15184b2d2c06225bffbddb88b74505fb1d9d2a242f4550897f90/maxminddb-2.6.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5792c96919f8923b69b3ae0b7d9e2def1022981e3c3a8a1bc46014a8905354c9",
                "md5": "788c57b30e31492e6474c9703c30fccf",
                "sha256": "b8e0fa2ec7f58411262ab3edd837d3a1844e6068e128eca222867ad465b97e9d"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "788c57b30e31492e6474c9703c30fccf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 33766,
            "upload_time": "2024-04-12T17:24:32",
            "upload_time_iso_8601": "2024-04-12T17:24:32.626640Z",
            "url": "https://files.pythonhosted.org/packages/57/92/c96919f8923b69b3ae0b7d9e2def1022981e3c3a8a1bc46014a8905354c9/maxminddb-2.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12e6063508b826abf7193a4e593d2bcb08ab4603484314eccd80d98f739728d3",
                "md5": "6d89b61c26c6778f744fdc3f4a72272f",
                "sha256": "2396eb49868c2f078ba566359b66249643409dfca1372b5497cef06bf7965c4a"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6d89b61c26c6778f744fdc3f4a72272f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 33572,
            "upload_time": "2024-04-12T17:24:33",
            "upload_time_iso_8601": "2024-04-12T17:24:33.739818Z",
            "url": "https://files.pythonhosted.org/packages/12/e6/063508b826abf7193a4e593d2bcb08ab4603484314eccd80d98f739728d3/maxminddb-2.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59344235e42bdc508dfd38fc50ff3fb5a4965a1b3ed8002260f1fca2e9d96c70",
                "md5": "f4bdec7cfad57c3f03de0feef0126000",
                "sha256": "16dc122ebaae59922c007bcb9cf2a0621f550392b54f7f5e0171baa111be5a55"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4bdec7cfad57c3f03de0feef0126000",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 37235,
            "upload_time": "2024-04-12T17:24:35",
            "upload_time_iso_8601": "2024-04-12T17:24:35.628533Z",
            "url": "https://files.pythonhosted.org/packages/59/34/4235e42bdc508dfd38fc50ff3fb5a4965a1b3ed8002260f1fca2e9d96c70/maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ae6903d019a490c24478bfd81df5f269c7682e5e5e142bcb8fa8e963057ab52",
                "md5": "c8d964c2914bc255da32adb860513bce",
                "sha256": "0855c3532063e16c71b9ca7f624d3061f0e6da03a1e4ff7fabf9253a278b3016"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8d964c2914bc255da32adb860513bce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36881,
            "upload_time": "2024-04-12T17:24:36",
            "upload_time_iso_8601": "2024-04-12T17:24:36.823254Z",
            "url": "https://files.pythonhosted.org/packages/5a/e6/903d019a490c24478bfd81df5f269c7682e5e5e142bcb8fa8e963057ab52/maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "728714d9701f732fbc54ed52bcdd9830872c6255fa8104063be85c687fec19d5",
                "md5": "84020548a79b57f27428dfd2c1b4acac",
                "sha256": "fb56115caee4f3beafd2907845dc8f80c633424cbe270a3738f6ba609ff7248e"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "84020548a79b57f27428dfd2c1b4acac",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 38338,
            "upload_time": "2024-04-12T17:24:38",
            "upload_time_iso_8601": "2024-04-12T17:24:38.041113Z",
            "url": "https://files.pythonhosted.org/packages/72/87/14d9701f732fbc54ed52bcdd9830872c6255fa8104063be85c687fec19d5/maxminddb-2.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59d252d6ceb870a5d8960412e668f86a71fa586d9fb88d1bbcdebb5f468adbc4",
                "md5": "7b16cb5d6e65b2ec653a77041473e99b",
                "sha256": "17272badaa3e0293858ea9a48fe3e9fe8d6b20cc465a54cd4766d05aeff6ca59"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b16cb5d6e65b2ec653a77041473e99b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36351,
            "upload_time": "2024-04-12T17:24:39",
            "upload_time_iso_8601": "2024-04-12T17:24:39.544294Z",
            "url": "https://files.pythonhosted.org/packages/59/d2/52d6ceb870a5d8960412e668f86a71fa586d9fb88d1bbcdebb5f468adbc4/maxminddb-2.6.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe034b40c1f93b0fcb1be58e8b1df2f8ed99ed6272907d2b973f443014a63a2c",
                "md5": "986ed99ca42b5de9f61436493773fc19",
                "sha256": "58a070a18ca6d17d79002b35351fa9373012a98ad5680c0c49d0794c1286d9d9"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "986ed99ca42b5de9f61436493773fc19",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 33771,
            "upload_time": "2024-04-12T17:24:40",
            "upload_time_iso_8601": "2024-04-12T17:24:40.675590Z",
            "url": "https://files.pythonhosted.org/packages/fe/03/4b40c1f93b0fcb1be58e8b1df2f8ed99ed6272907d2b973f443014a63a2c/maxminddb-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4df0bfbd2da899384274b1cd3b6f401f341e43ac00a2e9fb89ac948ac9029040",
                "md5": "97593a13130ba08d3802d7de976cb340",
                "sha256": "30d66df204847ab114b84b04adf60e91a1dc1a30ab42a3e41337ed10efb4f2ab"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "97593a13130ba08d3802d7de976cb340",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 33579,
            "upload_time": "2024-04-12T17:24:41",
            "upload_time_iso_8601": "2024-04-12T17:24:41.999349Z",
            "url": "https://files.pythonhosted.org/packages/4d/f0/bfbd2da899384274b1cd3b6f401f341e43ac00a2e9fb89ac948ac9029040/maxminddb-2.6.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70260a7fe75da5ae9d4064d28931be6c49937b092417c1c3c381fcc211857ac4",
                "md5": "d24bdd1ac6abc245fb28dbf5bd6d4aaa",
                "sha256": "32571299316c01eecfc364cd5b94cfa2a484ee45b1cb2cd80464d7f666c4be11"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d24bdd1ac6abc245fb28dbf5bd6d4aaa",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 37240,
            "upload_time": "2024-04-12T17:24:43",
            "upload_time_iso_8601": "2024-04-12T17:24:43.882464Z",
            "url": "https://files.pythonhosted.org/packages/70/26/0a7fe75da5ae9d4064d28931be6c49937b092417c1c3c381fcc211857ac4/maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404c0012b20b491b675f395deee971b54cd4f931db84792eabb8fef9a31346ca",
                "md5": "e3eb368d69bd3b172d9030520edaa02c",
                "sha256": "44d546d6f8ac103c13daf965ac1970a6a32a8b2f33bdbc8a280f87383ce7c5cd"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3eb368d69bd3b172d9030520edaa02c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36918,
            "upload_time": "2024-04-12T17:24:44",
            "upload_time_iso_8601": "2024-04-12T17:24:44.998661Z",
            "url": "https://files.pythonhosted.org/packages/40/4c/0012b20b491b675f395deee971b54cd4f931db84792eabb8fef9a31346ca/maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6020a591bfddbf6bdb856bc711d0f4f8ad625e6756c9958aecb90dfb87e7c6af",
                "md5": "b99100ecfd4b3ebc5a113af65a25fd65",
                "sha256": "4e21d5ccf34eb1eee14d95c616b7628035953ed4d79ff560188014ae7f1aaaf7"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b99100ecfd4b3ebc5a113af65a25fd65",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 38367,
            "upload_time": "2024-04-12T17:24:46",
            "upload_time_iso_8601": "2024-04-12T17:24:46.479103Z",
            "url": "https://files.pythonhosted.org/packages/60/20/a591bfddbf6bdb856bc711d0f4f8ad625e6756c9958aecb90dfb87e7c6af/maxminddb-2.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32deffdb888b2ad9a746430be4e9e64cde16f52e07aed0ff0258482a5b47485a",
                "md5": "c6fc8c1e1a70a96e19f703f155609c1d",
                "sha256": "6acc873145aade367d39f5c2c013eeba1fc7709c1cca8aa9a46dd25db12958ef"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c6fc8c1e1a70a96e19f703f155609c1d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36346,
            "upload_time": "2024-04-12T17:24:47",
            "upload_time_iso_8601": "2024-04-12T17:24:47.581135Z",
            "url": "https://files.pythonhosted.org/packages/32/de/ffdb888b2ad9a746430be4e9e64cde16f52e07aed0ff0258482a5b47485a/maxminddb-2.6.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecf4e034f29cd17b755f54d5b4685adfeafc4c33f4deda86b9811b844d54007e",
                "md5": "10934718768e593e0d79220f048877f5",
                "sha256": "2ad27b9a06da43f0192e19e772b3fc01b72a6d231d55e665ec675a235533b0c5"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10934718768e593e0d79220f048877f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 33771,
            "upload_time": "2024-04-12T17:24:48",
            "upload_time_iso_8601": "2024-04-12T17:24:48.714179Z",
            "url": "https://files.pythonhosted.org/packages/ec/f4/e034f29cd17b755f54d5b4685adfeafc4c33f4deda86b9811b844d54007e/maxminddb-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8f2d57d725a9212a7b1dcabe5fcbf3e488c8aad7590f740b8179af2bb346695",
                "md5": "56912780c707e04773672036d0772014",
                "sha256": "3eb4711af74a6d8e10e28095c2a18a7ab010826d68665757383c140989f7e075"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56912780c707e04773672036d0772014",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 33575,
            "upload_time": "2024-04-12T17:24:49",
            "upload_time_iso_8601": "2024-04-12T17:24:49.879290Z",
            "url": "https://files.pythonhosted.org/packages/e8/f2/d57d725a9212a7b1dcabe5fcbf3e488c8aad7590f740b8179af2bb346695/maxminddb-2.6.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c098a36a18a7fae66be56466fd5825e015ed704cdaf0264e93ff8234dc30736f",
                "md5": "4c847ccba1cbbd113117406ae79adadb",
                "sha256": "e973d98f3bf828a94016d3875cb44e17739ad3957282505c16c68d20cf3a70a1"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c847ccba1cbbd113117406ae79adadb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 37235,
            "upload_time": "2024-04-12T17:24:51",
            "upload_time_iso_8601": "2024-04-12T17:24:51.290212Z",
            "url": "https://files.pythonhosted.org/packages/c0/98/a36a18a7fae66be56466fd5825e015ed704cdaf0264e93ff8234dc30736f/maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dae626ec56eef5adeaa39cc610979fc6bcb04063c2354798a6fbdb20e00d875e",
                "md5": "cc235034cd7a4822008f7a9614eeb881",
                "sha256": "45d78c8e527ea90947d04450709032459221011a2d14cf5ac645ca1f76e8e7f2"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc235034cd7a4822008f7a9614eeb881",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36887,
            "upload_time": "2024-04-12T17:24:52",
            "upload_time_iso_8601": "2024-04-12T17:24:52.897106Z",
            "url": "https://files.pythonhosted.org/packages/da/e6/26ec56eef5adeaa39cc610979fc6bcb04063c2354798a6fbdb20e00d875e/maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b49e6e7ef2cbb585fa147547a12c0929d11164f764788af9c8f0e2cb4a6d10f",
                "md5": "573ee454a78d84d5bd069f815e4ac81d",
                "sha256": "81a1070b61e2fabff936d256490924e49c8b54d3f9fa61f32c0c91b83dc11259"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "573ee454a78d84d5bd069f815e4ac81d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 38340,
            "upload_time": "2024-04-12T17:24:54",
            "upload_time_iso_8601": "2024-04-12T17:24:54.419551Z",
            "url": "https://files.pythonhosted.org/packages/8b/49/e6e7ef2cbb585fa147547a12c0929d11164f764788af9c8f0e2cb4a6d10f/maxminddb-2.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8658710cade16c89c53e999db5bdda4f74ba9d41e576523ee2e37f42f7bd1d83",
                "md5": "fba8ff39fb98921478759b730fdf47ca",
                "sha256": "fc3526c587f53dd32a5191e81f4239bb3ead70f56a97936b3427b72e3a5cc55f"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fba8ff39fb98921478759b730fdf47ca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36348,
            "upload_time": "2024-04-12T17:24:55",
            "upload_time_iso_8601": "2024-04-12T17:24:55.948621Z",
            "url": "https://files.pythonhosted.org/packages/86/58/710cade16c89c53e999db5bdda4f74ba9d41e576523ee2e37f42f7bd1d83/maxminddb-2.6.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51a0515e51f564a7d0323316296ce43a796c92a60246ffdbab8bb6d2e548b4d1",
                "md5": "f1296ffb3ca90f2aa02b2bce4f8450bf",
                "sha256": "6c5d591f625e03b0a34df0c7ff81580676397b8335e13ece130c6e39e4a3afb9"
            },
            "downloads": -1,
            "filename": "maxminddb-2.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f1296ffb3ca90f2aa02b2bce4f8450bf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 181219,
            "upload_time": "2024-04-12T17:24:57",
            "upload_time_iso_8601": "2024-04-12T17:24:57.899256Z",
            "url": "https://files.pythonhosted.org/packages/51/a0/515e51f564a7d0323316296ce43a796c92a60246ffdbab8bb6d2e548b4d1/maxminddb-2.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 17:24:57",
    "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.23795s