Skip to main content

Reader for the MaxMind DB format

Project description

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:

$ pip install maxminddb

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

$ 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. 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

>>> 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.

Versioning

The MaxMind DB Python module uses Semantic Versioning.

Support

Please report all issues with this code using the GitHub issue tracker

If you are having an issue with a MaxMind service that is not specific to this API, please contact MaxMind support for assistance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

maxminddb-3.1.1.tar.gz (212.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

maxminddb-3.1.1-pp311-pypy311_pp73-win_amd64.whl (37.2 kB view details)

Uploaded PyPyWindows x86-64

maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (37.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (39.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

maxminddb-3.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (34.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

maxminddb-3.1.1-pp310-pypy310_pp73-win_amd64.whl (37.2 kB view details)

Uploaded PyPyWindows x86-64

maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (37.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (39.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (34.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

maxminddb-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (35.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

maxminddb-3.1.1-cp314-cp314t-win_arm64.whl (35.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

maxminddb-3.1.1-cp314-cp314t-win_amd64.whl (39.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

maxminddb-3.1.1-cp314-cp314t-win32.whl (37.5 kB view details)

Uploaded CPython 3.14tWindows x86

maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (113.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (116.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (116.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp314-cp314t-macosx_11_0_arm64.whl (37.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

maxminddb-3.1.1-cp314-cp314t-macosx_10_15_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

maxminddb-3.1.1-cp314-cp314t-macosx_10_15_universal2.whl (58.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

maxminddb-3.1.1-cp314-cp314-win_arm64.whl (34.8 kB view details)

Uploaded CPython 3.14Windows ARM64

maxminddb-3.1.1-cp314-cp314-win_amd64.whl (38.0 kB view details)

Uploaded CPython 3.14Windows x86-64

maxminddb-3.1.1-cp314-cp314-win32.whl (36.3 kB view details)

Uploaded CPython 3.14Windows x86

maxminddb-3.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (99.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (103.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp314-cp314-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

maxminddb-3.1.1-cp314-cp314-macosx_10_15_x86_64.whl (36.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

maxminddb-3.1.1-cp314-cp314-macosx_10_15_universal2.whl (54.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (35.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (35.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

maxminddb-3.1.1-cp314-cp314-android_24_x86_64.whl (37.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

maxminddb-3.1.1-cp314-cp314-android_24_arm64_v8a.whl (37.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

maxminddb-3.1.1-cp313-cp313-win_arm64.whl (34.2 kB view details)

Uploaded CPython 3.13Windows ARM64

maxminddb-3.1.1-cp313-cp313-win_amd64.whl (37.3 kB view details)

Uploaded CPython 3.13Windows x86-64

maxminddb-3.1.1-cp313-cp313-win32.whl (35.6 kB view details)

Uploaded CPython 3.13Windows x86

maxminddb-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (103.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp313-cp313-macosx_11_0_arm64.whl (36.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

maxminddb-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl (36.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

maxminddb-3.1.1-cp313-cp313-macosx_10_13_universal2.whl (54.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (35.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (35.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

maxminddb-3.1.1-cp313-cp313-android_21_x86_64.whl (38.1 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

maxminddb-3.1.1-cp313-cp313-android_21_arm64_v8a.whl (37.6 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

maxminddb-3.1.1-cp312-cp312-win_arm64.whl (34.2 kB view details)

Uploaded CPython 3.12Windows ARM64

maxminddb-3.1.1-cp312-cp312-win_amd64.whl (37.3 kB view details)

Uploaded CPython 3.12Windows x86-64

maxminddb-3.1.1-cp312-cp312-win32.whl (35.6 kB view details)

Uploaded CPython 3.12Windows x86

maxminddb-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (100.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (103.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp312-cp312-macosx_11_0_arm64.whl (36.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

maxminddb-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl (36.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

maxminddb-3.1.1-cp312-cp312-macosx_10_13_universal2.whl (54.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

maxminddb-3.1.1-cp311-cp311-win_arm64.whl (34.2 kB view details)

Uploaded CPython 3.11Windows ARM64

maxminddb-3.1.1-cp311-cp311-win_amd64.whl (37.2 kB view details)

Uploaded CPython 3.11Windows x86-64

maxminddb-3.1.1-cp311-cp311-win32.whl (35.4 kB view details)

Uploaded CPython 3.11Windows x86

maxminddb-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (96.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (99.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (101.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp311-cp311-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

maxminddb-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl (36.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

maxminddb-3.1.1-cp311-cp311-macosx_10_9_universal2.whl (53.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

maxminddb-3.1.1-cp310-cp310-win_arm64.whl (34.2 kB view details)

Uploaded CPython 3.10Windows ARM64

maxminddb-3.1.1-cp310-cp310-win_amd64.whl (37.2 kB view details)

Uploaded CPython 3.10Windows x86-64

maxminddb-3.1.1-cp310-cp310-win32.whl (35.4 kB view details)

Uploaded CPython 3.10Windows x86

maxminddb-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (96.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

maxminddb-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

maxminddb-3.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (98.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

maxminddb-3.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (101.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

maxminddb-3.1.1-cp310-cp310-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

maxminddb-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl (36.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

maxminddb-3.1.1-cp310-cp310-macosx_10_9_universal2.whl (53.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file maxminddb-3.1.1.tar.gz.

File metadata

  • Download URL: maxminddb-3.1.1.tar.gz
  • Upload date:
  • Size: 212.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1.tar.gz
Algorithm Hash digest
SHA256 b19a938c481518f19a2c534ffdcb3bc59582f0fbbdcf9f81ac9adf912a0af686
MD5 2fc6721ace079650bd46f9c3419c8a01
BLAKE2b-256 3183bcd7f2e7dfcf601258a4eab92155816218e8f8adf6608d5f7d39da7ba863

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1.tar.gz:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f2fcc510cb83e19029d35205e31fc7afea526bbbaad4764ca903c1dc18f62b2a
MD5 0b1fbf20ba60b4a9c2ecee45cad12a92
BLAKE2b-256 c5ce0d5d56226ac824141a2945eedc6ece70da4461e9e2a1edf340326396cb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3a368c70aed14a79a2ff6ff143428d952cb5eaa386862a97de15e52f283c4d1
MD5 7c8e027c0b44464165ade05f5c75f95c
BLAKE2b-256 daeaf4d7c4cb7c0111174d8730c4ad81e3068014aa4bb5930359a72501f3da2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1251ae02ba24a090411dbf8f4c5a4b580ccca68f43e83db1868ac0980087800c
MD5 eb6a921f26042f8de5cdabbce1f23af1
BLAKE2b-256 59280fcc3be28859979b96126fcbd3bb0a6500eca21b838263139904085a1d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 527afd09ec087711009ad8f28add76747d9b2ecb9f2bd5e9f1ca43ed18f3003e
MD5 b1b1113887cc44dc0964fe853e46ce7c
BLAKE2b-256 dd738268d4082e774b9a7ca18e7ea6e0f159b0e7cbe6424d1a5d4eaea332fe7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ca0ba4b62cdcf285e9cfb829bfd6c2bfd620e0735075a9aee4ca71ddb4c293e2
MD5 e8fe525c79cb96a975b9cc880281bcd5
BLAKE2b-256 656d33c942a04e4f3cc95da23d566f0dc42146295a16ac053cf23969906fe809

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7857b476784fe2c21e5de9a10022d7bb7d0681550388d2208fd88121ac709030
MD5 ed2d5e2b636a8840ce5bfed4c5b0d526
BLAKE2b-256 6a7aa6cf1809ca0f9e77eb49671c24357d07ebd3b74b034bcbc289ea05c53c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c67a57eb94b5d30cd7d65b4ce364dad5cb4871565bcd2afdc4a9908934485f4f
MD5 560148e361a069514130bbfcb60ce231
BLAKE2b-256 bca7c4065edf0ab6e4658e678bd0c6a777b0505f551f18174550cfc31606c931

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7009b8997a7cb2a646cb425baa3d98e63bc5ef66ee01398386fe05c829eb3214
MD5 63f9bc27cc8546f5c59f6fa3be191b14
BLAKE2b-256 671f78ecbd18288448ea7806770d53f6ad0ef27dc85f0825014dd02695e7dc9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d10c076dcae3b695ce29c6ae9ffc1ce6e39de4a147cabd25327a1421efe67977
MD5 f062e470d91a4a5b8dec3c9e2b75e922
BLAKE2b-256 331f0cc52a8d514abcfc8ba0ac72c1d5912128837870bfc66f1fdb72f61a3a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7dc138d3c113c1eb3bd8ad0d5ea6084166963fc2ddbb02ada31708c255e4d532
MD5 f03792d8138a0706548b43de5049e90f
BLAKE2b-256 969c058db5f92ae21c8c897d083f06d4a58e7278218ef6c8faae04f0067435e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9cc4eb1d2648c0188d7649babe8df1236d22972a753676db3b7487646a65b0c7
MD5 cadf97fd6486b0a72376e6cc5d56b75f
BLAKE2b-256 f13e36c6010a302f822d054fed7ed7009d39dd0ed662c17a01e36dce956787ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6879a4d822b894d1717aeef20b3558fdf1d1f6cf1ce25a7ad46d0a43ed745f63
MD5 19b5db169e184a9e91beed6b8cf98c65
BLAKE2b-256 39678da91c3a89530209057e27f314859e17f8d93244b73945d01036e89cf819

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 37.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 962edb5f23f9e8dfbdfc775d9e452e4017adae2fb12d1b0a955dbddb7747e781
MD5 4a786bf2e7dedb2f1aab2f094df90d37
BLAKE2b-256 04ba015d8608e8ab108b6c5e8c252f51155385a70224f439e898ae01cd3aeb67

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f5032043db990f159b0e8e2747468f4665a3b5b345e343f620fe71c91fb2631
MD5 f64da84c70c911f7b7b93731a8006507
BLAKE2b-256 d46de18a61f2c2ab08d92801525468be807c5e2f1fed5b817cd35d1c535669db

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7e7a0accc4011fd0528c9755010c9d4be06ee116cc0c2aff0ce0f63f792cb41
MD5 6078174dd8c20589d9aa157f08208846
BLAKE2b-256 81e2da72e8a106539b40777ea0c991a1f5b896fe1374fce5d6a0d16977d49a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfb73a59ab7a3ccce1b00f048fdab982303253da26324943c831dd5d0f6db99b
MD5 7017703191cb36ad7460bd3eb5723db8
BLAKE2b-256 e930789efe80b43611cafa21bc130ae21c1b09ce7582c52a71d0f393ec69e868

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e61dca3fd6709817762940f25fc86279957883a00c409612893a168974aba9f1
MD5 7d146a512cd0936ef2887c5eade1aeaa
BLAKE2b-256 4f256a6f9aaf1af7c8ba83ab84792a7999a442b260bdadd84687800fde56fc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5d0709dae06d6f242acc1dd02495b6e1668ea898e22431865f8afc95aa4e7d0
MD5 085f70a6ec9ee04dbbca61826d061a2f
BLAKE2b-256 868d80c53840f598d77c01b94c718cc9b66658d677cf09b41f84d92aa04d0f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff7d739fbefe2529b76dce0362a165795e369ca2d79e04882b42035ab2c16e44
MD5 8275b59468cf395ca795841173d12963
BLAKE2b-256 9da79f925bc30b77107b32cad2cab23aa5c459544079de62d6bcd3558dfe9a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5334cee936368d43f7d99028bb37c864e8862465c6eac838e145d995e30707ec
MD5 6dc6b5897e7c13d974649bbb1960c526
BLAKE2b-256 03ef72d6ef4f7acc428b8a8f3910f1acaacc33fcd55cd339029c33a234b6211f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad144247e94aca2e6f51408ce24ef9184f6bf440affce61090578382cdf69ffc
MD5 df71621422db9a0a4802e1f0ecf529d3
BLAKE2b-256 75825b77a81e7ba8c8c83df1daa6cb701490589f5a17238a716d180a105ddf6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 38.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0fa73771e95a1fc4a2c5f3530191473da9eb39ec8301999bd18d9ac6a9becb79
MD5 7321890c45b32b6ecf7fd2120b9060f3
BLAKE2b-256 36f82866267b7728d6877930a22de42e771010f94e5832432a71c1bb0ce1c2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 16fa02b016f8d12e9d78a610a3abfe98510c7db2592cfebaaeb768067c10448f
MD5 1fdf7f2b2d73797f030a6915f3758252
BLAKE2b-256 26ffef98fea99940ef8fc9e55607fcf1afbf37774a6e01815837f735427b29d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fa33c7e220106a3b9b24e5046c9573079730b62cad61b70897768f319d84323
MD5 08902d09e4e28388df36fa1ec32a45cb
BLAKE2b-256 1956bdc5bb7cdac55895aa69b76c4daa39c72c0bb9840439f08ba21e5b9f24c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fa302b97d205d32e950bb38907a253a76d8a0091f2db5921e6561dbfa8febd1
MD5 ecaa0d42761f81019aa896991fc74f1b
BLAKE2b-256 92a5d856e34333b80594443a82a384eb383a64c06dd7047a81efb42d129a6412

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7bf4df891b71bb30ef0583effb0e694f610649ace69212def73dd20cc4ae8038
MD5 98d319ebd1705f301b58aafda400d168
BLAKE2b-256 d3137914f150c633e8acbbcde6e37b58a280f79888d5668ae5a50bd3846fde2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d27c57d402cffae339e07224d04315ec1fd923a113dce5a9b2bf5894df8bdcfa
MD5 63e3e60937bebd46aa789348a1904e89
BLAKE2b-256 b272c315b8e072663f77f928996fa6b8a084660d4130e00f092943fa9c892016

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fac648527d83c4357f8f060f362a3c24f3aeb94bd458e2221522b7783dac5235
MD5 24700307b8fccc22759d589a341384b3
BLAKE2b-256 da71a6cba811aa0ce539dff57400435643b2c05e607563f412c9138f50f14d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ebb79b06f94577c37206a2143e157f4f8e6baf4f4473734b16993e04e0b1fdd7
MD5 3ec002adb20b105f7bd10367dace2b4d
BLAKE2b-256 cac7bdcf8ca67c7d93007a4ed512cec61a0e13b43cf9abbb9dfdacd458dff049

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 65cbeaf809aaeb464e6c89086c45e0e4b9f15b73a28825fea0c570cf6fae18b6
MD5 9d228d7f31012b50015ee7466b52feab
BLAKE2b-256 ffe295baf6f117f9bc35de7c83b061b3fd27a49d03e0cda6c4dc5432167ac06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c2aa82dbb882714071403fe19b301a87a750eb8b58af60fd794afebe9447c0fb
MD5 a49a6562c404583b0e43e6e1ce22d0d9
BLAKE2b-256 753cbab279d11b8225e283175be8f6250366d362f131e282723946052c09cc2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 b83155134842f6dcd06f9ba9b661028a2154debc41bfc6b8d665d67267891153
MD5 ab79bbc7438b188203c3559c5baed610
BLAKE2b-256 b6f06e3a1ea6586fa49f2c438dd48ef9f7e67352729583f9ac6552f0d7d110ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 40116947ad235692dff2f1590269a844d8623036caf99310a0ea6833b04673ca
MD5 df063116e07a9edb18f36b1d44149811
BLAKE2b-256 85b31816167dbf9e1373f32548d26c45a74215750680e6a61943355e0d2d157a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-android_24_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 b2f859ff9ab56b8ce1c2033fdd978273d432ef1b03fbba24dd28d284bc9e2b41
MD5 a926b13a42089fd54a670ef75550c679
BLAKE2b-256 23f1b5069070975602ad14e7898b883dda0b0785dab3c24f5750f5b7fa4e14c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6d01a791db367768aa2e15b9c2df5bb4a8d8c11713d872dec5f33dd3e818af26
MD5 25a936f09adcf8ef43604852b76accda
BLAKE2b-256 52f80523374a421b9816da20de42256c7c11e43ce0663decb8b675cf3c0f4561

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 19be24c36219779e65be57897b36fea340223cafdf3b128f3249e8603be7744d
MD5 cc849da18fb1e4284815aa684a36680b
BLAKE2b-256 b227a64da9ae7dea91d24a12a5649bd62a0eda49ad5ecf184075947971e523ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3c9d50b5964c00e998ba5fdbad95b62abdf0ed9da5a55eab173f89e38a285e47
MD5 875eaa1d52314d1317245ff0576a05d9
BLAKE2b-256 952c01a3c975622add0f6f04336b400fcf4270c7054c0a35d8622b6bbd4e091b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfcc3b074d4cfef4d15474368da70b47707df273cd89e1d6a92549f644852f5c
MD5 b7529bbbec8c0ea31dcdf33a35d43884
BLAKE2b-256 580abc52b27699601c235ccb973e5fbb0426520c8780f0404dd98e4d09b1ff88

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b42f18cf17dfb3ff52ef8c97c41508d45cf23293d04779dce0fe2ca6f146e78
MD5 3aaefb3c83fe5aefe3128479bdcd20ae
BLAKE2b-256 d848883b8961045ea624ac26ed04896bb7e0ccf911488695508bc20bf5cbe1ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbb195714caeb419b9a33b07b0b721d620c770210dd955018453fc588a4b7e42
MD5 009fe9abcfbaefc31ff7f0ae24dd221e
BLAKE2b-256 751a2593692d543498959b2836028ff26c36439343a2122f31a71202072f4e62

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7060e43d0788259b3a9bcc3d604360ebd7b17915300c97f8e254faeb27a70c34
MD5 23af4d340d437bfa409a04a4f4a1afda
BLAKE2b-256 5d31136f4afed0202d4dbc114668068ba6ef99ab4d5cb3860e8bfc49208965a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5c31f5a1e388847b642d8e1b375abfb7b327d51cfd85e9c9f938a3258df7369
MD5 8c39ee6394d1cb87800de049494c0c20
BLAKE2b-256 8a010bff084d31b4441ec00e8ec84fa961efe5dffd3359d5318a557db8302a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a297da0042877a1eef457e238aa4df1707eb7e254aa96ecb1e17e935939a670
MD5 cce0ffac45b53a8b28269fd03e671221
BLAKE2b-256 916e09949370a413a7b5b791e8784f527bfa216539451c8c9b801ff06e61effe

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 afe667a377121a5234778ed0affb9b26bf9d23a0c50551541cc9e38e1c1d1400
MD5 25667849a8668bcb77e0cd8b6d68b06f
BLAKE2b-256 69af509eb9eeb119019f7f86a9e5bfdc1064e9bca590a07808adf9d4152221a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 4d72b373930d95ac00db20a49b43eaac707cc633247f29a4c9a24000187505e9
MD5 2e7b708aec399ee3e2410ddce2f183a5
BLAKE2b-256 f74e0f4b34d9d9c5b79712d9616b00f3a683489a0b80ac2b61cb492d7d432977

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 13a6dba0e696e904773cd9c17a290dcab9ba4a26128811e087c46c2c2f700c13
MD5 b0a49303af853ca3165826f1bd76b305
BLAKE2b-256 d1cda05c211da1c29eaa00f971e30338823872dccf7b6c4935fc71b8d12d6b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 42c8dc32b09e5f7c8e2e3d354e5bf48d56bf6c12099dd02df1ceca3f13762d97
MD5 2a73e89216448adcc114ccced10d771b
BLAKE2b-256 8a050bf2b7f2443b71a1c90d9d0772cecd43af392b0d285b20ddae9de9bd57da

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-android_21_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 90df0298f6713711ecba893f16ca31c486014e6b1c86611660426e5537cbbe14
MD5 5dd86c2a8162839444edcd0e3e400b5a
BLAKE2b-256 9102a26cfdb9feed1ec0e66d5adeb37ff1f6bbcf3bb6c26870ec6a4554cacb93

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp313-cp313-android_21_arm64_v8a.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c295f90ce99ce434d6a8477bd94ba4869ca04fe617ac99cea7548f0f6a3e4cd8
MD5 bd784f5c8322ef3f425629b8b08c5f36
BLAKE2b-256 f9edf3a6b030eef252d4eaa811c87ad3a1d44376de581b11be8246fda1fc3716

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1ad6d3790ca4b2936f3e4ea971ef8383480fa069ed8ea4e5e6345f049d0e9f7
MD5 c54d8af650593e3dadc0b731b03dc9ff
BLAKE2b-256 a3cc1e42136d8416bbcaa81cdfdb26ec75263f106c0c34bf357ca98eebc394d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9d98641b111eecc047b560d927379dd044bb36c0e399ee794e865b75ee8ef27a
MD5 a914ec35169a40ab97b9258a77fda966
BLAKE2b-256 bb89f07411f340b70374d1b76b710b059cfc9874e22f596df3f20d26ebbece5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a529873e376ada254c68a54d3ad13c8265eeedc5c56bdfdf25f1044b7f4177b
MD5 b15b08bb98927b2e995bc0ab4957e84e
BLAKE2b-256 e00a7e078abe41896d771e2917bc390fcd13186cd9b1b4ef8b451019f1fc342a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eb2644548114b22d5808972d6b2b77d4c62084966b9a6be3853cd173ff745d5
MD5 85625fa4a7456e736b7d24ad5999ddf1
BLAKE2b-256 1f9dd3c95b64c05e90091ddef22a7a1bcdabe998f36b4a9f4b814382f712d83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14d8b40d8e9b288cee18b8d80a7ba2a28211ce07b9c0e6ce721c5e685e3bf23c
MD5 26d15cebaa8bf363e476daf6f2b926b7
BLAKE2b-256 c8a48464f1d29007736cfe1e0aa2dd1f3a36f5d7020abb9f14269b614a3f3ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c4a402180154393c9c2502c7704b10a32a065661cd84196bbe7ac56869c6a82
MD5 ffae0397edc256ab68ed2299c8a0aa67
BLAKE2b-256 40a2bbded436f06c38716163f87d7d92a62f7d305d2f9f7e2e4155f8749a9f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9cd4c05d08c22796e83aa54c70feb64121b3eae7257af35fbaced9f5d8d2081
MD5 f9b75c431cef9cba2774d14c923dc4a9
BLAKE2b-256 22d5436054930ccd384f2f6e17aa7689207e9334abbaed63bb573d76dbe0ee8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f41a51bce83b5bbe4dc31b080787b7d4d83d8efa98778eb6f81df3ad9e98734
MD5 db24613fd2b0152604017772d634561b
BLAKE2b-256 696d4fc324d46b764e870847fc50d7e3b0154dbf165d04d121653066069e3d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ae6489a1b7fa4ab9b6ac5979d1eec1eed7cb7ef2f73777ddbb8fb8b9bec094e3
MD5 f07ce4fbcff0c0590af8a61b4d1ac459
BLAKE2b-256 e432331c6c0ce56aacee7f71b9b7ef2438ae74b2d788cd56d4a58cd3be3e6bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 856cb7b6e20ac02c50b5201eca2daaa1a7efeecc4e2e885c4e7aabc372ae3bff
MD5 7e8b5faa08121efc78e87ae03f33b175
BLAKE2b-256 ec22b9bce95f04fd8ca02f424aa8ca5a2b9e58a504c90d5a794a47927e656e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 37.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 023bed7cce27556dcac761be4b41afef168e7603664ac3bfde26f35c01c15393
MD5 ba5ee6689fe4f9492b5782780fd07126
BLAKE2b-256 e96deae87fb2f06333ccac36fbefe56c3f446588b7eb2e79247632f40ff90ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f1c040ceda871bb2857994bee3c4a34f59739552407628ae38aff4d1585c799
MD5 79bfae87764f9a31c4fe092ecff4a97a
BLAKE2b-256 28802ac383e6c63652103f9e19c3a1c3042a254d30e050f2beef849c6d2c1c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 283ccc25fca0b7944436e1dafd5e942e3410d91e0cff8704d1d5c99534a08e32
MD5 1949ac688767607bdd056b636cadaaa0
BLAKE2b-256 c55f71969c9ace2c98fb92cd6f6cf2842bd9f72aea64eabc0d872482de830852

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a956c1db412e15921e9fe5af3f103acecfcd4760b2a1755dad4ce7eb2f814534
MD5 7d9e69dced44338d5791af1c5088bfde
BLAKE2b-256 3b66791389029880ba8d36c516b84a726a185c2728e853ca0e2846a099bb523b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f841b34ab6cef6df8d98d5c6e58f331ee2c32292145463a26192738547d3935
MD5 ff57f430871330d01f62971543d0d027
BLAKE2b-256 9dddd282142d5c9d511a6c9d60de9374d9c2f452638163711c8724a8034c0077

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff15158257dcd46b3d022f7ccecbd34e90d113c3f1f5b7372b78cf4c513b9a68
MD5 6ac829a6bdb69a5f6fdc186ea0bfa34f
BLAKE2b-256 b0125714a3a13c7e5e7151cfc50eb50f16b72cf714d8b377df92ef69fa514625

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75feefc605bcb478f36ac70865f0c37498bd4abc37b101debac72e9eed3835c
MD5 2d457f6e9d300791340b40c97db8736a
BLAKE2b-256 a57b3f1c08b66898e0a4d8f234f2a6f3613fef6a9a55a8793613307e7ea1a312

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f1e89df992ad4ca506d2dc0776041d8670d6aaf9eaa1d2e60d315cab1932474
MD5 2e7e445928dfd2637a805088bb2b0afa
BLAKE2b-256 cac590727816da6f5e91b318fae1d3ff37bf4eaaa4fa8171e01ec9115da51d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 af2a0e1d34a23244790a0882eccd5798735d8b363f88d52fcdcdf25dc752cb7d
MD5 ce296ce59c0037ca235e933b600f2eb4
BLAKE2b-256 7b0cbcbdc2d382c836ca71080201f97cc7b37cac1e048f8b433d784dcc67067f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2bf03080523b717f6c91495ec635d7eb68ed3d67aefdb56e86e251e550b11a2f
MD5 6b3f1a8b60c971f38d4ebd90e9c5f782
BLAKE2b-256 54232ff124617be7df8a69c25fb2a0bae51ea811ec510ac40e08eff64973c23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-win_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 37.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57c4be48dfe5e0c10be75ccef37f169cd1aa3648a3a94a8ed7b39c6e0f101eb8
MD5 a546c9b3c8d0fb0525938efb1253dd08
BLAKE2b-256 0ee37fe207f43efe633d18666220a3927c355e1156c3d35fab20030cb03ef77c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: maxminddb-3.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b4c0872932652e1033e62c2f550637aeb44b78cf3ac5b229cb33381e46a85a9
MD5 e8ed592ff8c63322f10472825249a6c4
BLAKE2b-256 d267995380825d0b93649d2a3e61a0bdb4be313580e86ffc39aee9dc48474776

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-win32.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab143ad799092f48b53ced7e80e50539bf3b1601f0f046a6dfec55dc3d035e6d
MD5 7746b0526a6e2dbe6594b8d954851ac5
BLAKE2b-256 aa71a32818df12570445f55226e5a1b528d687b3516721bc6c50a42e8bc10dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00fbbbf27738169d8111d14718e5407752d505b8ede2ee408f463db888813a4a
MD5 31346a82a18184a90188792a927b13a7
BLAKE2b-256 ecd5c7846ea7287503bcb8a9654a64fe2781b373d423255d84895441875fec61

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 784043069847fb9ae8759b36d5b564855250fb58fa922fbffd3141bafe90fde0
MD5 e22a3a1061bd773d2cd75448534366fb
BLAKE2b-256 912e1455860b6e25c7db2cb6673041e03ae450a920e57b89f1aceb82d2f8bd88

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0cb1b1580d733e0ed8b1bbb10aef7a3f8c7d974b5affbf8f5af39060622562b
MD5 05087ae1df5dcdf864764916fb426536
BLAKE2b-256 5e4f8d3829aeb24497dc6fe29a7fbaf33d5bc64f3c1ad51663dcede3e7d51ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b7eb38ccb2323ddc06917dacaf67ad41b41a474911a473ad0856cbb75c0cb40
MD5 ac9e7d19aeeb96d27052bc1314e02531
BLAKE2b-256 cd41b3bfcb489584d8f10d2364244adcfad1a91593132e61c5680d68b0ab85bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60371de02e82177bb5507eae2761acd0f7b1b68f272920c04c1bf7d405e575fc
MD5 331054b04f64213d64533f625e370a2d
BLAKE2b-256 26f1566fcd480a50ec199065cc823ffd4f6b96f8e4a997577e6e2f60004e2b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maxminddb-3.1.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxminddb-3.1.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44f5db2a50503dd805c6319e9dd2596b042382350ad570726ab6cab1e4404dd1
MD5 1d04bfe1535b15a74972da5926ab530c
BLAKE2b-256 e77dc0c4d69696be9b10e91ac9241f02339c465c35d05c54eab897e74e108f7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-3.1.1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on maxmind/MaxMind-DB-Reader-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page