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

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

Exceptions

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

Requirements

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

Versioning

The MaxMind DB Python module uses Semantic Versioning.

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-2.7.0.tar.gz (196.6 kB view details)

Uploaded Source

Built Distributions

maxminddb-2.7.0-pp311-pypy311_pp73-win_amd64.whl (36.6 kB view details)

Uploaded PyPy Windows x86-64

maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (36.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (38.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (33.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

maxminddb-2.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (34.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

maxminddb-2.7.0-pp310-pypy310_pp73-win_amd64.whl (36.6 kB view details)

Uploaded PyPy Windows x86-64

maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (36.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (38.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (33.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

maxminddb-2.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (34.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

maxminddb-2.7.0-pp39-pypy39_pp73-win_amd64.whl (36.6 kB view details)

Uploaded PyPy Windows x86-64

maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (36.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (38.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (33.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

maxminddb-2.7.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (34.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

maxminddb-2.7.0-cp313-cp313-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

maxminddb-2.7.0-cp313-cp313-win32.whl (34.7 kB view details)

Uploaded CPython 3.13 Windows x86

maxminddb-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

maxminddb-2.7.0-cp313-cp313-musllinux_1_2_s390x.whl (96.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

maxminddb-2.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl (98.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

maxminddb-2.7.0-cp313-cp313-musllinux_1_2_i686.whl (91.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

maxminddb-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (93.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

maxminddb-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (91.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

maxminddb-2.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (94.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

maxminddb-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-cp313-cp313-macosx_11_0_arm64.whl (35.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

maxminddb-2.7.0-cp313-cp313-macosx_10_13_x86_64.whl (35.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

maxminddb-2.7.0-cp312-cp312-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

maxminddb-2.7.0-cp312-cp312-win32.whl (34.7 kB view details)

Uploaded CPython 3.12 Windows x86

maxminddb-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

maxminddb-2.7.0-cp312-cp312-musllinux_1_2_s390x.whl (96.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

maxminddb-2.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl (98.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

maxminddb-2.7.0-cp312-cp312-musllinux_1_2_i686.whl (91.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

maxminddb-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (93.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

maxminddb-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (91.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

maxminddb-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (94.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

maxminddb-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (90.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (87.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-cp312-cp312-macosx_11_0_arm64.whl (35.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

maxminddb-2.7.0-cp312-cp312-macosx_10_13_x86_64.whl (35.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

maxminddb-2.7.0-cp311-cp311-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

maxminddb-2.7.0-cp311-cp311-win32.whl (34.5 kB view details)

Uploaded CPython 3.11 Windows x86

maxminddb-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (90.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

maxminddb-2.7.0-cp311-cp311-musllinux_1_2_s390x.whl (94.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

maxminddb-2.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl (97.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

maxminddb-2.7.0-cp311-cp311-musllinux_1_2_i686.whl (90.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

maxminddb-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (92.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

maxminddb-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (88.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (89.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

maxminddb-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (93.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

maxminddb-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (88.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-cp311-cp311-macosx_11_0_arm64.whl (34.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

maxminddb-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl (35.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

maxminddb-2.7.0-cp310-cp310-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

maxminddb-2.7.0-cp310-cp310-win32.whl (34.6 kB view details)

Uploaded CPython 3.10 Windows x86

maxminddb-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

maxminddb-2.7.0-cp310-cp310-musllinux_1_2_s390x.whl (94.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

maxminddb-2.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl (97.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

maxminddb-2.7.0-cp310-cp310-musllinux_1_2_i686.whl (90.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

maxminddb-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (92.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

maxminddb-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (88.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (89.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

maxminddb-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (93.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

maxminddb-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (88.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-cp310-cp310-macosx_11_0_arm64.whl (34.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

maxminddb-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl (35.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

maxminddb-2.7.0-cp39-cp39-win_amd64.whl (36.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

maxminddb-2.7.0-cp39-cp39-win32.whl (34.6 kB view details)

Uploaded CPython 3.9 Windows x86

maxminddb-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

maxminddb-2.7.0-cp39-cp39-musllinux_1_2_s390x.whl (94.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

maxminddb-2.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl (97.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

maxminddb-2.7.0-cp39-cp39-musllinux_1_2_i686.whl (90.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

maxminddb-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (91.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

maxminddb-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (87.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

maxminddb-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (89.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

maxminddb-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (93.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

maxminddb-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (88.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

maxminddb-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (86.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

maxminddb-2.7.0-cp39-cp39-macosx_11_0_arm64.whl (34.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

maxminddb-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl (35.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for maxminddb-2.7.0.tar.gz
Algorithm Hash digest
SHA256 23a715ed3b3aed07adae4beeed06c51fd582137b5ae13d3c6e5ca4890f70ebbf
MD5 541f3381cd573f834c145f912c4afcd8
BLAKE2b-256 d1107a7cf5219b74b19ea1834b43256e114564e8a845f447446ac821e1b9951e

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0.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-2.7.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49501def556b55c67a0fcbcbde7f0d5bd13755874b3bf5599dc47fd2dd505365
MD5 cdf8f26190160da8356b312276cf88a5
BLAKE2b-256 8c4f9cba7ad53729357a125b65f082c12435705dcd551859785714acc2f5fa18

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73936e26ca85d46ec45d8354554a24a70a62b4c6c6d6bcb6480f2aed36ce29b9
MD5 5665155a662b2a5bebe317f2b4549b2d
BLAKE2b-256 83090bd54ac72238215cd54b6d591b7842d99ac8a4bcf377d99ecf3e77b10732

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b77885182efd9cd09644b2bd42db289edbfd646fc3ab4915bce8420a6120c154
MD5 ce37b50b241516bc6cc72e8e1909d4f2
BLAKE2b-256 b39f7fd5474cb657f53c74c897df6aef835c0d4a95e9ee696b4ad0597081e504

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce3974ad93aedd41b46fe46aa905c7fd0167bb6abff974db71f4e68cbd0f437d
MD5 35c8de883fc0d8d905e5d983d6c311a5
BLAKE2b-256 7be5b5dcd6ae20a1af0fa1b59faae8a6f26327e413e22d059bbf1777532eadd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f03d2260ed7a73e13e318fa52d4079920e451d2c35cfc99c9a5d520be673b9
MD5 91ddda0c3c3b77cefad43e4ad0d140f1
BLAKE2b-256 a42cfff09bb635ac5657c0ed6c538a54c7de50c702d4ae4b41d1ed107e25b61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eac98e1440839f75f7f8696d574825b9766066496151f5c8575927649db725fd
MD5 66bd8cea2276dac8af436b42a4b46138
BLAKE2b-256 918c5c19f2f34110d9b103d3c4f45fd9e4658d93cbc8520ede60dc7275e1b111

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 facccbb308af820d3d56f0c8edb84a4e8f525b7adda5e9bbf140cc30392a246c
MD5 4303729d96b8a8895db0903db94fc135
BLAKE2b-256 26315a78b679a4edbd55b95c578be108cc85e43bc6ca3cb1121a7faccda16b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a6156146ba2cd47d6864667f8d92e1370677593ec4d7843d5c3244aeac81b34
MD5 460dcce71283d5663cd1affd44a1717c
BLAKE2b-256 48435718f5cbfe26e5078e4362873ccec1d09c1def04920974e2bd2339aa4c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca12a265926bd6784f8f44a881e347fad75c815d6cff43eab969719d3da2a34f
MD5 34f0a24790229eaa413a262caf4ba0ae
BLAKE2b-256 94c265f59449ac72c061c69b7440c5344561dfde8931e088a8e6d06b31e312f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07aff6856646de82d4491788203af47827ced407ff9a37d38a736fe559ec88d8
MD5 364b3ae09ab69ad80064247185d71f2c
BLAKE2b-256 8b68088b397525763c869b89d9c7fae975a348d74d23657c09c8dff937cf39ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6930d6ba283416fc50c145f9845ffd8d9d373325d2c8b7b691098ebd14c8679c
MD5 b2d59aa100a4374aa46d1aefa2f5237b
BLAKE2b-256 360d160e9255834b41ed0d3c855357122aff9dc80d3b320890a1f687654fe056

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d29236bc5349c54ab1ea121b707069c67cb4be2c1c25d5456bb3324e2a220987
MD5 8a3f2b081a66e4797b0fb370a07df372
BLAKE2b-256 7c943d21ae451769607e2e094e4ffed6cd984e5071b9cc5222232a93dcb88325

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 15b178a5e1af71d7ea8e5374b3ae92d4ccbe52998dc57a737793d6dd029ec97c
MD5 85d997143527126929f28a5f626b9bab
BLAKE2b-256 75ab6677aed7f7b1132ff1fbc2a499d75d1c7243b34839973df61384ac550991

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_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-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ffbe8c321b234eb2886c5c6cb16cb0a7a635a7f8f9a944a1eaac1bcfbe3fc7d
MD5 54d27fd46b5a4f0bca0d0150a6fd6f11
BLAKE2b-256 1e2d4046e2ce349bc3f5329fc52cc0dde1c4363198a87c6d3972c3cae90eebca

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08f9edb0c539b0f28d9df30ee42e92cf11fbc729d428dc1e24b8e9861b2133e2
MD5 ba05be479afc8205ccf96d1bf972af32
BLAKE2b-256 54adfb3dfedd876ec235a2b417eabd92c0d029fd2c89d726cecebdd775d4bb50

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f855bc9c0f409dc4f155cc1f639f6bd550463ccd29ff2b437253f65361f99321
MD5 874a0c97b076b4a3c3c79d991750f205
BLAKE2b-256 b1a23f96e184b385801078631b50adb215aa6a424b1503e0517e4b37339c205d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bd31f0971156bcc9b4f0fab790ce8a4bc84357776a81195ae4f9cba659fda8b
MD5 f5803138b9243fb291ba9e7a9e5319cf
BLAKE2b-256 994f7b5406779dbb033209144dd95950e2b4f3981cf742b9359ab75c5ae1c3f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_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-2.7.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ade95be6fd3bf07fd65e693d865b0751b7c8c1fc6b4b9c6191bb4d3d92d4f5ac
MD5 f334ae31f9b8e710bcbf77c3895eba01
BLAKE2b-256 c27c7c0e78d2388c66176d1f9f47cdd8b75be888c69a00847145313d4e969c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-pp39-pypy39_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-2.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f81d678ab25d4867f95fb44cce3c67f6157d25dc8846191fd4eb0e38f49a263f
MD5 c04d0fb3cc1876449d100186fbd5e5ba
BLAKE2b-256 e88433e0389d97ca9bc7e902c1f4a74e626349043c942ba0b6458fa96cbea0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 023f23654b38345965cab3e33465a4b82edb2250ba7c6db5c175a872645c35c5
MD5 a6e4258c5ad6db7f5bd9113803e77bfc
BLAKE2b-256 ba6f563058bc28704b24fa04830acc40abca03debcaa2a12195d8269b490475b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f30bdd4c618c372c0f4f981f2241aad8e3ab9c361bb1d299f213e9a4c2a3fd8
MD5 d57b66a96645898ea2192a52c5bbdcf4
BLAKE2b-256 6f4af604c942dc9d3e755601831ee101198d3090c0dfa5485e2aaf3245075bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dd266b3060bb6b6b05009b04ca93787fab0a00f16638827d34bab50cfdf68dd4
MD5 e05d5a5342605db5314150533aed2f76
BLAKE2b-256 d46fcefabf7868b5406f4df04c3f4cb95dc802c1ad1b05f26046a4584a235268

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_s390x.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-2.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 faecf825f812d54e1cb053e75358656b280af1ea4b6f53b3f1a98c3f9fa41a46
MD5 dbbf912723957bba90bb1953dbdfcfa3
BLAKE2b-256 3c148edd17bdeaddd9d7d138008d6fc14baacdda418a5346d09215d14870dfd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_ppc64le.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-2.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b101cf6b79db4c046c9c9b157bb9730308074749c442f50d52a7a0e5d765357
MD5 d26ec65a032db35a9f314c44196d4bf2
BLAKE2b-256 2f43ecda2cc5a7ffae034692374401f97c3ef8fe15f22826ae2784b38ecf0cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_i686.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-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 265e938c12628fceb71665e28bfca206ee9d8ae6ac18282cbfc544753ccc8b9b
MD5 1ff0b58043397772c2fdf3995c2642c2
BLAKE2b-256 b29aaf47d3f7a15a49be61315f29bb0e232c1f5040f3afc685509cee1ebdaef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef41949246035af8cb5970bee2e94bbc894203312fd6fb55cbd4fe30c6e44374
MD5 c1a2543ce4da89c97f5c823bea14b494
BLAKE2b-256 b5b54bb9330ee29efb0c515cb8c6c500f367021c163ebb81380789e6ac846f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7f0e9a4db3c986f208dd4359e9d9e776e28ce8aae540da6f1a733fae3bb67ac
MD5 6dc202885ae8d2476c1a80e350ab56b9
BLAKE2b-256 2cd7e26d168d85e2503232d5df2a847641024afd11405fd5132816728cc9e399

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.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-2.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c10d94df0d5ea22873a5dc1af24d8972de0a22841dbd90a7e450f66a6f11ed21
MD5 9897a44281ecafbee3330f1f37342ecb
BLAKE2b-256 c01553ceb43e1e1e7493a66fb9a3b2d3248198316d2dbe746c585591276f1aad

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 566e7ea8296ad126a24df52e6c37382dc9660c414ceea4c4c687bbca2d522c28
MD5 c56e32c1c5a3403a7366fd02514c36be
BLAKE2b-256 9acb99d1650daa24a9acb55c81412fcefa5d95b7e80a872876a902e14f33ec4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 531be1066697b57928bce2ac9cb7e705b8cebdfa2e42dfbebc92b75fc53ad22f
MD5 0a49b094928d0251d161582729d580c0
BLAKE2b-256 72e51335e42615b57fd821a6c606119cb4babd85bc88839f8dbae0b5bb082d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4f71a72f3dbdc2abd58c36ad0ad4bd936781354feee8538614d2170223675f0
MD5 86ba9b82bbacaf271ea77d09a08fedcb
BLAKE2b-256 75ff2c98dda0d0aaa09dbe9a4030bd9ab056e0bf6c6559215e34185e2fd62d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2328575e2d2ab6179acf93c09745e9af10eb92aaa305cb5bd0f7c307d0dd398e
MD5 0af59e6923f9e196758d98266890ae9b
BLAKE2b-256 8f0e68a558e11e8a2aaeb1b28be27c784052dcccd780175fa9e3d2693274e8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1cdeb12a98cf4d9d6e4b1496f0381745c7a028368e9085ad2a6fee5300e9097f
MD5 c239c7183b987244d5304488632f0d18
BLAKE2b-256 445e3df632ff3752770cbf74ef024a0b5b3746762a6d9e0c11aa4c825e95cac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4e9126343edc503233900783bd97cb210b1be740e8c99a5f03484275b8a072cb
MD5 2ecccc05e178a97d2db4e4df5c062d21
BLAKE2b-256 163121a1e2ca565a548c440e52f70de5740e73c8e0811c622c10a0ce356b1420

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e225d892c88ce1c844c27881143555fda954bdc8414e0e2a3873d6717e92295
MD5 e8fcddd8c8eeb4969cd7f3adf5292aa9
BLAKE2b-256 9f7f8490a8b08d9faa14623c102266126161dd0bbe681232e746b1363895963f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6f4880e6aeb55cfab6bde170e3a99b9e71c7a660895032d32ccd40101eeed9a8
MD5 d78e6dcef493b8f2a30ff056360453d7
BLAKE2b-256 786e944910118d45dd2ded272010c433a72db8cda58d49b6b4def8e02e39b548

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_s390x.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-2.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 843ff9d8524ae01f66576f057bb8b05a889b4587f32b1da4f7fc3cf366026497
MD5 6d28346e0cb3656b1c6936f38fcd5eb4
BLAKE2b-256 60faf40949e7c63d306ad49d9dbe268d76e6cdf9bc0034a413eeef93e12a7fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_ppc64le.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-2.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97faaf488036fa9403a6a882f09a50f3eaf3855245fff707ff960d3fb1e1ac70
MD5 f4ad3d451d491d7c03e60bba60774558
BLAKE2b-256 2e9683565cc15df7e57aae85db5c9d5447b3ad1706422a92fb54b1414bd7db56

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_i686.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-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14c5aaecbeadacb19856593e833aab8318a7ee693aa4fde777286330cf8f23a8
MD5 bffd5c26c7785d27ce4360282d66f921
BLAKE2b-256 9a654be42092baed35be8702e684aad9bb0ecd593046d55c654b5b0e063a9e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a9b2391ade3fecf2716fba27ed50982a6cb54986039496d454917dfd416098e
MD5 2761db1fb3e4adee7bbb642a1a55c9d4
BLAKE2b-256 4e8729dbba2b167c191950a711c0a2407860ac6a808466bc354a12be5509e30a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 705c9110ed76ff1fccef120a0974ef2fa577f8f5d4d30235b7d29416295c626d
MD5 4c4635983523093f0fd9dac8fc8539a2
BLAKE2b-256 eaf61be30223b958032cf19424c0ae1765cd15deb6ddf296a7a118103f277324

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.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-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6a7b4a7d563e4e9bebc87678f818e6d83134d80f2bf4a43392ffcbd6d7775b4
MD5 c6c5e5973075b4c5b6c8a4d228ad0f67
BLAKE2b-256 3ddd7191df67c4424ae1c64df769628297c80d77a6950c134de09267877e7d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d5676a7b9f4dd5780709bc3937a0a860224b9cda42e01d1bb4e31c5ed5f7599
MD5 a9e4fc6cf3a725777a9876636b9e5e42
BLAKE2b-256 c9829c46df3d7ab2b7da9251255119fe3788d1c55e439232cd5fbfdc8fd8d818

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78be13a164fa09743734d39873003e734a11b318707508a8934c53f2b4ad6f03
MD5 5caa8cb48d01fd9f02a178b1a512e0ec
BLAKE2b-256 cfe3405791b96c54b06eadfb20ceaf8dd7672cdbceec95452a0de63681563165

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22ec500b99ba161bd97daec745d7cdd5f6a38a7d7e076045fef5e4ce8a76a176
MD5 806e35094d8f5452b388746c1f49c08b
BLAKE2b-256 98603af97e4517aebdeabae70613a1e03f9e276f0f04c59e93cfe16ab157991c

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 335e0ab48b3962991f0d238e6d1875ca121ebfb43449b20bd5e77561f69f2ac2
MD5 2f74772e7b3aa0c73147b89af9dbb01c
BLAKE2b-256 76edf4e3fd93245b9c0df51dfdb39c6c1280aa64abbc4ea55a1131013de9bb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdc36f47b1231b6769d32ab5019b7d1a5d0f43a99015b8d6989a23bbfb01e79f
MD5 4a11dd30a0fae2ce9ad4fb6aae69dade
BLAKE2b-256 0e669a4dfcc39c9e59995123f6a1632b84c60d7a3922d585aed839e731a20602

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78be0520ca048834d7bbc1d30147acc70f7e1bca91a6edfc90cab07467cad368
MD5 f1594a89dd676cdd575260400b340242
BLAKE2b-256 06e974639bdd66863b0ea59d03c80c5252f76a480318a48fcbc33b4073089428

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1683100ac8c009c7969310e544c7bb703186a6cf6eb76a0e96a23c647a6b164
MD5 ecdbf75428957847fc9a3efd8d56dab4
BLAKE2b-256 184d3a0a7e0f6d51dca77b80aee872fbfea6ab13ed824f8bd5c4f17f52aba1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 038d929871998f897ef51ac9cf107ee029ce434e4c6cfaced9149ff31a3c25fd
MD5 c84c81bdeb3ff5dd424ebb60968e50d7
BLAKE2b-256 1b4309e092a663ee8ed07837289b41423ec82268bcfccfc8b788c4df52a990a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_s390x.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-2.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8cdec5dfb0c6308ca28b144aa70818a8dd96f1d0f9127ca46d68b93e63425e2f
MD5 f2aa704d111fc35769a3c7a5d16b3351
BLAKE2b-256 4af2a2660b4f0eca46f28b6637e67bf11fb9b841f0cc4a9e39030594be1efd47

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_ppc64le.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-2.7.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 053fa4416a9735bdd890c0e349e4a4c54ac2841077fb508878dff0c27d60a130
MD5 164d64bf114c706648857efc4dae106f
BLAKE2b-256 46b317d5d8d633d071a0f4b8b9e546618055c507bfbaaa91a37ac3334efc9096

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_i686.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-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc2d4f58f12831ca9ceeb6689f331dee443b82f9fc472bc036a9c083981cc587
MD5 86b11aff7479eb4c94b63ecc86f69375
BLAKE2b-256 9fbb926017f4e12cbf0ba14d9ec1ecf77841289aa65d11853ffa801ab1e335cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e35cb54d0eb2e2fa7a44021ade8c77d89589a64d797e292f24594a7696eee1c5
MD5 d1156f7f25b3f22104f9c5ba30b46742
BLAKE2b-256 cb11fca28f795312cf978acdd21f1c491b3ffa554cc5b13c09d43bb9bc84c524

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40dd9780fd564d517eb412e4b56e11ea10483ff6b73258e333f9ca0f1f4386e4
MD5 d2ff67a4a1a041ab54df652dcb947246
BLAKE2b-256 ec8a3385dbea5155e6867091e241aedc131b1489198c6e93568227f04a9e5594

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.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-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ecbdb5383044281e1b3e5f7712783d87d7560040018ed06ea7c3404dcbebdfa
MD5 db5e8cbf6c68e78a6ebe788f49748fbb
BLAKE2b-256 1196437095cd900c40d945d89f61c2f77bbba91d203441074d490559ed433981

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab498cc58d80b8fcd61a0aea9fd37c7ef5e56893002a43133cc2983f3a0ec2ac
MD5 302bd2fb2bf5ceb1ca71bcceb986b0b2
BLAKE2b-256 0f8f1ab32fbb90955ccbe5ca8d5f8373b6f9c3c8cbac326d10727ad2b11acc6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4bc2c5d925b6b95634a71b9a1083bb193e7ecf32416679a5d87b31acfba7c5d
MD5 b8764f5543e987e5870aa3b782992dce
BLAKE2b-256 7d55036bd67035e09dd530d03f19287945146f396dc01416b0fcfb5a1f5b30c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a017cb6253d2c3c90f1b5408ad4998fe0e9674594251491094dafa49c251afd
MD5 1f8d3d65728cc42a45331318c9fae62c
BLAKE2b-256 071df23ad73055a31b11a5aea843bcdb4f3881b5f7c7cc67e26e6b9d05897d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d91869297c8b63a1023c335063eb62046ad039b82c419c7074d9aeb89c249b2
MD5 7a0683f8fa814d1ebea1fead97dd4a1a
BLAKE2b-256 ba01dac2c5e18e650074886805459f4e4a6bd60528c7a05650d46e3110d1ebb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 17662f4e63c269ae2a3fc74e4e93e8d99d3f4a1b080fb437107a4a57bccb1fe3
MD5 92bd05cda4429355cb9a36c5dee72edf
BLAKE2b-256 f7f6cbcf2a794bc22519e1d573254805cb1c3562bde5525df74bf3e3d8110bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f1a4a533f8cf84f52ca3e2f07e0190daa6c6e22300f47631cb9c6d8cc2ac0325
MD5 da7b9ebbd2fb5ef84b7a03996c6f7b7c
BLAKE2b-256 e12d89c65ecac087e94f3c2c111b9d8c9171f35eb3a23e5a8049e72856748ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c86601ea1ea6d6075b45a5a95f888c39a17fa077590b812a39d74835930f6612
MD5 b711f2af374d5b72703f03faa11da29c
BLAKE2b-256 458f2de6fbb2ff182ce26671f301c58b3307ed8858e3e79da58543498eab8dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 307b7080d123cfc0f90851fca127421b0222ca973bd8e878161449e4a1185ef3
MD5 7376bea077a82261adbf295416cf911f
BLAKE2b-256 1c082bf0ba3718687fa85664a7cfae18adbb0cf2dac8f3403c59f0b453ee5f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_s390x.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-2.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2ae9aeeab1e1ed9a531ff1a78f7d873fe38614018223fe4b6bbde1a3a89c3f52
MD5 dfe7eea9bb2c231cf0122b7c58ecd552
BLAKE2b-256 583459487a5061321e9b716824daed07380a0ae946191383dd606c8f9319f724

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_ppc64le.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-2.7.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed1a8db359ad726e0cea25fd6e6f22245bfa6f5ab7bedb131f0bb18b01ed3474
MD5 b23455ccb9fdea8504a7d8edc110cf66
BLAKE2b-256 86d86fa7b5d00a97f3b22b16da5447769c6c6ed5c0ee9bc6b062d6dd0a9e01c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_i686.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-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c9b5d8c433479b1d40fec45e87c22873e7d6d17310981fafcf5823759c83f0d
MD5 78df22e8cc96f755a11245b6668d33d2
BLAKE2b-256 f7d3ffe2076110d3839bd673d00515f134a6537d80b23ad9467e09b37832a9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96717032bd15dcf2fd77da74d49ddf35847aae6cfd8cf3b2b1847ddb356e3e29
MD5 01fc916bbb937af1e5d395da43601f62
BLAKE2b-256 78c2142c7ee80bac6b963cb7af4babd103ba7e5932c7159e91ccb6de5b334621

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a94a96696c9d17d5c84d6f7b1bca4fbda4ab666563c4669c4ca483f4bcbb563
MD5 1af46a1233b681545aab9383c973f0cd
BLAKE2b-256 ae9ac9e56957377174718b229f4d71325d08ea394820a8db9a25985e08c3c40b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.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-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f630c7a540ed75f393cf76bf0702f4564040217adb1c777df40ef4d241587e04
MD5 7b9851ea5e76655845c1bf68f14c6d5f
BLAKE2b-256 ed8a01ca8134a5eecbd084f9f1967ede42410acd7f680b549b977c39602e3d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55eac03e6fcdec92a9f01e7812a1da6cc4b1fa94c8af714317dd21fcbefbb732
MD5 f70f171d4b47f2f71c438e919a242563
BLAKE2b-256 fe86b29c05b2f32fccec7bd728005ff146bc2b9637ad33e73c86ac1a33b5c875

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f7c29ec728a82a0cd4d4ece6752fc3a8df2f3ff967ee35bdaf7a4a10b55016f
MD5 2248a34b6bda6e2ba7a167189afff2ec
BLAKE2b-256 3648d1c27756833b35fb0f6c5b99eedfb34d27f90037cbd4f29da21718e21b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1015f866e7768fb3eb63e08f152494f5152d0ba50ef4d8332ccbaffeee7c2111
MD5 2d688fa9a66b85a0be12d4d208da2cda
BLAKE2b-256 96971e35d9d2fe6322330e84c42c74d67577e64ae74eaf34131bc16ca06ad1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89b12a3af361f22d6e5a5949e8d224ff06dc5f5f49d9be85c3c99d95e33234ca
MD5 80b6d2139c6970bdc657692b90fdc379
BLAKE2b-256 69da032781189e13f39726794663a025c04680cd8657adaf39ecf811bb163179

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-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-2.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: maxminddb-2.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 269e3cb21b27bdee1ca037cdbe24dcf84d4e0aa47482bc24a509c6b7a409b66b
MD5 441f9beb0fa985fbc7c3e88b3bd919e7
BLAKE2b-256 4b9dc08a77ffffeeada0a5609a99c463d8c75ba5365fc2958cc97a383751f2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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-2.7.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: maxminddb-2.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5bfadd12a5212ec51edeb0a6a87e85060c36cb754b59d246c081de9de169dcaf
MD5 d8a499130b63d74125c7cba9405510d4
BLAKE2b-256 9269ae591edd8cc5f6748e6ea7f5483a3d4769aafddabcef41a243fb7636efab

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc2fb57a103b70acdd1272af5f53ee1f23b92b664811cf365ce7c0af824a9c69
MD5 235fb8a51178e2534be09ab321767f26
BLAKE2b-256 82e28e82227f4129cee2e9b0c53151adfd8b492a2622021329a36d9570166c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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-2.7.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4202dba1f7284cfbcfd0d8324a3234bf5527f320cad347572f76dd77992eed51
MD5 3cfbaec8fa0e51ad5c57e8d8b2c3968c
BLAKE2b-256 aa5c2057c8d9162b830be28cb773b698ba86af1e03c07a5ef156f4ecd3282c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_s390x.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-2.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1c3f0f23917e2bd348342df63c355311cd112efd4924235caf26b67fcb3e256
MD5 fe549213f0f862c62a4ba5d821ac02ba
BLAKE2b-256 6ac2fd4cd67bd37d9efff9f8af827e8fc160feea9e6d1814fc599c5b7a8727fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_ppc64le.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-2.7.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a894820a7f11b86288a3e265ac613944a78b1556f24a1ca9b8ad012a6343b74
MD5 f5656f8c8394e0c217782885535188e3
BLAKE2b-256 55e9bcd80ed8b05e328446d3c585ca7ce1e48e320e7f95785388d464b66e8358

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_i686.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-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b834d21e62f3e0275490a20e9e80f270ee7a93af43cd54082be712a98d2ee307
MD5 04a789159dbb92164c6f9b5c968bc71f
BLAKE2b-256 56de96c6c9c64802d073df8c110fe8c02732013a8da350dc782b684d10c53f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d40ae2a1869d4e06b32da34bf676eeb7da810870eb14b9dfd9a294c4726fa02
MD5 30011b1e248dd571658f0c95f7a0547a
BLAKE2b-256 b82900670dab2eb0cab1a0b3e4e2c277664f1f98bb94347dee9afcf4b7d54a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0aa3fdc5688052cd5bd9000bc5d11c783ff6a887d76ec8206c71f92df2da64f2
MD5 cc01f40402e00d224f6a716bf66d4e39
BLAKE2b-256 b1a61ee5649ca89252d30febc2c15e64bedf1001624548224aa425e8eaa031f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.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-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce35f28f60921d853a4ff655c3eb1be94bd3bbaeb142b3e02fa265e725710e1c
MD5 f5c3b9ea922444520f0c85d7ef18b081
BLAKE2b-256 5d135b1c523e29135a7ac0d8dad69bf4f5687904be3f11a71b06c013cecdd6f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.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-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a854541202ac7e5474480ed642ccc98dfb28f3e26d7fa98034b75c668aa93362
MD5 be8862fc8a63864259fac150a1603cac
BLAKE2b-256 44946a2e0f58bb184e6743178549b82db7ba4b22febf7f825a2eae58160a1ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38ae82838beb1c3893bf6917beec985fc3e2843cba84fb4a8bebaa36802ea936
MD5 fad8fd2f680388bdf7a265c359c99cf3
BLAKE2b-256 cbb7f062ce4b6a2cc6ecd1ddb33a249409f104182e0bf2988bdefe6ee24672b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-2.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fad42dbedad9339c6894f2dc6fda0a421d6ca45c7e846fef3114f646a5ecdeae
MD5 7498cf68ae8abfd22eb15081fc56d1d7
BLAKE2b-256 3b3356416bcbbc76bff34944e98b7bae427b778dde404147b85fe29e7ac216d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxminddb-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68a12bd637b827ec2182ce5ab2ba0baf5555a70595d7aa5a9a92860a2c61ecae
MD5 f3f45096bad988607e5631d955c10e73
BLAKE2b-256 7092e544cb30f0bbb53fa08646b3f600397fcca6b5bd26973c0e7bb5515a88a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for maxminddb-2.7.0-cp39-cp39-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.

Supported by

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