Skip to main content

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 GeoLite 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 GeoIP/GeoLite 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.

The reader also raises InvalidDatabaseError when one record, or the database metadata, exceeds its resource limits: 65,536 decoded values, 512 levels of nesting, or 2 MiB of string and bytes data. Real databases stay far below these limits. Python’s recursion limit may stop decoding sooner.

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.

Release files for maxminddb 3.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for maxminddb 3.2.0
File Size Uploaded
maxminddb-3.2.0.tar.gz 531.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for maxminddb 3.2.0
File
maxminddb-3.2.0-pp311-pypy311_pp73-win_amd64.whl PyPy 3.11 PyPy 3.11 7.3 Windows x86-64 Details
maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64 Details
maxminddb-3.2.0-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64 Details
maxminddb-3.2.0-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
maxminddb-3.2.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
maxminddb-3.2.0-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
maxminddb-3.2.0-cp315-cp315t-macosx_10_15_universal2.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
maxminddb-3.2.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
maxminddb-3.2.0-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
maxminddb-3.2.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
maxminddb-3.2.0-cp315-cp315-macosx_10_15_universal2.whl CPython 3.15 CPython 3.15 macOS 10.15+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl CPython 3.15 CPython 3.15 iOS 13.0+ ARM64 Simulator Details
maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl CPython 3.15 CPython 3.15 iOS 13.0+ ARM64 Device Details
maxminddb-3.2.0-cp315-cp315-android_24_x86_64.whl CPython 3.15 CPython 3.15 Android API level 24+ x86-64 Details
maxminddb-3.2.0-cp315-cp315-android_24_arm64_v8a.whl CPython 3.15 CPython 3.15 Android API level 24+ ARM64 v8a Details
maxminddb-3.2.0-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
maxminddb-3.2.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
maxminddb-3.2.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
maxminddb-3.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
maxminddb-3.2.0-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
maxminddb-3.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
maxminddb-3.2.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
maxminddb-3.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
maxminddb-3.2.0-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Simulator Details
maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Device Details
maxminddb-3.2.0-cp314-cp314-android_24_x86_64.whl CPython 3.14 CPython 3.14 Android API level 24+ x86-64 Details
maxminddb-3.2.0-cp314-cp314-android_24_arm64_v8a.whl CPython 3.14 CPython 3.14 Android API level 24+ ARM64 v8a Details
maxminddb-3.2.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
maxminddb-3.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
maxminddb-3.2.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
maxminddb-3.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
maxminddb-3.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
maxminddb-3.2.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Simulator Details
maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Device Details
maxminddb-3.2.0-cp313-cp313-android_24_x86_64.whl CPython 3.13 CPython 3.13 Android API level 24+ x86-64 Details
maxminddb-3.2.0-cp313-cp313-android_24_arm64_v8a.whl CPython 3.13 CPython 3.13 Android API level 24+ ARM64 v8a Details
maxminddb-3.2.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
maxminddb-3.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
maxminddb-3.2.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
maxminddb-3.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
maxminddb-3.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
maxminddb-3.2.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
maxminddb-3.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
maxminddb-3.2.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
maxminddb-3.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
maxminddb-3.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
maxminddb-3.2.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
maxminddb-3.2.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
maxminddb-3.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
maxminddb-3.2.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
maxminddb-3.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
maxminddb-3.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
maxminddb-3.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
maxminddb-3.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
maxminddb-3.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
maxminddb-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
maxminddb-3.2.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 6.8 MB

Release files / maxminddb-3.2.0.tar.gz

Download URL maxminddb-3.2.0.tar.gz
Size 531.3 kB
Tags Source
SHA-256 checksum
How to use checksums
d28e0073fd1dd637c8b95947bc864b5625eca9f8f2db1538145e33b2a1cd4b92
BLAKE2b-256 checksum
How to use checksums
b9340923a42cce579398890058775ea145214acf80dd3340c26cfb0f16989300
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp311-pypy311_pp73-win_amd64.whl

Download URL maxminddb-3.2.0-pp311-pypy311_pp73-win_amd64.whl
Size 39.1 kB
Tags PyPy 3.11 PyPy 3.11 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
c4b38d1bdce185febdebc68e170bd048cdc122084b42e4f37d85c720f17583d3
BLAKE2b-256 checksum
How to use checksums
bc76548c1a80a8f5da4a33ee32255b0be22a6ee511d6e1de22cd5d41ad9858ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 40.7 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a6bfa93506b5c5297182668f126104fbacd8a2d7b80eac2eb0e4aab1c2edb63f
BLAKE2b-256 checksum
How to use checksums
25b02da8566401f46085d2f5576714c91f363173b1c9eceefa2cd39fbe8c487c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 41.8 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c7e6890d6a4e4b382f2a684fe78517aaf35006c4ae35553837edf6da2c24e3a9
BLAKE2b-256 checksum
How to use checksums
c4727cac81037f12be0d93b2ad5cb10cd3cee2ea9363115469297b5b75472631
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 37.0 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
86b54eb7e4834dcf7fb914741091646b5c860a13f793fd890e91269e1a6f4175
BLAKE2b-256 checksum
How to use checksums
9abe36a5d02625a9c008190c9df88f448249ce7b9f91b5075c9231a8fb864afa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Size 37.3 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
eeca4179c74fa30656ca57e66b7b6f9b9fc371eed088b70e36744f9af884f8dc
BLAKE2b-256 checksum
How to use checksums
ad5abb6b22179f35bb67554fcaf0c954b0727505cfd4746c4a7604ad9cee2aa9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp310-pypy310_pp73-win_amd64.whl

