pygeohash 3.0.1
pip install pygeohash
Released:
Python module for interacting with geohashes
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Will McGinnis
- Tags geohash, gis
- Requires: Python >=3.8
-
Provides-Extra:
viz
,dev
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Project description
PyGeoHash
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
We did a rewrite of the core logic into cpython in v3.0.0 to improve performance and remove the dependency on geohash.py. Here is the performance part:
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 |
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Will McGinnis
- Tags geohash, gis
- Requires: Python >=3.8
-
Provides-Extra:
viz
,dev
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.13+ x86-64
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.13+ x86-64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.9+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.9+ x86-64
File details
Details for the file pygeohash-3.0.1.tar.gz
.
File metadata
- Download URL: pygeohash-3.0.1.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca41a991d3a2fe4d6ca51d8ceea31581749bf3ceb4cb0d3d6bff3ed32f9e5cd4 |
|
MD5 | 6aff45bc24eb584397af23776e7480da |
|
BLAKE2b-256 | ca707528d30acaed453cb87d105578c6931cbb2ad3873aea8b4b5ecd7ae2eedb |
Provenance
The following attestation bundles were made for pygeohash-3.0.1.tar.gz
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1.tar.gz
- Subject digest:
ca41a991d3a2fe4d6ca51d8ceea31581749bf3ceb4cb0d3d6bff3ed32f9e5cd4
- Sigstore transparency entry: 181913252
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 28.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c87fad94bcaf262e54bd5f7137a1980018e8ba7f81ab0ef0ab7e4b3463bba5f |
|
MD5 | 0b0d31def875a39c9c76e1567bd96a44 |
|
BLAKE2b-256 | b954cbb9bce5637e0b864fd48193cc737ab4ca68b6df1f6bb807bf7b533256c0 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-win_amd64.whl
- Subject digest:
8c87fad94bcaf262e54bd5f7137a1980018e8ba7f81ab0ef0ab7e4b3463bba5f
- Sigstore transparency entry: 181913305
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d57a0449b6c667a7ae5ff0cec68b92a01e877f249757616f14103702212bde8f |
|
MD5 | 84c099d3edbb598ee60b0b288372972c |
|
BLAKE2b-256 | 4978b71d0eb7318272fac94c6d01ff9d393fbf35e19e7088802b58291fee948b |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-win32.whl
- Subject digest:
d57a0449b6c667a7ae5ff0cec68b92a01e877f249757616f14103702212bde8f
- Sigstore transparency entry: 181913392
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 36.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fe4d60a7a960ca71ba5e2b317df771522fd382e8c4a55f5a6206d7d5557e5e4 |
|
MD5 | 27314705f7cc875f0bc1b151d2bd16d5 |
|
BLAKE2b-256 | 8d5d8664fb17278a80117d6f1ebd8d1e7baed9568dab704a746694a25a623a6b |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
9fe4d60a7a960ca71ba5e2b317df771522fd382e8c4a55f5a6206d7d5557e5e4
- Sigstore transparency entry: 181913345
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 36.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8d9a14ea6cbd394fcfcd65fbf1b6cd2e5f6b5c47763c2c7602569a781afec54 |
|
MD5 | a8292f10a012abcc4969b8dae0a4ad70 |
|
BLAKE2b-256 | 8a43954d570aaa812d9d7b0dd05ff89882c54500da03afa63590bb5848e738db |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
b8d9a14ea6cbd394fcfcd65fbf1b6cd2e5f6b5c47763c2c7602569a781afec54
- Sigstore transparency entry: 181913314
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 330bf0032c2db77dc40a8968cc0be39928f0d62df7a423f753099e3108b0135b |
|
MD5 | 31512d4c776c5a54a908766bc068df93 |
|
BLAKE2b-256 | 9a3e1e7cda1814c215b61fff2c374d810b417b6d9ce40a7ab59ab09accf57b3f |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
- Subject digest:
330bf0032c2db77dc40a8968cc0be39928f0d62df7a423f753099e3108b0135b
- Sigstore transparency entry: 181913397
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 25.4 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f24a30b87dfb25a2faecd0ee961fa39e86bb91486f0630b1d14fe1b06c3cfbd0 |
|
MD5 | 6f0cb5fed13fe6e6a375f7e6163da893 |
|
BLAKE2b-256 | a331f0ef4b07fb0bae4cd0a5765f85e6f7ac9b1623dd68b2eedd474e8b621cca |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
- Subject digest:
f24a30b87dfb25a2faecd0ee961fa39e86bb91486f0630b1d14fe1b06c3cfbd0
- Sigstore transparency entry: 181913389
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 28.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f42e50f39a764b52a78173fd818569411394c663d282c47e3ffdd8bed0ca5137 |
|
MD5 | fc4ead592c4c462cfb4c1e501a3c4efa |
|
BLAKE2b-256 | 690671b8b39cc733975e28e1a21c51159f2b2909b186986373df09699ed40c4a |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-win_amd64.whl
- Subject digest:
f42e50f39a764b52a78173fd818569411394c663d282c47e3ffdd8bed0ca5137
- Sigstore transparency entry: 181913381
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9afb8d67d77b94b6f08730afb36018307d95075a8c1bbf71429b64d3925f3a1 |
|
MD5 | 88b1c2542ff7668a17190fdec05e2c46 |
|
BLAKE2b-256 | 53d49b43f3700a4bd686a97f4ddcf49ccd3f567175a4d26c4fcf63ca4e782801 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-win32.whl
- Subject digest:
d9afb8d67d77b94b6f08730afb36018307d95075a8c1bbf71429b64d3925f3a1
- Sigstore transparency entry: 181913277
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 36.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d270c57d61a19ca75428e912ca56c933443449e3948d439e4cefcc20f08f03b |
|
MD5 | 27c83f77e0aae292185809a76223eec8 |
|
BLAKE2b-256 | 71b5ee8060e05a891f464663d507fa95ad1a6c077ef291fcdcfa97e88e485f98 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
0d270c57d61a19ca75428e912ca56c933443449e3948d439e4cefcc20f08f03b
- Sigstore transparency entry: 181913282
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 36.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d02fe7cb7db3de44183e6d05779a464f8b3571814f688bfb40934760ee22807a |
|
MD5 | ec5519db91a7fe31e529476e7ba58243 |
|
BLAKE2b-256 | 390ccf284e5d1460fba107c374935b5169ef6521c855a13244585d7fc46b129d |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
d02fe7cb7db3de44183e6d05779a464f8b3571814f688bfb40934760ee22807a
- Sigstore transparency entry: 181913361
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1c44aa1d822a51fc1c3c503ea15fb80608a5b9194c85b5dbb89ff4f5dc8a564 |
|
MD5 | 2726ccbb2392d0d260b2e2f40e7041cd |
|
BLAKE2b-256 | 509eb5b010175c419695fa1cdfb619e07324eb32594da5d2dbacdfcb8f45b219 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
a1c44aa1d822a51fc1c3c503ea15fb80608a5b9194c85b5dbb89ff4f5dc8a564
- Sigstore transparency entry: 181913325
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 25.4 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad30b79edb3e8571b6d548109a8af9d701346b9ee347c39fb7d723bb7b532793 |
|
MD5 | 60646486ecc3251cb83ee9fd2c24b0cd |
|
BLAKE2b-256 | c5199761f777d35e89b78d18ca34dd9b65695460cfa7daef5a1f4f4bb16bbb7c |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
- Subject digest:
ad30b79edb3e8571b6d548109a8af9d701346b9ee347c39fb7d723bb7b532793
- Sigstore transparency entry: 181913310
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 28.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04036b6c4bad92340f6f77e1b7e1d64ba35ecd9e716bc438c3b9c554ed639184 |
|
MD5 | 519e5e1f7ca74991063930658937919e |
|
BLAKE2b-256 | 5e90dfd722a37000b78dc7483b4aeae8a38b396789674786929b579f90cb521f |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-win_amd64.whl
- Subject digest:
04036b6c4bad92340f6f77e1b7e1d64ba35ecd9e716bc438c3b9c554ed639184
- Sigstore transparency entry: 181913332
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25bbf8dd44570e349a68d6bb8446da10b2be3a61ef358ba4fec5834a45798294 |
|
MD5 | 025f4fef3b20a9883a9f527b3e240af2 |
|
BLAKE2b-256 | 97368ec8a482056080faad690c48973643dee9cb08d4a64ba2eb3a6243d63423 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-win32.whl
- Subject digest:
25bbf8dd44570e349a68d6bb8446da10b2be3a61ef358ba4fec5834a45798294
- Sigstore transparency entry: 181913379
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b02ec10e73d2f4d2e0a838c9451bd34dbc2826d6f753b9e9ddad565e65aca978 |
|
MD5 | 2802e9f7e8c4db4147b07971f0225abb |
|
BLAKE2b-256 | cec95a5b7671acbf9523fb744004725173706fa8d331a143d028d47abc9d7f69 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
b02ec10e73d2f4d2e0a838c9451bd34dbc2826d6f753b9e9ddad565e65aca978
- Sigstore transparency entry: 181913301
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 35.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 843a87622f874838ee5082de02048d75b7159a0ee8ba03c687f4fae499f11bc2 |
|
MD5 | c4fa93bab0e10b2fe201b330d1679a46 |
|
BLAKE2b-256 | 6f79c23deeb11f86f0ba15ed76e094a679bb614b7b01204bffee433f18c9903b |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
843a87622f874838ee5082de02048d75b7159a0ee8ba03c687f4fae499f11bc2
- Sigstore transparency entry: 181913334
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 962be7ab37033ff617d81672561842eebf00b15db07e748723a8e945a6b68d84 |
|
MD5 | 89f4a98304a001c238909354d05f7e09 |
|
BLAKE2b-256 | 80e782a7098a9ad89621984387c5a81f7a50fac2de7d3e68477cbdde5408daaf |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
962be7ab37033ff617d81672561842eebf00b15db07e748723a8e945a6b68d84
- Sigstore transparency entry: 181913370
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da466e44b40c2be7e21d57b1393b2ab2cb4bab0ef967ceeea615ab9653b00e58 |
|
MD5 | 6930c8f28e9d826d3056df85ac670988 |
|
BLAKE2b-256 | 6842973b3675f09ba3ef81ff2609f6464827651615eb1fc47c1f855ba26a6ec3 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
- Subject digest:
da466e44b40c2be7e21d57b1393b2ab2cb4bab0ef967ceeea615ab9653b00e58
- Sigstore transparency entry: 181913354
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 28.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 061b79858653c131f533c511a0e7eae65df9020574a5344c58018c1ad3086c9b |
|
MD5 | 4de2367d34efd24070de1ea78928f3ad |
|
BLAKE2b-256 | 6abd0baf4ffda485f4086f6ea176e93de65684d5d88c61a40a928b52615f59dc |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-win_amd64.whl
- Subject digest:
061b79858653c131f533c511a0e7eae65df9020574a5344c58018c1ad3086c9b
- Sigstore transparency entry: 181913261
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4847b746323c37e0e9819c6e83fecdf1d5010be48fa3bea931f2abc49dcfb3a3 |
|
MD5 | ab6b65f2f6a2644b8ebf1460dba87a48 |
|
BLAKE2b-256 | f38cbf9937a9f4380f08cf5ababe8ba5a0d41f733558bf663ac9db78b6917c71 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-win32.whl
- Subject digest:
4847b746323c37e0e9819c6e83fecdf1d5010be48fa3bea931f2abc49dcfb3a3
- Sigstore transparency entry: 181913266
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bd6dbb5b3b540b295ccb95d87a9080e55ead10944fc1961060d7cbd1083cd19 |
|
MD5 | d4b8594c133f2f857e1c0629515184ae |
|
BLAKE2b-256 | 90e549bbeb3e7dc4335326360410618bab081c9cef5ae0e8b17a68b19de7dd64 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
5bd6dbb5b3b540b295ccb95d87a9080e55ead10944fc1961060d7cbd1083cd19
- Sigstore transparency entry: 181913271
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 35.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8da126fbdb5f7d0c893d1fd6e762750792aaf66e4ec3e86aa8b96c52c640f864 |
|
MD5 | e0c32476f67cea7ab0a38e92491d7df9 |
|
BLAKE2b-256 | d2797dff826689c3cb8bfb87154f8f2201d25da76368e90d73c75a015490c016 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
8da126fbdb5f7d0c893d1fd6e762750792aaf66e4ec3e86aa8b96c52c640f864
- Sigstore transparency entry: 181913342
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5879e9d13deea2a15f3b850375858d98db165b713afb02b866ce339b356e168c |
|
MD5 | a6e92ba39258e6f008a50fef31255720 |
|
BLAKE2b-256 | 2b76a7babe0f3ce0911e260717146b0dd5040a6cec243105ad2025f0fe8ddb1b |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
5879e9d13deea2a15f3b850375858d98db165b713afb02b866ce339b356e168c
- Sigstore transparency entry: 181913303
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6dbdb26051373ac2f119beaf9f1ae00191d994f02df8a6ef7e1499c80aa9c85 |
|
MD5 | 5917430a19b1cc73979fff53b4338727 |
|
BLAKE2b-256 | d3b39f6ace557884c072bc2e9454a626d53f61b096b17a31620c645b091a4838 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
- Subject digest:
c6dbdb26051373ac2f119beaf9f1ae00191d994f02df8a6ef7e1499c80aa9c85
- Sigstore transparency entry: 181913384
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 28.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25f42f8cab762578296953b536f57093ae8565484a4955f02814d3a46ed32fcd |
|
MD5 | da4ac78df87369fde916437d7838d5af |
|
BLAKE2b-256 | a3f5d68be46c75c4406a7939f9831c992c1850a0105625f7876d326886eb2565 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-win_amd64.whl
- Subject digest:
25f42f8cab762578296953b536f57093ae8565484a4955f02814d3a46ed32fcd
- Sigstore transparency entry: 181913365
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | faf78b8b27af317a9204ea2304dd649bb454035510e2df9347fb4daccb6b07ac |
|
MD5 | 803d61657ade66de2a4e8c3e1bfc62fb |
|
BLAKE2b-256 | 59727821045f4d37259f21cdcfab75e9a27204e2c29198164efe015eacc559e3 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-win32.whl
- Subject digest:
faf78b8b27af317a9204ea2304dd649bb454035510e2df9347fb4daccb6b07ac
- Sigstore transparency entry: 181913401
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 854ebf37d4da075927452f40fed30d09a19ae4a19a97bf471b7e2d9780e75226 |
|
MD5 | d93ece0dc0ad1cbffca6cb3b7e176c85 |
|
BLAKE2b-256 | eea3686a2317c7956a61404caf4b8bbb11333aa26ae03f35616f13cb8a2bbff1 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
854ebf37d4da075927452f40fed30d09a19ae4a19a97bf471b7e2d9780e75226
- Sigstore transparency entry: 181913295
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 35.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84b9a47f5716d331616b73a5675bb941557a6f6e0b9d903a7efb245317df6a30 |
|
MD5 | d7a05cd85aeab5d61b4c875e72a29c64 |
|
BLAKE2b-256 | 5c87329bcd15f3e0c3030bd4d35ee92d838dc8c350f8bcb0e4c62678528e426e |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
84b9a47f5716d331616b73a5675bb941557a6f6e0b9d903a7efb245317df6a30
- Sigstore transparency entry: 181913358
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bae373106da2ac8e201dda9a4c7dffc487c44a1b755bb53625cddd18efed97b1 |
|
MD5 | b63b86810ec6e39bb45489a3f4c8c840 |
|
BLAKE2b-256 | ad47b3eb50634914135c978eb2c5c118befb26f888d0c113702b701022d1ae6c |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
bae373106da2ac8e201dda9a4c7dffc487c44a1b755bb53625cddd18efed97b1
- Sigstore transparency entry: 181913258
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74acde0eddd963d384cb21f03b13fd2996b7a0e5b5510d2ff373ee244f63a5a5 |
|
MD5 | 6cfe596212c5927d20d3550cc4847da6 |
|
BLAKE2b-256 | 57d87a97e0cced3123a0d4c98f74b0082137f7dccd81fadd30a4a6d3afefc6d2 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
- Subject digest:
74acde0eddd963d384cb21f03b13fd2996b7a0e5b5510d2ff373ee244f63a5a5
- Sigstore transparency entry: 181913328
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 28.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1907a1aa4c097d94f6ec9a82362191d0d87d9682b960be6f68d44ffa4e40896 |
|
MD5 | 1057afaca7a7532a7376f166701b08a9 |
|
BLAKE2b-256 | 5606579206128cb64a06760b00c761140f11f2cce80e93a7bc41e90c05c9a3eb |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-win_amd64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-win_amd64.whl
- Subject digest:
e1907a1aa4c097d94f6ec9a82362191d0d87d9682b960be6f68d44ffa4e40896
- Sigstore transparency entry: 181913287
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-win32.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-win32.whl
- Upload date:
- Size: 27.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc01f669a2d2954233ef5851dd8caa3529098eaec69e58744ccbe396d27b2aca |
|
MD5 | 06aba634479c95e0c8c1822b7c7b94a3 |
|
BLAKE2b-256 | ff5c2b1bac7107c3d99b1b5d14b2c1df612e1bf9acaa3dc6db0093314c286cc5 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-win32.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-win32.whl
- Subject digest:
bc01f669a2d2954233ef5851dd8caa3529098eaec69e58744ccbe396d27b2aca
- Sigstore transparency entry: 181913339
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 36.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1af8b4cc28b4303225195ea40d0c0a1687bb5d8c8f02fb280cbe82ebc9729f20 |
|
MD5 | 3ba837c1598403997f760d4cf51b102e |
|
BLAKE2b-256 | 232b23b23b3a70a3790f935257b24aeeca9cf9c8a8a84ee6a7b7dcc25cf94114 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
1af8b4cc28b4303225195ea40d0c0a1687bb5d8c8f02fb280cbe82ebc9729f20
- Sigstore transparency entry: 181913320
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 36.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7a4ce66ce685158da4ef84d665923d961161ab7dafc071867c127a0e018312d |
|
MD5 | 67b9b88834567a649ec51b432f252bc5 |
|
BLAKE2b-256 | d084cbca949aef2fe791e52c98afe1063344e8531ab28c405ac9dfe387cbb906 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
c7a4ce66ce685158da4ef84d665923d961161ab7dafc071867c127a0e018312d
- Sigstore transparency entry: 181913373
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e862e8658e8271cd5697608f6ba76a704be4e2cdde191dba035a349e1914a3 |
|
MD5 | 9e31b35376acae600850a09d7994b880 |
|
BLAKE2b-256 | a3edb0617ede3c2e6e35bc7bd0be49c5609576801942ea71a07608d007485c28 |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
- Subject digest:
f1e862e8658e8271cd5697608f6ba76a704be4e2cdde191dba035a349e1914a3
- Sigstore transparency entry: 181913290
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type:
File details
Details for the file pygeohash-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygeohash-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.4 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9829eab97b3638294d820a794bf4c31ac5686c9d2ceb7a7e93b89f8c67764ad4 |
|
MD5 | 6173d24476fb6ee0bc248ace511ea1a8 |
|
BLAKE2b-256 | 418b7960d1df267ab005add53f9b37c49e71bacbe709424ceff1e9d80525288f |
Provenance
The following attestation bundles were made for pygeohash-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
:
Publisher:
publish-pypi.yml
on wdm0006/pygeohash
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pygeohash-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
- Subject digest:
9829eab97b3638294d820a794bf4c31ac5686c9d2ceb7a7e93b89f8c67764ad4
- Sigstore transparency entry: 181913350
- Sigstore integration time:
- Permalink:
wdm0006/pygeohash@e019b88839da17f46435fcc3d64260cee52e920f
- Branch / Tag:
refs/tags/v3.0.1
- Owner: https://github.com/wdm0006
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
publish-pypi.yml@e019b88839da17f46435fcc3d64260cee52e920f
- Trigger Event:
push
- Statement type: