Skip to main content

PyGeoHash

PyPI version Python Versions

A simple, lightweight, and dependency-free Python library for working with geohashes.

Full docs at pygeohash.mcginniscommawill.com

What is PyGeoHash?

PyGeoHash is a Python module that provides functions for encoding and decoding geohashes to and from latitude and longitude coordinates, along with utilities for performing calculations and approximations with them.

It was originally based on Leonard Norrgård's geohash module, but now adds more functionality while supporting Python 3, and is optimized for performance.

Why PyGeoHash?

  • Zero Dependencies: Works with just the Python standard library
  • Simple API: Clean, intuitive functions that are easy to understand
  • Lightweight: Minimal overhead for your projects
  • Python 3 Support: Fully compatible with modern Python
  • Robust Implementation: Reliable geohash operations
  • Optional Visualization: Visualize geohashes with matplotlib and folium
  • Extensively Tested: Comprehensive test suite validated against geohash.org

Installation

# Basic installation
pip install pygeohash

# With visualization support
pip install pygeohash[viz]

Quick Start

import pygeohash as pgh

# Encode coordinates to geohash
geohash = pgh.encode(latitude=42.6, longitude=-5.6)
print(geohash)  # 'ezs42e44yx96'

# Control precision
short_geohash = pgh.encode(latitude=42.6, longitude=-5.6, precision=5)
print(short_geohash)  # 'ezs42'

# Decode geohash to coordinates
lat, lng = pgh.decode(geohash="ezs42")
print(lat, lng)  # '42.6', '-5.6'

# Calculate approximate distance between geohashes (in meters)
distance = pgh.geohash_approximate_distance(geohash_1="bcd3u", geohash_2="bc83n")
print(distance)  # 625441

# Get adjacent geohash
adjacent = pgh.get_adjacent(geohash="kd3ybyu", direction="right")
print(adjacent)  # 'kd3ybyv'

Visualization

PyGeoHash includes optional visualization capabilities:

# Plot a single geohash
from pygeohash.viz import plot_geohash
import matplotlib.pyplot as plt

fig, ax = plot_geohash("9q8yyk", color="red")
plt.show()

# Plot multiple geohashes
from pygeohash.viz import plot_geohashes

geohashes = ["9q8yyk", "9q8yym", "9q8yyj"]
fig, ax = plot_geohashes(geohashes, colors="viridis")
plt.show()

# Create interactive maps with Folium
from pygeohash.viz import folium_map

m = folium_map(center_geohash="9q8yyk")
m.add_geohash("9q8yyk", color="red")
m.add_geohash_grid(precision=6)
m.save("geohash_map.html")

Generating Example Visualizations

To generate example visualizations for the documentation, you can use the provided Makefile command:

# Install visualization dependencies
make install-viz

# Generate visualization examples
make viz-examples

This will create static images and interactive maps in the docs/source/_static/images directory.

Features

  • Encode coordinates to geohash strings
  • Decode geohash strings back to coordinates
  • Calculate approximate distances between geohashes
  • Find adjacent geohashes in any direction
  • Control precision of geohash encoding
  • Bounding box calculations
  • Visualize geohashes on static and interactive maps

Testing and Accuracy

PyGeoHash is extensively tested to ensure accuracy in geohash encoding and decoding:

  • Comprehensive Test Suite: Includes over 200 test cases covering various precision levels and geographic regions
  • Validated Against geohash.org: All test cases are validated against the reference implementation at geohash.org
  • Edge Case Coverage: Special attention to edge cases like poles, equator, date line, and precision boundaries
  • Roundtrip Consistency: Ensures encode->decode->encode operations produce consistent results
  • Regional Coverage: Test cases span all continents and major geographic features

To run the tests:

# Run the standard test suite
make test

# Run tests with coverage
make test-cov

Use Cases

  • Location-based services
  • Spatial indexing
  • Proximity searches
  • Geographic data clustering
  • Location encoding with privacy considerations
  • Geospatial data visualization

Blog Posts

For more insights about PyGeoHash, check out these blog posts:

Contributing

Contributions are welcome! Feel free to submit a Pull Request.

License

This project is licensed under the MIT license. See the LICENSE file for details. Prior to version 3.0.0's rewrite the project was licensed under the GPL-3.0 license.

Acknowledgments

  • Originally based on Leonard Norrgård's geohash module (since re-written)

Benchmarks

How PyGeoHash compares to other geohash libraries

Median time per call in nanoseconds — lower is better. Measured on an Apple M4 (macOS, CPython 3.12.11) with the suite in tests/test_benchmark_comparison.py, run three times.

Library Implementation encode decode bbox
geohashr Rust extension 125 80 104
pygeohash-fast Rust extension 166 167
python-geohash C++ extension 208 250 250
pygeohash C extension 250 333 709
libgeohash pure Python 2,709 2,625 2,750
geohash-tools pure Python 3,792 3,375
geolib pure Python 10,584 58,208 43,292

PyGeoHash is 3.9x to 10.8x faster than the quickest pure-Python library, depending on the operation, and lands within 1.2x of python-geohash on encode (1.3x on decode, 2.8x on bounding boxes) — the C++ extension it is commonly swapped in for when a build toolchain is not available. The two Rust extensions are faster than PyGeoHash on everything measured here, and the two fastest encode entries are within measurement noise of each other.

These are medians from one machine and one set of runs. The full tables, the exact library versions, the caveats and the command to regenerate everything are on the benchmarks page in the documentation.

Version history

The tables below compare PyGeoHash 3.0.0 to PyGeoHash 2.1.0 — a record of the v3.0.0 CPython rewrite, not a comparison against other libraries. They were produced with a much older pytest-benchmark and are kept for history only.

Version 3.0.0

Name (time in ns) Min Max Mean StdDev Median IQR Outliers OPS (Kops/s) Rounds Iterations
test_encode_benchmark 614.0035 (1.0) 1,170,750.9984 (1.34) 1,119.5566 (1.0) 6,011.2433 (1.35) 714.0043 (1.0) 664.4987 (7.30) 370;1371 893.2107 (1.0) 117772 1
test_approximate_distance_benchmark 901.9859 (1.47) 872,125.0051 (1.0) 1,346.1119 (1.20) 4,467.1457 (1.0) 1,031.0032 (1.44) 90.9786 (1.0) 463;13144 742.8803 (0.83) 71891 1
test_decode_benchmark 2,791.9887 (4.55) 3,266,092.0115 (3.74) 4,683.3561 (4.18) 22,447.8219 (5.03) 3,102.9922 (4.35) 2,965.2583 (32.59) 103;302 213.5221 (0.24) 26769 1
test_haversine_distance_benchmark 3,989.0001 (6.50) 1,066,400.9897 (1.22) 5,441.2395 (4.86) 10,068.4850 (2.25) 4,475.0050 (6.27) 330.0083 (3.63) 429;3534 183.7817 (0.21) 28312 1

Version 2.1.0

Name (time in ns) Min Max Mean StdDev Median IQR Outliers OPS (Kops/s) Rounds Iterations
test_approximate_distance_benchmark 903.0045 (1.0) 2,239,810.0118 (145.76) 1,242.2962 (1.0) 8,910.5317 (2.45) 1,034.0009 (1.0) 83.0041 (1.0) 411;12404 804,960.9836 (1.0) 126872 1
test_numba_point_decode_benchmark 5,554.9899 (6.15) 28,678.0123 (1.87) 11,125.8007 (8.96) 9,922.0335 (2.73) 6,597.9839 (6.38) 8,462.7463 (101.96) 1;1 89,881.1717 (0.11) 5 1
test_numba_point_encode_benchmark 6,829.9996 (7.56) 15,366.0076 (1.0) 8,949.4046 (7.20) 3,633.1020 (1.0) 7,203.9838 (6.97) 3,100.7585 (37.36) 1;1 111,739.2773 (0.14) 5 1
test_decode_benchmark 9,094.0157 (10.07) 564,207.9923 (36.72) 23,505.3902 (18.92) 47,847.8575 (13.17) 19,235.4928 (18.60) 10,221.4981 (123.14) 4;9 42,543.4333 (0.05) 156 1
test_encode_benchmark 16,131.9913 (17.86) 6,522,867.0137 (424.50) 43,962.7989 (35.39) 204,118.7023 (56.18) 30,353.0251 (29.35) 5,316.5204 (64.05) 12;160 22,746.5044 (0.03) 1081 1
test_haversine_distance_benchmark 19,751.9839 (21.87) 2,229,443.9841 (145.09) 24,979.8646 (20.11) 27,057.9632 (7.45) 21,632.0041 (20.92) 1,626.0019 (19.59) 453;3700 40,032.2426 (0.05) 24647 1
test_numba_vector_decode_benchmark 887,114.0017 (982.40) 1,070,945.9893 (69.70) 974,148.7971 (784.15) 72,131.5386 (19.85) 977,645.9774 (945.50) 111,056.4845 (>1000.0) 2;0 1,026.5372 (0.00) 5 1
test_numba_vector_encode_benchmark 6,603,729.9985 (>1000.0) 9,492,440.0037 (617.76) 8,344,232.0058 (>1000.0) 1,069,465.9606 (294.37) 8,602,735.0044 (>1000.0) 1,065,492.2444 (>1000.0) 2;0 119.8433 (0.00) 5 1

Download files

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

Source Distribution

pygeohash-3.3.2.tar.gz (60.4 kB view details)

Uploaded Source

Built Distributions

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

pygeohash-3.3.2-cp315-cp315t-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

pygeohash-3.3.2-cp315-cp315t-win32.whl (40.9 kB view details)

Uploaded CPython 3.15tWindows x86

pygeohash-3.3.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.9 kB view details)

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

pygeohash-3.3.2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (53.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygeohash-3.3.2-cp315-cp315t-macosx_11_0_arm64.whl (39.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pygeohash-3.3.2-cp315-cp315t-macosx_10_15_x86_64.whl (39.1 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

pygeohash-3.3.2-cp315-cp315-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.15Windows x86-64

pygeohash-3.3.2-cp315-cp315-win32.whl (40.7 kB view details)

Uploaded CPython 3.15Windows x86

pygeohash-3.3.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.2 kB view details)

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

pygeohash-3.3.2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (52.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygeohash-3.3.2-cp315-cp315-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pygeohash-3.3.2-cp315-cp315-macosx_10_15_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

pygeohash-3.3.2-cp314-cp314t-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pygeohash-3.3.2-cp314-cp314t-win32.whl (40.9 kB view details)

Uploaded CPython 3.14tWindows x86

pygeohash-3.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.7 kB view details)

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

pygeohash-3.3.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (53.4 kB view details)

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

pygeohash-3.3.2-cp314-cp314t-macosx_11_0_arm64.whl (39.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pygeohash-3.3.2-cp314-cp314t-macosx_10_15_x86_64.whl (39.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pygeohash-3.3.2-cp314-cp314-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pygeohash-3.3.2-cp314-cp314-win32.whl (40.7 kB view details)

Uploaded CPython 3.14Windows x86

pygeohash-3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.0 kB view details)

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

pygeohash-3.3.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.8 kB view details)

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

pygeohash-3.3.2-cp314-cp314-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pygeohash-3.3.2-cp314-cp314-macosx_10_15_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pygeohash-3.3.2-cp313-cp313-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pygeohash-3.3.2-cp313-cp313-win32.whl (40.4 kB view details)

Uploaded CPython 3.13Windows x86

pygeohash-3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.0 kB view details)

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

pygeohash-3.3.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.8 kB view details)

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

pygeohash-3.3.2-cp313-cp313-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pygeohash-3.3.2-cp313-cp313-macosx_10_13_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pygeohash-3.3.2-cp312-cp312-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pygeohash-3.3.2-cp312-cp312-win32.whl (40.4 kB view details)

Uploaded CPython 3.12Windows x86

pygeohash-3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.9 kB view details)

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

pygeohash-3.3.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.7 kB view details)

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

pygeohash-3.3.2-cp312-cp312-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pygeohash-3.3.2-cp312-cp312-macosx_10_13_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pygeohash-3.3.2-cp311-cp311-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pygeohash-3.3.2-cp311-cp311-win32.whl (40.4 kB view details)

Uploaded CPython 3.11Windows x86

pygeohash-3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.4 kB view details)

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

pygeohash-3.3.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.2 kB view details)

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

pygeohash-3.3.2-cp311-cp311-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pygeohash-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pygeohash-3.3.2-cp310-cp310-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pygeohash-3.3.2-cp310-cp310-win32.whl (40.4 kB view details)

Uploaded CPython 3.10Windows x86

pygeohash-3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.3 kB view details)

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

pygeohash-3.3.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.1 kB view details)

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

pygeohash-3.3.2-cp310-cp310-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygeohash-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pygeohash-3.3.2-cp39-cp39-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pygeohash-3.3.2-cp39-cp39-win32.whl (40.4 kB view details)

Uploaded CPython 3.9Windows x86

pygeohash-3.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.1 kB view details)

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

pygeohash-3.3.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygeohash-3.3.2-cp39-cp39-macosx_11_0_arm64.whl (39.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pygeohash-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pygeohash-3.3.2.tar.gz.

File metadata

  • Download URL: pygeohash-3.3.2.tar.gz
  • Upload date:
  • Size: 60.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2.tar.gz
Algorithm Hash digest
SHA256 77ef146b4d227b776fc1cc4515517e99a4da6b8b0b795c02a4994d3d24b5857c
MD5 3751d973e4b7f14ff7300122a9d97a0d
BLAKE2b-256 0ac01d6bc44da13e5709dbbf284766f0cbb5bbde1aab9f0a76fbdb6c49dd2c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2.tar.gz:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 7cd8d48f441d1ba059b61953602d99fcab1d27cf52f98f4757a45480f2a6df0f
MD5 8e8e1a35654522c949e6ac63da619629
BLAKE2b-256 c711d8034ca6cd2c43d7d73e90f5ef32bc49e14ce948e519259542fff127f9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 50c9e81c27dcf82c58189d78642f775fc344995bb903d79e680c6e8e8cdcd0a1
MD5 6fdd0f1ebb643790ed4f37111a6dbecb
BLAKE2b-256 659224a6ce6d703f5b4f2ec8bb9204b15ccf532430c8d597bf3dd163653cbed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5d74f32ac54f903193c90b43c27628683a9804502a0a05cb077729aef7eee62
MD5 8310f7ccdb75b5e57993fe1185cb55c3
BLAKE2b-256 bfb9a3dbf84c044dfecd46c53bf8bea2ff98b3cd40a1a39fde5ada38d3ce78c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 80d1c353874ff653402a0c917d6cacf08e06538c2f4e0febe4daad0ef11cda21
MD5 5e945b28e9a429d627fd783f195e2523
BLAKE2b-256 ef8a1d3261875a9443800fbac074a920ee7f110d59982bf6a9ffd683fdf430f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a468b2fcd2cfbc27f87ea9785138d669178c64f9e4611321e315492d14d5424
MD5 ec9237c8c12a31d3b0ac98b3c8a12a0b
BLAKE2b-256 ddadf3dabac393577ecc0b40b14a07f5affd93bd87895b26f4187e7063043127

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 917eee9506285a484e42a92c91330edc4032cdef2b9683cde2ebe8846f22c865
MD5 79c1ca3841523b80f051d006e0415cf9
BLAKE2b-256 bd6fce3f5b1f6aae9177ec53a5bc66acccae461d10788652b3c2fad44a889c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 708bf4ca284ab6b8a3db6d0025adc68f4383e3e6a02f972507d1ae7b4f0b89d1
MD5 b2c0eec1e63e472009ae2c010551123f
BLAKE2b-256 500a2a990ad9c5000c9ff3bce0447015b0b4452f9528a2ddc4b95198111034c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 40.7 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 ac36ab72b351758abdc5fd3056d18d155ae055ce63ef3bb9201108e36d383ec3
MD5 4940a23d06f522e27fbf90422e166baf
BLAKE2b-256 3095b87086861effff2d0e819c0a43ba839ad41635b74f3c50bf5bfcd8f6eef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d02d7939031a1f51adb7e94f07ed06e2e84bf76377bc037810fe08895327c418
MD5 83b47623bf0b998bad64b57d87c5fa70
BLAKE2b-256 224eaf901b0113bd913e29842fc61d82404e5e724618cc35d3188a5454936a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1afdc0e151d86c757062cdbf6ffc1a4daa2477d36feedc9f65be3cc655d52e00
MD5 d0216b91058694d57a9779f6acdd08d6
BLAKE2b-256 07e0f19d6f8c05b59ccebb2335ebfae6570b5f7877a0bfcd3aeded8a858c1960

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d21dfb66bbc813587acb76a4c3a4dd98ac8d03166230fcb5da74a15c5fe3e371
MD5 b745d7bffbf0bbb6871ea27fc938928f
BLAKE2b-256 0af4a7ba7e8af437159845c37da2e3cad65af214b3a4003643497fe6e882588b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d411f8e3bd425898de2c6f48efe69191350a553aad861a753f3a66e71a63bcf
MD5 4606aa0c42761943d645251ef9e0d04e
BLAKE2b-256 9db4a7bced11011b540d5129b249c3ab5af0cdddf10f43ac4db0fb8e5dcf5a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3960722af5b1d4b8b34d7d085eb66e9333b588b2fb631a88d8215e965bf5dd75
MD5 820fb49f28fd31bfb98f82b29c219797
BLAKE2b-256 6f664b03fe2205b03482f71e013b5be9616d5d53723d19f53b8e267850574237

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314t-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 07de795f7bb029073c381ecc05f899cdc1fc8fbce24e9060b2d47fffa803a8e4
MD5 48148b87e0a730f6a941f23779e96a89
BLAKE2b-256 20547e4386700086affdaaabc7962fd865abc9a907204089b94f2a4b4ed1e597

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314t-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0586e63840772d4bd9704d386d6a977bd64beed74a0af88df45de368a2b4fb4c
MD5 a1b999918ff7c3831d8398cae51d01b2
BLAKE2b-256 d72d3d9faa60659b22a1e7a38a22e2bcf2d10cf833778cba16c973e035edba50

See more details on using hashes here.

Provenance

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

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 78e8dbe210808d379699c065d470066a1653f1c5214ab07912c94cf49ea455e6
MD5 f90cbee5d385e6de75847ece06387d26
BLAKE2b-256 b4a64de1fd8c053fcd31455cd60484ff870c3072f7725d9a441466ac70a7edd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab0f74656f8230730b4b35c5b9692afaac2063e9858a3dd7c548ad4a8b365a1
MD5 5120dbd078c35da11e69a38382bac239
BLAKE2b-256 ac8b834a60cdbbaec102eddcac89e5c4f71dbe750a5a3524fb8bf65563a076a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e8b73a83a21d67402e6961339a7feb6a0466997a1f81b6505becd8579bc0627a
MD5 933e1aa7521c19e5b38c99d60a5964d4
BLAKE2b-256 b3629a25f0afb24329099dd5e69d9bb49e5b8b3f0f320160a8e4fafd49b6d5e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ac9b54de510274d6486bf201570d043a7a43bef1cb1d4030a392a38f3654828
MD5 b6cefbd679398fd028ad7963d01009c6
BLAKE2b-256 a109d3a4398fd6162404bce070240e28d9a2f467a09533aef665b7a70ff2ea1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 40.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 635cc5b72b86039b3541d57659e4c2edbd4fb1cce9ec7cff9b9c0b66b2c52088
MD5 de04c3447ad2534acc33a8962765c460
BLAKE2b-256 e3049afa8c0c2f8cbfe03170c873cbce3872c3847543e403ac8bce85dfc5890a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1303712c00fdb6a91ac0ba2b7808d1f1dc856c794aecf55c04a490f1fb8bbb07
MD5 0b4e869b61048f34ac605b691a09e2d1
BLAKE2b-256 6dd2ebbd04b3d2bb982cc920078ec39e34be98172ca8acca49101666ad727b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1ba61e668f72663de70dc0225ee944316e1ecd173c2c0ce79a4f4633f4be8f93
MD5 c5cd68b4880547b60c59f31f43f9a3fc
BLAKE2b-256 08612379ffed503846e0a4dba9f5d7e309bbf0c5ca06040b056b2269204e9190

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8dd5586c93eb1e016fb3429ef5fe4e4b4b51c9b670d2855e5ba6945efc921c2
MD5 6cccda57b66fda2b4e5532695a5fcb30
BLAKE2b-256 139554345a7b67aab5c7d4e1933ad69c2a6d00c739ac56fe324d42e1c8f68dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ffc43897c77dcae7a1530acf25c07cbacba4b04fd2982258351c468bbf5a61c9
MD5 4a3144dccbeb39aa5bcde5c4e3dd5659
BLAKE2b-256 82ad101a18febc2f7bdfedb9dc692b3bad8298aebd03824d2a8fa6629aac9845

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a1db552d106a62041251a7144698f4f8319eab1ac73516a2811d87c2ce92fb96
MD5 71ab36ffcf9f0a081d548dfe47fc1e72
BLAKE2b-256 95b2d1164693179e7e9b34986904986f219dd9267f591d82c2ed5227fd286588

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7fcf0e56ca9b2558dad583f2bfb7e5170a001539279401587a96831ed551c456
MD5 94899eac4c7c6d0dc1c1be9fa1f808e3
BLAKE2b-256 179d29e45e208ba014dd5c192a07296092eb6a312882085c291487f75d6d681b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0da1324280a6fe62912303446f6a105885ef96cbebf60a1eddc3f4ed81b5755e
MD5 76674becf2f011cc3acd38ab68da4135
BLAKE2b-256 5ea5373f7d37807d9edddd0918dec2fec63742a440acc1ea4713ffe3e20537e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9b035ede0d9854be1b743cec2e4f13da72c2e637b74825577c19499ea50b7c93
MD5 6a089836b47d9d913a9f40e97d32082f
BLAKE2b-256 efbe4ed9b09fbc6af582ac11097fcba755ba1b5347dd9e175885f04fdacb93a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8399078a842071ed678fb132d0334d71b4f5b4a2f34a0f527391dc1ad328cbb4
MD5 e1c4469f6643c05d58bd0ad00dbd77b7
BLAKE2b-256 b73623d9255f83052d2ab41f88a631cda68b3c1ca0a2ed1e34787d7abaaef61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c7ba4799aef757f859119ab9b21b321d80ac96adc486a81f533f6e2e3ed33f1
MD5 d44e7fd705feb151637ebc1523a6d8b6
BLAKE2b-256 8c87c3a1a9b23eaae7a17312faee43c18b78698fe8072e2589faed3fd52e8d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d0980026ceebc41ddc5a319d5409fe1ac64818f79d62857fa9c2b457440aa58
MD5 12e60dabfd0f14ea5cc67c6614141435
BLAKE2b-256 a848330bff54b9569102eaf626db69fdc05ecab17621e4e5127de0a9a2b99e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5848b36ab67dc3ea1568b785ff73afe4620c00caf9727b799bce62b174c274d7
MD5 f50c40b18a81d037beb660d39b5f7225
BLAKE2b-256 221c4fc3d5086cdfe3e71cfec52239ea1b2c2298190eb4a1ae2c85bfd5d53636

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a09490e90e911ca3064e359c619fcb60ddac80ea436d5255721c1e9f43edb66c
MD5 eec4138a44df54edc5abdfd41b22551a
BLAKE2b-256 3edb32b5faaf06b2db7b145b3afcf4400de12a2cca7c7b5d86cb61e03edd74c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7344071c38926cb81659db9dc454d284f75878b167f6c754151df90ff56b1311
MD5 d391f296cfce031d666c71ad739bda49
BLAKE2b-256 7c5a9ed6b7c8d96857a6bcf08eef2be0059acad57cb0c77e03834fec1a4d5406

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a8a2712b2c55b87682e59e1a509dda616ea15a43181669d0a7455ade7a2e8c3
MD5 59cb23cadc3e77d7ecbf037b9b91abe3
BLAKE2b-256 8601ea6e029d8b87a66558b4338fb6f4a028c98c105e5a7d9b260044c5db59b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86b350bc66bc0fccaecdf113dddc9f278ae5c5f494bb79243017b6165116d167
MD5 62863ee1e31a76cca9fa7c3357b5c9e2
BLAKE2b-256 7708b7dc98403ce8d07aa21aaa6b326e349ec095a7f0567d4a0de30d18a8aba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02d5b91917857ea91312f89237d2e8b3c9c1a21cbc8adbab81998074c8d6ead7
MD5 7d90366ec6e3c5d302d682f7b3918666
BLAKE2b-256 304ad3fa95d531a05e9ab0ea4e8d466cee5337edfa703aafe0903875bd05f089

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca7ca7ef03dddd8f2a7f782f96fee4f6f3b5001ff68469a9a69d0e6255cd4a15
MD5 0248eab43a50e16c9c4f4b142d13fab3
BLAKE2b-256 7a601296d8ec13d314ec34f7a4618492f0031b8aba858e4b24faafef620dcf22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6b4c2320f91cb35237ae4ba6d4151f85a0f0901f2c9faefaf6ecae0e5de3c2c
MD5 6218462e44c4571e1e9f4cb7495955d7
BLAKE2b-256 ae81b8818d96c9ec3e67ca688419b4d17e61c0c2ce9c512e957582e12d1a0145

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 41835d2f4801aad8622b3cc57fcfb29f1dd4697038da75233ac2068c73e8a77f
MD5 084e35e67af8b9c70d7a80f5ef25f70f
BLAKE2b-256 7d7adf1bde2dddb00cc7a50a2719ae7adb4b05c3ac4920a59c948f98521de706

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2691037b03b76bf62119a99c15f7f9f96f2eae398e0d5fb88e88430d1f0682e
MD5 7e707e293828b6c0c5ceb08dcd591feb
BLAKE2b-256 62718c1f4921f735a080ea3b1abc46390ac6ed29ce7aa7a9bf3419110626bbbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 878484c84ba7da49bb88da64da623ad3bed66ae2fea8c900f200cc8d541e3f38
MD5 3b1bfb8642048d1963f30a4dd4e87998
BLAKE2b-256 0601e1a64890f7fb45c1fbb17dbd400dec550be7d84de09fec38186b36d82cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44edbe720630a92b82c4b51311eec1730fef08fcaa92d768bc2fcb203c9dc0a9
MD5 7d6aada9fddfd1f198b01a57df661fef
BLAKE2b-256 df8203325168236cf0b58435c606145a83e1305a65ccdf70729f5c21cff2825f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 59d37997333d54e4863dbdbc21083d656b372ef0ff6a3af2a33c1295d750aa60
MD5 1ee2e75eaf6c367aa5d3876ed3bf49eb
BLAKE2b-256 82d0fcd6541e6733f06e3671b160e3b50f0682383d693c62c4b7c341f5daeed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d2ad3e2442c0d2e86e965bcd3341c04449616a3052212fbc7e65055d9f6653a
MD5 6245a5bb18f0ac8d090c05a51c06421f
BLAKE2b-256 74e805548c1cbacbca1187ee5f8d7e8c6be20eb1392e48f976bde8fd612645b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 99b9204adea847279489dad823c855408f235f4c64498967d026cf5adf753b2a
MD5 742341ab1c21fd12a61ee24fb48e4850
BLAKE2b-256 6f038516ca1f14d445373845dcfd76af452ee01ffbeeec8fa42c65a06e6ff4a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 854d22f3f2a52aa77acd262595144d163e0e4148a2d421d0327dc7bda4523a42
MD5 fb9fa6b5a3314ca7b68901fa719a9613
BLAKE2b-256 895bd6cd87b521fafb4584893c1a4b493b443b40770739a43f9c84c6c33db653

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf523444a45f653b9992ca7198ddb07a33b0238a726c8889bbd14d49c83eaee0
MD5 ce91a5b5f64fd9bceca9c7e61a95b87e
BLAKE2b-256 764f0ef8aad759cc4cbdbd5f3d5cf75fad1910bfa730fc826693d39c9c6ac3e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e702559c8585a1026aba5d3cb99c89c2ed3d64e8f086c854d371b74e6c9abf84
MD5 6e37804b5fabc9643401de9b3fcb5c12
BLAKE2b-256 ac8518bc5150b5901941d622737d891677c887cb9060d292d729f4e3eadeaedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pygeohash-3.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a559defb1ecbd6cfd46751003f6e18e545f482bc404043a522721b86cf398a64
MD5 d20ae29fdca34d91c553461b9f6c3318
BLAKE2b-256 47575ab3d7d67bd134a3e78e757840ca4c81ad44f981674bb8a6760b2e848251

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-win32.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 073ac901c8f47b272e188d624b66f9062f746645ae043aa41314bd67391801a4
MD5 87e03a41df450fe53d021c22fc496da4
BLAKE2b-256 56c8bf9f3c866a54091aa7d12a0db4af9aa28042daa967552993b5bf64e63720

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 de12592c187be8c32a600b2b62135993a393f4ef00f751378a55d1d65b3ce877
MD5 8ccf999cb31061a4c7b7576a3f468bc4
BLAKE2b-256 ac7b5f6076eaa94e30091d99b92f5ff4aadf8223718cbd01007d05aa1d70b0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c1aadd6c4937b1918566e53ae061dba1a5c8719aaf74606167db0b18cbe7b21
MD5 cfcbf716f9451df090908a0159b12433
BLAKE2b-256 56908e0182f701ce97920d550d4814b3ee55b8d530ee463919a9113fecee162d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

File details

Details for the file pygeohash-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygeohash-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b17161eac0f327b003c2b095fdd4adc8ccdeac149f1adcfa499ed71714d3fc9b
MD5 de9ba96e74c58395f2181534446fa225
BLAKE2b-256 e2cf97e268349eebe59fc586eb4798dbc7811825fce9966f1e6a6a7c28ca4774

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygeohash-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on wdm0006/pygeohash

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

Release history Release notifications | RSS feed

3.5.1

49 files

This release

3.3.2 This release

55 files

3.3.1

43 files

3.3.0

49 files

3.2.2

49 files

3.2.1

41 files

3.2.0

41 files

3.1.3

37 files

3.1.2

37 files

3.1.1

37 files

3.0.1

37 files

3.0.0

1 file

2.1.0

2 files

2.0.3

2 files

2.0.2

2 files

1.2.0

1 file

1.1.0

1 file

1.0.1

1.0.0

1 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