Download URL maxminddb-3.2.0-pp310-pypy310_pp73-win_amd64.whl
Size 39.0 kB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
07f08527fc289fba875a31109d0a2e7318da8f36924ef4265c56f574d132e051
BLAKE2b-256 checksum
How to use checksums
ecbb8ab9ff75f5047b393d17571a6ad8cb74c115d3c3e7c45913dec7e14443bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 40.7 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
50b5f52e74555e974088f0a3770efff1990cfa1935baa6ac86975ef7dd2276b6
BLAKE2b-256 checksum
How to use checksums
4e8b4d01ced02f8217adbfa2f4f547d3327544dfd12a3b2859c5fe5c15ed366e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 41.8 kB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
432ce59bd0976d2508ccf2e4ee5cf6a6a56a1dbc0ebb02b0a1ad9e883ebe1fdc
BLAKE2b-256 checksum
How to use checksums
3369fcb180bc575bf6a9cd282910109b437cbcdca015f92fdea9dba4722279e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 37.1 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f528b061a18cefaa39961851f777aefafdd9faf7bfdc444e63a99ef55d5540a3
BLAKE2b-256 checksum
How to use checksums
2433ce22541adda5278a1b00b45a24cd4293911693ad46ca28c0173b7d775232
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Size 37.4 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
01418f7282badf3a90257e21554f594e767263ddf2c69c3c2cf9fb299c9e4620
BLAKE2b-256 checksum
How to use checksums
43230e862ec3d83214f9b9b950642e0da8c8e23c74f3efbff271f35bd6f9c025
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-win_arm64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-win_arm64.whl
Size 38.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
ca45310589643b03b40dddc6d0de73792bc85dfc1ada0f44974f6628f44d3d45
BLAKE2b-256 checksum
How to use checksums
432bfe8593ba8d3a6c831fa559281eb4211481c06041b3865b79f2db2110020e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-win_amd64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-win_amd64.whl
Size 40.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7071e40cc14aa953c061c41b976381fe931234909f5cfabfc501922a6a22effe
BLAKE2b-256 checksum
How to use checksums
f714f995ca5a862bf0437666316a02a55cc5229b1ce219bacb743c5e878f8621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-win32.whl

Download URL maxminddb-3.2.0-cp315-cp315t-win32.whl
Size 39.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
ab8149339150bca72308a9489af9811fc9835cc8146ef23377d1d06bfc8511c9
BLAKE2b-256 checksum
How to use checksums
e2fa912db49af2286f445c8f615770f97c7f784b2dcf59faf38013b1a865c158
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 116.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5ddd4b05419642085b7f73e2faef6f7c69a2bce4b159f240608115eebad0ae0a
BLAKE2b-256 checksum
How to use checksums
e7b393d9c060ebf8c2306e33a3572ab809ae6e666d72fb16a1f3e05941fa217d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 119.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e1595f296d44741db3b210e0ef0ffa053ea3042f284cce08d959375214e11f07
BLAKE2b-256 checksum
How to use checksums
d8ed9910bfcc6f12370690c58fc308192bd6eb08c69cf7a7838270c59b23012b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 119.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
081a78daaf7f97dd700e4b13e7d050b6acbaacc7818d8256d87d981d7d78b419
BLAKE2b-256 checksum
How to use checksums
2a9870515d00f3ca269d17bd76266f57834ae67e49c0c221430bec84223ce8d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 123.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
dcea72e397c2c7fd657b10178c6ae3a6e056e1f36c8375b01b2adc1d8a921110
BLAKE2b-256 checksum
How to use checksums
61d6d8591ac783c3518c4f749bd2ea0f21f874952a7b78723375143987e34f3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 40.4 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5745c98096c65f644497e46bf89509e32222e029597bb437ae1d674066a1cd5f
BLAKE2b-256 checksum
How to use checksums
b86acfaeb76a91ee0c4283fe4e1ea1f7347beb1ceaf2dd5bf4ba2c2cc590ffa9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 40.9 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
326d197c643d40dc1d58a0a105f0b64bef7856d26f57b820c278118e0eb2ebc1
BLAKE2b-256 checksum
How to use checksums
c25af361ec8c163b11e98e6a99a9bbdf686f1ba8c79e6f0222560a04336f56c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315t-macosx_10_15_universal2.whl

Download URL maxminddb-3.2.0-cp315-cp315t-macosx_10_15_universal2.whl
Size 60.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3c993639de9d492bcd46be8a9c28c965153e5538f6e42bcac9d0a72413b284aa
BLAKE2b-256 checksum
How to use checksums
e4f61078e4f57e329b301a533670e70c18bcb3efe6c250a8c687f136c9109571
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-win_arm64.whl

Download URL maxminddb-3.2.0-cp315-cp315-win_arm64.whl
Size 37.4 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
b045f940693dcb034bf8854974b67a521d48328f605c3d0db5f450196de265d6
BLAKE2b-256 checksum
How to use checksums
2a1e1933a546ac3001bfa4e716d415f23258487754ce61c720fbdd1d8c9fa888
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-win_amd64.whl

Download URL maxminddb-3.2.0-cp315-cp315-win_amd64.whl
Size 39.7 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
11d64c8251c06b1da7adcf6cd771841bf99ccfa6eedc77a78e983ab4d3770249
BLAKE2b-256 checksum
How to use checksums
28a0b637565a4dd02e650d18daf0d491ae5b8c1db431f6070526fc4a99f04e75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-win32.whl

Download URL maxminddb-3.2.0-cp315-cp315-win32.whl
Size 38.3 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
ce0fd7aa5bbd525db8d04ad2b786ae8b187824e4cbacd8e4c9e7b460c23344fe
BLAKE2b-256 checksum
How to use checksums
f0e8d240a883ca3a814d74f3483b5505e51a3faa9d1892dce199c7d97cc4dfcb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 102.1 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
60347a9a1d827f13ba165d1489e985798379c4e08942e760c9e9d605f49d522c
BLAKE2b-256 checksum
How to use checksums
a57fa56b41732e19111ddcb289e8df4a2f0b31a78545ac3292522de6d5e90080
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 103.6 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cb0e52f4db5abce2d3c057b088bc3e04c30b3b6bbf23411529b65ebc3fd70313
BLAKE2b-256 checksum
How to use checksums
15e145e3dcfe4f4bfdefb96d974ec84c85cce5cad0f0942b5c421030de2eb007
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 104.3 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5f06e907155d2964ff70319a8d63ac33627251920f776e6680125d96b22f8b55
BLAKE2b-256 checksum
How to use checksums
efdf50f6916fc69cefc8c011da4c66cbe43c3b9503de51d7091348a22761ead7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 106.6 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e819cfcf263d37d63b00c51d31131fe9966908fa0d55b0e918d266064541696
BLAKE2b-256 checksum
How to use checksums
dde0fe45c2b355119d59fc0ff5e6337a2ad46d6c26c34e7509737e7d86d272b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp315-cp315-macosx_11_0_arm64.whl
Size 38.5 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2319f7f278b1c2a6103568880391b73157f4c034742222bb8065ff3a16bff226
BLAKE2b-256 checksum
How to use checksums
86b4f9c15270420dcb7892f07770645f042678646c76892e8ddb69d7a92cd22b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 38.8 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ebcfbd7e0a96d5173f7eaa086061a2e57decea73279fa38dff47c66e733121d4
BLAKE2b-256 checksum
How to use checksums
9110ab4f164ecc45eab94f41db2a09c5995286d1a1f3cf4750f81b9e5a40c443
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-macosx_10_15_universal2.whl

Download URL maxminddb-3.2.0-cp315-cp315-macosx_10_15_universal2.whl
Size 56.8 kB
Tags CPython 3.15 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f040e4c4745efbe60ba203319e4fc083087a6491f445a7e7bf830c6cb6c14fe7
BLAKE2b-256 checksum
How to use checksums
a90f90365b4e198a9cdaa0d5334c54ea19bd8382ce21d9452082fd0b9f3c103e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl

Download URL maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Size 38.2 kB
Tags CPython 3.15 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
3b347b6a66b3f7c3dc51ecdd469c818dde0013df64e04b7ae21a307f569db44a
BLAKE2b-256 checksum
How to use checksums
8c27b1789d48def8e86742c2b2988d1964e565953993ea68a34b747536a647a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl

Download URL maxminddb-3.2.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Size 37.7 kB
Tags CPython 3.15 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
fe5ffcaf17210ec2a6c46cff418199f974ba034cb2e02452615c1184d2001cb8
BLAKE2b-256 checksum
How to use checksums
c69b17a2796ea9f7abb14f64153b71f5562813bca9a95b50302d8f5790a3aa7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-android_24_x86_64.whl

Download URL maxminddb-3.2.0-cp315-cp315-android_24_x86_64.whl
Size 40.7 kB
Tags Android API level 24+ x86-64 CPython 3.15
SHA-256 checksum
How to use checksums
a50b95cd1ad02d74b8860f3968ff59f67dd9a116801061e070e5d55cdd320c06
BLAKE2b-256 checksum
How to use checksums
606f8b546597c3f3848e72715fe50a62d8b6ec7ce01d5e52336919a3f147c7f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp315-cp315-android_24_arm64_v8a.whl

Download URL maxminddb-3.2.0-cp315-cp315-android_24_arm64_v8a.whl
Size 40.3 kB
Tags Android API level 24+ ARM64 v8a CPython 3.15
SHA-256 checksum
How to use checksums
448b12fc2bbc72beeafec7208662babbaea883c37727194758b5ee4788a26b96
BLAKE2b-256 checksum
How to use checksums
825326610db60269e71bedde49332d35c966d10ba1a3986c43d10dc171ea808d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-win_arm64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-win_arm64.whl
Size 38.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
95f8c2d56b4c0d6fa423cb3be4283365e711efc364282bbc5a347084fa9ed36d
BLAKE2b-256 checksum
How to use checksums
f54fe236db748992f7e2a077a05a4d60db92677485993c622916ad762f4eed13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-win_amd64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-win_amd64.whl
Size 40.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
a7d0e186e09fe76ed697aa6ef49d6435ec3c49f10535c7e62d32a19440794d8c
BLAKE2b-256 checksum
How to use checksums
d6396aa37436d433fb2d92d1e4f154a0aecd91bcf552c441dda110ab3fc66560
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-win32.whl

Download URL maxminddb-3.2.0-cp314-cp314t-win32.whl
Size 39.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
4759cdb657b9358463eecbb90fbafe67edfae30c1962bcac33cf22df3a244bd8
BLAKE2b-256 checksum
How to use checksums
e71b4e9820d13eb44b0b136f834e56baf3ae7ba22a102b49f6cc3dec1bc3882c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 116.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cf49885418144209a2c834097cde9262efd63472554aa0d9b587a2fce1a35223
BLAKE2b-256 checksum
How to use checksums
26ddc8897dd11b4225829222205399ffe8e0be12463e4f1884ca00083885b7ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 118.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3fb5bbd793777d03890106fac774dc67e2d41bbead3b046a840df0b15313bcd0
BLAKE2b-256 checksum
How to use checksums
09111482772fc11e96a16fa4422fcbfa2c64d4520b931fa208215ef808e09d42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 119.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9f3f25268bc99efcaabc788065304446dd911a61b01020de952bcf207746ea71
BLAKE2b-256 checksum
How to use checksums
ed99e20b75f1297e1f1047b5d7ceef90faf0986dea2e3387598acef633958cde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 123.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
573d1ece867469572d260a3ccb883c9f4c4f779006afa8594b6475fb4190c66d
BLAKE2b-256 checksum
How to use checksums
49c016d2cbd4c41c5c505f6bb524eba5730f8f2e0ace26efcce67b348b03c0a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 40.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eed968ff76697954db941fd09dfbd638fa10ba75b415886f85c2cddb75910ff0
BLAKE2b-256 checksum
How to use checksums
0f1f3fa93e5da708fc1e9838e64859606c438fd1e21dace9360827076f7af13a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 40.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
13424bb7d5d9f4e1cd94d30fe023b059e71539c688eeb01ba8fc64fa0daba098
BLAKE2b-256 checksum
How to use checksums
3f6233a6a6788a84b6f485e952cf60d73d6652ec5e20968c40df2407ad846bd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314t-macosx_10_15_universal2.whl

Download URL maxminddb-3.2.0-cp314-cp314t-macosx_10_15_universal2.whl
Size 60.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
728fb4b6ddc8ab82344d91da9b921e3a4943b86c820c00fb6765fbdfdec24480
BLAKE2b-256 checksum
How to use checksums
d2d158f54d9499075fab905c4c24241606ca25881481b2f0feb4c39489dd2e56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-win_arm64.whl

Download URL maxminddb-3.2.0-cp314-cp314-win_arm64.whl
Size 37.4 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
0d0dd36f7f0981cd3fa2e8e36a010916e6e20351893c6fa8f3f65b6c972eebd4
BLAKE2b-256 checksum
How to use checksums
c5bf54bc9013277bfe96301612578070e4ce3f295d4d8425262b6c70c56d2d76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-win_amd64.whl

Download URL maxminddb-3.2.0-cp314-cp314-win_amd64.whl
Size 39.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e6a66c7d8d6c744b43ed57b1db6f93f87b01d3929a312db21febdfba02862e64
BLAKE2b-256 checksum
How to use checksums
1e0e20a9c720be75026bf8a3a9ca3c7a0ec474ca92de8f3f6813d71b5b1728d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-win32.whl

Download URL maxminddb-3.2.0-cp314-cp314-win32.whl
Size 38.3 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
47673a15778d45ffa78a5c32b888cf7476764599491329031783627be14c6617
BLAKE2b-256 checksum
How to use checksums
a4711267799df70857792039d05054a3ecdbbdca8512573097b88cbe1f579a85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 101.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
03728e46da92f0463fd65be373e10a45961d9c712b4d2c495b416e465ac8bd9e
BLAKE2b-256 checksum
How to use checksums
5db8d7f31cfeed35e694883b802e632cc1e696287ff02b47b2d555710eb5f0b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 103.2 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1a6580e90a53b67f985f1f40e31959c253010605a4caf4ca2f0e5cb002cac9fe
BLAKE2b-256 checksum
How to use checksums
bf48d7f8770064fedc815d2ebd699fabc4513d3446ec1d5ed71ea707d60ccb3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 103.9 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
97e09651abae965bd8161d56bca93f511f791c8daffad9e6e68fe746213cea10
BLAKE2b-256 checksum
How to use checksums
837abbd0ec5f8338f5ec01a7d5247f4098e9cec7b1587c360cecc8c59c9388c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 106.3 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
53f4804d789c45e9b16c040a1d16c5bb476850c525340e97c697f4f5986a1498
BLAKE2b-256 checksum
How to use checksums
888b6c9eef87f006b7df55ba591194209c25eab8ae60a2be51343bba81996e8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 38.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9679905827ff5a9b343c6cb4d161d0461c080a15e8ec4420e1fa2b5413f8ce5a
BLAKE2b-256 checksum
How to use checksums
fe73aace91fb3359c6a47739e61970a966622f043af9f7e1194185533182b4ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 38.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2116d086def1cec0f36bc82e6b87baa3c3c911a8fce8d88944d06b44e09fb1d8
BLAKE2b-256 checksum
How to use checksums
3f0b00dee0d083b7d5ccaa96b0df26a97041678f295cd9afaf15988c0d5bea8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-macosx_10_15_universal2.whl

Download URL maxminddb-3.2.0-cp314-cp314-macosx_10_15_universal2.whl
Size 56.8 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
382c9177ad83208be5828c69022212dec282714349caedcaf2f30c829682b72d
BLAKE2b-256 checksum
How to use checksums
01cf3ddcace3979d169afe6d7fe1105a0d49d23672d8bf398bf9a00dacd3a0db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl

Download URL maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Size 38.2 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
2118db358a3167dda45513d9003e6f01533aa8f7f521fe62e3be25245d95947b
BLAKE2b-256 checksum
How to use checksums
c642f9bf7e4478051a39046829fa962b78f1feeeee6f4a90f238600c8c3b36d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl

Download URL maxminddb-3.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Size 37.6 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
0f2bef6efb37f3fb73c4877ef5859a1e10d6f2dffa70fda1810160cc5b99d728
BLAKE2b-256 checksum
How to use checksums
d072bb684fbb5744a93ed6ff43b17f33455deb62112e58b84e3096d2e6e7c70d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-android_24_x86_64.whl

Download URL maxminddb-3.2.0-cp314-cp314-android_24_x86_64.whl
Size 40.7 kB
Tags Android API level 24+ x86-64 CPython 3.14
SHA-256 checksum
How to use checksums
704887b09ac9279a89e9881f2259b06077b131ff6bfceea7e8d398e6c5f4fbf7
BLAKE2b-256 checksum
How to use checksums
030e30bf978970ff422e476a36e09007f5138102c6d92ae38347b37151b30f6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp314-cp314-android_24_arm64_v8a.whl

Download URL maxminddb-3.2.0-cp314-cp314-android_24_arm64_v8a.whl
Size 40.3 kB
Tags Android API level 24+ ARM64 v8a CPython 3.14
SHA-256 checksum
How to use checksums
80ebe5d9144c2ecba927e3fa24714db73ce59f0c4fa564176f6a5a917d1e4d5a
BLAKE2b-256 checksum
How to use checksums
a01520de04be4da49cb3b89aa17ead81977243c6d1ce5f239388d926023533a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-win_arm64.whl

Download URL maxminddb-3.2.0-cp313-cp313-win_arm64.whl
Size 36.7 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
fd454af7ed67069aa76c0fa9119ec9440cfd7abe7cd7aa66373ecf1f46067295
BLAKE2b-256 checksum
How to use checksums
5dc60beeb15de79d3b1d7a1664e15afee6a77206809759f11bfb19b196cc87f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-win_amd64.whl

Download URL maxminddb-3.2.0-cp313-cp313-win_amd64.whl
Size 39.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2a0a39d76bb80081ccc0aeb17728fd3c3890b7e21e085edf0ea4984d01b523ab
BLAKE2b-256 checksum
How to use checksums
3f32ff371e30fc2046c45d0cb25687d733b332cc8cc6ea1564d920ae600ade1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-win32.whl

Download URL maxminddb-3.2.0-cp313-cp313-win32.whl
Size 37.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
b09e4a011c63269388db4c2a93863d0825c45f0edc720735215c54cd4cdb3de9
BLAKE2b-256 checksum
How to use checksums
64764208061e847b929e4914301978df88895074767db2652a67fdc6fc1af744
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 101.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f44ff542fca95b7aa6c852027b36baaf39afa9c649f7cfacf096cbe074521d89
BLAKE2b-256 checksum
How to use checksums
95aad71cc832edf56eec06e2041c737c870128204f98c72fb34cd00f997157c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 103.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
75901afb7f24914b8530494e00adada7149def091aa7c176706e99d0b46938cf
BLAKE2b-256 checksum
How to use checksums
a0a5b675b69dbc72315d2434c07faf01e70ed7345de49c55400b98f90d62d497
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 104.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3a682bc105a6e23b2e423ed9eda71b58c797db1c864b1c5b8a6458d6ebcc497a
BLAKE2b-256 checksum
How to use checksums
dcfb402b7479e6c9027dc3e740500e93b220f923765caa22f3ce89dedfbccb45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 106.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c3ba166c3572ce1f7a957d2b5165df33e6136da12151fe2c45c636128205cb59
BLAKE2b-256 checksum
How to use checksums
60fb8b0fafa985df7b4170112b3ef85859e731905ee4331f884759a37dbfc910
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 38.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4a6c12ccc49f9b9abe29aa9f32bf153f8a17efbc7d568bd64f80f2f4c71d64d5
BLAKE2b-256 checksum
How to use checksums
6712b0f852bb2b2d9def4b07cf48689f16bead0a76c31b8e1794efd0656840ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL maxminddb-3.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 38.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f4b647e2fc4331e66a0b4628af205044f158ab153e886522578d6b2762b9cdb1
BLAKE2b-256 checksum
How to use checksums
798b647cdc03a236d3a831fc6c6c3bfa43acaa4ee66bbcfef296a8e369837c17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL maxminddb-3.2.0-cp313-cp313-macosx_10_13_universal2.whl
Size 56.8 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
6f83117aa50373819fc1a6517511d809662ecc595e848bf0f020d1b1e2acdc95
BLAKE2b-256 checksum
How to use checksums
b3245fba205ea071dd4d6595d2705241eb33872bce6107c0a3a6c8e6b1088b54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl

Download URL maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Size 38.2 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
59f02d7dfb96bcab5c53875a0e4d77c2bca035e9e98b339a60866e296e382693
BLAKE2b-256 checksum
How to use checksums
cfe7954a4bd75ba3410d4637a415280b9ff6ecb7a634e6103042e0e930737cec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl

Download URL maxminddb-3.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Size 37.6 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
5b2eac88c71d6284042217f47cc09b59c17190037bfd3fbd0fe99564863db2a2
BLAKE2b-256 checksum
How to use checksums
a89e64a86f3205048dae5a94c161d4b611481ae84704e7479dd14f2921bfba0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-android_24_x86_64.whl

Download URL maxminddb-3.2.0-cp313-cp313-android_24_x86_64.whl
Size 40.7 kB
Tags Android API level 24+ x86-64 CPython 3.13
SHA-256 checksum
How to use checksums
f9e2e611a43b145270ead4e0d4c65e3c484d6cf59e75b0f353ddbafe74c9862e
BLAKE2b-256 checksum
How to use checksums
a073a91a0ad18a19f04f8115733f92f745c60022279b856b2887dbfcf0511f5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp313-cp313-android_24_arm64_v8a.whl

Download URL maxminddb-3.2.0-cp313-cp313-android_24_arm64_v8a.whl
Size 40.3 kB
Tags Android API level 24+ ARM64 v8a CPython 3.13
SHA-256 checksum
How to use checksums
3b21cb7e5aba09d876abfa5bca663496a5e029b19c34dfd37b293aa56368dcd0
BLAKE2b-256 checksum
How to use checksums
e4b9bac4c644c4a8d84fd5d079b91a42b8b84e6e792b87247d65f298c2405960
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-win_arm64.whl

Download URL maxminddb-3.2.0-cp312-cp312-win_arm64.whl
Size 36.7 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
ddb67cb4a0cbaf4d47624e8b04f1f52dfea5d25b74bce5c4558edc936589e473
BLAKE2b-256 checksum
How to use checksums
f673115d12de08b8c71b05ed7767b6d513cc90bb9114477331f43d3be9c536e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-win_amd64.whl

Download URL maxminddb-3.2.0-cp312-cp312-win_amd64.whl
Size 39.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4c89e67596f8dde091bfa8417a18f636778a8ea4c9429496a6acbc54e1c1cdcb
BLAKE2b-256 checksum
How to use checksums
bde7beefb33481e3ce9c5fa7954d8f592f18785a26060969dd90ce9d4cd7c831
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-win32.whl

Download URL maxminddb-3.2.0-cp312-cp312-win32.whl
Size 37.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
6070514c2564f6a08001bdccbadbac1d5783ce6eeb02f4711f939fec0548757c
BLAKE2b-256 checksum
How to use checksums
d03a4743fcff5f712aa2b70e96a5909a7b8311649ed512c34f59fabea1102f34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 101.9 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9486db60337637d1757283b157c5e5d8394bd1bb794776095a3b583d65b7266b
BLAKE2b-256 checksum
How to use checksums
ee324b2c6567da4714bff4df50eb7444f9facfdb3fdeb5b06097295476088e2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 103.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
150fb4d8818c165bd34599853d2bb9f34bc70e58ad3cc6d991b41cf2fde368e8
BLAKE2b-256 checksum
How to use checksums
e1c2f9e9560ee25aaf38bf0a0b96c6dd0c7aeaa6b22e58c18374044d91f962d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 104.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8e8ff70716a4f565ba9c7e91d86e3e60e4baac9794b944e5c35b772e7aedb21e
BLAKE2b-256 checksum
How to use checksums
0fbeb397334d506c8295db56b05291b42601aaca406ebb29c609c9f1e87fe51f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 106.3 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b331966886c0c2a1302d6e5a8b3e18a0146bee42018ef81f222c4d4a2a842e6a
BLAKE2b-256 checksum
How to use checksums
e3dc2411bded5dc455c2f36720fb28cff91a278b6f75ea32ee580e9073d4b459
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 38.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bd14de353b898b0356434b95c447801ed56853345e4a4ffcc0fff127833ffd62
BLAKE2b-256 checksum
How to use checksums
e739564458e0b0af4769a00b0b02864a52ec619b814133de5758546d681eea73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL maxminddb-3.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 38.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e95f1f591c232e65e6c3d9fb3801e594f460157bbe50fb27baa9cc1958c6e9e3
BLAKE2b-256 checksum
How to use checksums
ef983660888159ec2a5d22f4b72c2aa21149b2bfa8489bf6495279a8025791dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL maxminddb-3.2.0-cp312-cp312-macosx_10_13_universal2.whl
Size 56.8 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
cfa94f1140253c28875ac41c3cea1f5c79546eb54a2661604d64bc68625515c8
BLAKE2b-256 checksum
How to use checksums
e9614b79c7bfdecde33b47d71d20774bf1f633ff9a2799e987f2106339d0efc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-win_arm64.whl

Download URL maxminddb-3.2.0-cp311-cp311-win_arm64.whl
Size 36.7 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
b419c808071c5b0140aa3af278638432bb2827bd58e4165d7f8cb2a525b08269
BLAKE2b-256 checksum
How to use checksums
ba0a86841e310666342248defcb14ee80120bd40dba851ed4a223201c686f373
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-win_amd64.whl

Download URL maxminddb-3.2.0-cp311-cp311-win_amd64.whl
Size 39.0 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d624dc0b9e849a1eb85c35ed8d1c91d1d35fbe3951c7ee93e1ba5fae9b55440a
BLAKE2b-256 checksum
How to use checksums
b637d97b01542718ffe32aef8897c542fb2692645ac71ff82f58090b6d98ca25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-win32.whl

Download URL maxminddb-3.2.0-cp311-cp311-win32.whl
Size 37.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
c8876e79fc245c249b761740a54425dcf86864018528720a3af3fb1d3e24e34f
BLAKE2b-256 checksum
How to use checksums
07729a0490121b0b8ca5b4e8390e85e709c6b77d6177d5a9b820e0cf8e5e90de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 99.6 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7e6f2eb9524210b1be25bfcc9c688d8802cdbfa8a53679c985cfc0ad75286758
BLAKE2b-256 checksum
How to use checksums
67a6f655b9ceeb59ad92c44765d18ff013502d1ee9334844ba11361dac5c6ac8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 101.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
13d2280ec354b9c5384ac3f25a6e8c040ec69da6de491cfdb47ae88a7b41164a
BLAKE2b-256 checksum
How to use checksums
157c0f5ef75211688b2d618134993b4bed59f561a0c17b5654e3948782323955
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 101.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
05f0c8b3c71a91da36600184fd4b74b6a1eca2ed163d6ce9b1cff42536569c66
BLAKE2b-256 checksum
How to use checksums
98a068a8929634c907067649596738cf0d56c7eb673139d00ce798b1f0796eb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 104.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
76ec42a309d4cd1c8fb1982eaa4513a4f29689f5e602d1d1b5d590957a34d0a4
BLAKE2b-256 checksum
How to use checksums
61b061b8c7964c84cfbd5e6449932c1f782fc8eb71d8b944f7385ad17f52495a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 38.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b0c9f0d934257cc4bfa223bb98c5661582d6128967a1c6e5effe04809b2b1c04
BLAKE2b-256 checksum
How to use checksums
b588d4d0b73b12bd66de236a2092d695bedb5f87b262d09bbf1a9ff0cd1402f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL maxminddb-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 38.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f4c2b4c35d42492fadad9d832f9912441fbac9f5f4263533ea3019ef56783a31
BLAKE2b-256 checksum
How to use checksums
f79f55bd00ecbadc7f0a41efd39fda4c6ca51d875418dd35bcbb2528d9e24b13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL maxminddb-3.2.0-cp311-cp311-macosx_10_9_universal2.whl
Size 56.4 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e54c0c7abbafb30cfe415686ed339d77525de5c1f026911fe77ad3deebba4bdb
BLAKE2b-256 checksum
How to use checksums
6ae6cec175ebebaadfb489ea9d7f69a0b3c419eb1b68e8885df7398e1307af9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-win_arm64.whl

Download URL maxminddb-3.2.0-cp310-cp310-win_arm64.whl
Size 36.7 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
be46f642243f91b5e766d5f8162fbf769ef30b1ab4a89e3c81913d0e0961e4ca
BLAKE2b-256 checksum
How to use checksums
5c0445307398f66a3578b1be2990aaede13c27fe276360bedf9a041b4c778cc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-win_amd64.whl

Download URL maxminddb-3.2.0-cp310-cp310-win_amd64.whl
Size 39.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
665b87310cac05899a685e213e6e39fcc71c670f12ff1a88eb4392e4c01bd372
BLAKE2b-256 checksum
How to use checksums
a77f4a2767bf7bf145164f0680c8534f7257c6b722b11b52d3bb1ab45fe4b6b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-win32.whl

Download URL maxminddb-3.2.0-cp310-cp310-win32.whl
Size 37.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9bf1a2f3aec320da30b5fa7431c3e1e8fd63203347b402dc5e5afba87620e520
BLAKE2b-256 checksum
How to use checksums
a84ef34dc7574b96e0ea84a4e313edeae35d058941c0b4f80c5682600a16edf9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL maxminddb-3.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 99.4 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
de2d54b5242df4f03b26de578eb0fd6a0dbde07bf7db5e69b8f8c8817fb80cc0
BLAKE2b-256 checksum
How to use checksums
f0bd4752352f90715b59505fe8b0e9e24159555436499580393d27db1e3b905c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL maxminddb-3.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 101.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9cbca221a84330c49625f7f5b5ca2cb9b1a00bcc95a57872653bb6eac72921e8
BLAKE2b-256 checksum
How to use checksums
ac1f845c9f188fc954d054f49342445d7b8c99789dd97fd5e64a236e186e980b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL maxminddb-3.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 101.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2b830440fdc06ff40270b901f05ddc53f9f24944b35cd980f10e94c149d89b39
BLAKE2b-256 checksum
How to use checksums
41dc08776cf1fb73820f1ca5e33504f381f8a3ed43c27a7b2e06e1c3f4589b6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL maxminddb-3.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 104.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
27c02966faadc65a7cfeb944a862ceebf41b3ab2438867312827fdadd554e74d
BLAKE2b-256 checksum
How to use checksums
2195e0b1b31ba91657dd94bb603cf5d6b3f208b9d96b3eea1e9d6013a1560b46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL maxminddb-3.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 38.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
398e96ab54b63ef23700d24096699adef5f4342d16bd56bb6f885236d07c1f13
BLAKE2b-256 checksum
How to use checksums
fb1528e3e9f16325a61745d70d775a7930b407f15ef27d564d99635346921b72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL maxminddb-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 38.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
84c64f784a03fe0d087731eb92378eb7eee892d294f9b2e67bd7b916bf60ff1c
BLAKE2b-256 checksum
How to use checksums
ba519842d515e5c9dbb1b04f065a5ced85f4c3df314ec5f74d10a6f8e5e14b05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / maxminddb-3.2.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL maxminddb-3.2.0-cp310-cp310-macosx_10_9_universal2.whl
Size 56.4 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
cc7e3a8f6e4f452c794d39dc4bbf5cdcca9804d76173f50b1788453dd86c6493
BLAKE2b-256 checksum
How to use checksums
2e43458efe8b07bd455de145e7d03c8e23f9d9f76b45547c1b8bd7ecf16da2e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

3.2.0 This release

103 release files

3.1.0

79 release files

3.0.0

79 release files

2.8.2

92 release files

2.8.1

27 release files

2.8.0

1 release file

2.6.2

69 release files

2.6.1

69 release files

2.6.0

48 release files

2.4.0

1 release file

2.3.0

1 release file

2.2.0

1 release file

2.1.0

1 release file

2.0.3

1 release file

2.0.2

1 release file

2.0.1

1 release file

2.0.0

1 release file

1.5.4

1 release file

1.5.3

1 release file

1.5.2

1 release file

1.5.1

1 release file

1.5.0

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.3

1 release file

1.2.2

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.3.3

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3.0

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page