Skip to main content

No project description provided

Project description

Geo Trace is a Rust implementation of a Reverse Geocoder that aims to be:

  1. Offline
  2. Fast (optimizing for a single-lookup at a time)
  3. Memory efficient
  4. Customizable

And in that order.

Non-goals:

  • Real-time updates.
  • Fast initialization.

Installation

pip install geo-trace

Usage

import pathlib

from geo_trace import ReverseGeocoder


# The constructor loads the CSV into memory and optimizes it for fast lookups
rg = ReverseGeocoder(
    csv="path/to/geo-trace.csv",
    value_sep=",",
)

# Get the row from the CSV as a string
str_row: str = rg.get_nearest_as_string(37.7749, -122.4194)
print(str_row)

# Get the row from the CSV as a dictionary
dict_row: dict = rg.get_nearest_as_dict(37.7749, -122.4194)
print(dict_row)

# Loading the CSV is relatively slow, so it's better to save the optimized result:
path = pathlib.Path("path/to/geo-trace-compact.msgpack")
rg.save()
geocoder_2 = ReverseGeocoder.load(path)  # Much faster than the original constructor

Development

There is a shell.nix file that can be used to create a Nix shell with the required dependencies. It also has aliases for ease of use. The aliases are usually the gist of the command with a j prefix. For example, jinstall is an alias for make install, jtest is an alias for make test, jmeasure-memory is an alias for .venv/bin/python ./cli.py measure-memory, and so on.

Prepare the environment

This project is built using Python and Rust. You can run it in a Nix shell (nix-shell) or install Python and Rust on your system.

Then create a virtual environment and install the dependencies:

(not needed if you are using Nix)

python -m venv .venv
source .venv/bin/activate
make install

Note, if you choose to activate the virtual environment, you will not need to use the .venv/bin/python prefix for the commands below.

Run the tests

make test

Or just jtest if you are in the Nix shell.

Measure memory usage

time .venv/bin/python ./cli.py measure-memory --path test_data/full_data.csv
time .venv/bin/python ./cli.py compact --src test_data/full_data.csv --dst test_data/full_data.msgpack
time .venv/bin/python ./cli.py measure-memory --path test_data/full_data.msgpack

Or the j variant if you are in the Nix shell.

Running the above on a modest (and otherwise idle) desktop PC with an SSD yielded the following results:

# time .venv/bin/python ./cli.py measure-memory --path test_data/full_data.csv
Memory usage: 25.70 MB
real    1m37.054s
user    1m36.926s
sys     0m0.056s

# time .venv/bin/python ./cli.py compact --src test_data/full_data.csv --dst test_data/full_data.msgpack
real    1m39.136s
user    1m38.228s
sys     0m0.853s

# time .venv/bin/python ./cli.py measure-memory --path test_data/full_data.msgpack
Memory usage: 14.15 MB
real    0m1.497s
user    0m0.796s
sys     0m0.700s

The memory usage needed to load the compact version was half as much and it took about 1.54% of the time.

TODOs

  • In the README:
    • Explain what made the implementation have low-latency and low-memory usage and its trade-offs
  • Add a CI/CD pipeline
    • Build and test for Python 3.8-3.13
    • Build and test for Windows, Linux, and MacOS
    • Build and test for x86, ARM, and PowerPC
    • Publish to PyPI
  • Add API for:
    • Data optimization (like dropping columns)
    • Multi-lookup
    • Lightweight copy (put the CSV under an Arc + verify before and after)
    • Compress the table by moving cell values to an array and replace with an index

License

This project is licensed under the MIT license (https://choosealicense.com/licenses/mit/). See the LICENSE.txt file for more information.

Attribution

All geo-location data was obtained from the Geo Names database (https://www.geonames.org/). The Geo Names database is licensed under a Creative Commons Attribution 4.0 License (https://creativecommons.org/licenses/by/4.0/) at the time of writing.

Project details


Download files

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

Source Distribution

geo_trace-0.0.1.tar.gz (13.6 kB view details)

Uploaded Source

Built Distributions

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

geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (614.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (641.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (707.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (625.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (471.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (614.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (641.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (707.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (625.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (471.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (614.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (641.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (707.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (624.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp312-cp312-win_amd64.whl (276.1 kB view details)

Uploaded CPython 3.12Windows x86-64

geo_trace-0.0.1-cp312-cp312-win32.whl (268.4 kB view details)

Uploaded CPython 3.12Windows x86

geo_trace-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (613.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

geo_trace-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (640.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

geo_trace-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (706.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (624.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

geo_trace-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

geo_trace-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (469.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

geo_trace-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (396.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

geo_trace-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (402.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

geo_trace-0.0.1-cp311-cp311-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.11Windows x86-64

geo_trace-0.0.1-cp311-cp311-win32.whl (268.6 kB view details)

Uploaded CPython 3.11Windows x86

geo_trace-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (613.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

geo_trace-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (642.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

geo_trace-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (707.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (624.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

geo_trace-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

geo_trace-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (570.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (470.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

geo_trace-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (400.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

geo_trace-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

geo_trace-0.0.1-cp310-cp310-win_amd64.whl (275.3 kB view details)

Uploaded CPython 3.10Windows x86-64

geo_trace-0.0.1-cp310-cp310-win32.whl (268.4 kB view details)

Uploaded CPython 3.10Windows x86

geo_trace-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (613.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

geo_trace-0.0.1-cp310-cp310-musllinux_1_2_i686.whl (641.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

geo_trace-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (707.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (624.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

geo_trace-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

geo_trace-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (569.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (470.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

geo_trace-0.0.1-cp39-cp39-win_amd64.whl (275.4 kB view details)

Uploaded CPython 3.9Windows x86-64

geo_trace-0.0.1-cp39-cp39-win32.whl (268.5 kB view details)

Uploaded CPython 3.9Windows x86

geo_trace-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (613.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

geo_trace-0.0.1-cp39-cp39-musllinux_1_2_i686.whl (641.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

geo_trace-0.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (707.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (624.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

geo_trace-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

geo_trace-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (572.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (470.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

geo_trace-0.0.1-cp38-cp38-win_amd64.whl (275.4 kB view details)

Uploaded CPython 3.8Windows x86-64

geo_trace-0.0.1-cp38-cp38-win32.whl (268.5 kB view details)

Uploaded CPython 3.8Windows x86

geo_trace-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (614.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

geo_trace-0.0.1-cp38-cp38-musllinux_1_2_i686.whl (641.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

geo_trace-0.0.1-cp38-cp38-musllinux_1_2_armv7l.whl (707.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

geo_trace-0.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (624.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

geo_trace-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

geo_trace-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

geo_trace-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (571.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

geo_trace-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

geo_trace-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

geo_trace-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (469.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file geo_trace-0.0.1.tar.gz.

File metadata

  • Download URL: geo_trace-0.0.1.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1.tar.gz
Algorithm Hash digest
SHA256 fc0b5367f1616f0fa91ad391368ac59eba32bb9aacf47191e8efdc04972eb82c
MD5 e6853a9d569468b6000ed67f6807b51b
BLAKE2b-256 7eff541798f611a1e1a5025ed084d1466828ff01bfa7b73639f1e86c99c40f67

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6897811b8f230ab9676e5820b9a1e98c2aa98b08c5f61c4c380ed1b62f1a36d
MD5 7a469b32f4abaed91e42f9c465d40727
BLAKE2b-256 a54d065a2e8a69054f17daf095676f20314182299d0c4e7780fab82028fc8bd1

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 194427eddb50b2a3db14055594cae656f88c447568fe731ef07feed43fd95192
MD5 45799eb5937c750f3ac9948950e9eff0
BLAKE2b-256 7ccd0fac2bb039b227f99f117da1d40461974523beca7b2b53de85bcbbbeb1b8

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 117eec97a4a37e3683d951031207e70e3d0e0108efcf552acfc7b37ffb9af6a0
MD5 90617487199a38df470aef98b5e2b31f
BLAKE2b-256 62552384a75e56a340512b52684064b1acb53863a2b3b7ab6914e44b2ee1af69

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f05f63dc8be78b2c412d73d85cbeb3d32d01fe636705efa9bdb4dc1c8c60bdf4
MD5 c498860fc16ee84a8ae1ab1da6e3e307
BLAKE2b-256 f8e5a16a1b73f3eaaab9845109a5046cee83c2eee89f50285e91e832fe175731

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06d37c39a7c949395bcb217aebff774258c789cfd6b04d3b5401475eda46d8a8
MD5 3e6d40edd279c19205a3974c62db8b7d
BLAKE2b-256 5c904b1ebcbf91f1be9de20a01c50a196231278a8705b97c61cd919ba0c0344d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 156ff14dafbb08e66fc961062fb70e507b421f5bab352cba26ced10c6ff21afd
MD5 b3f4f65c73ec8c13a4337ec12eb1207c
BLAKE2b-256 3a4634db4fc7b3702ffeb375b578856b8c6bd590807f1529783278a91a25fbd0

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1810b699653efbdf866ef44931d9a5d68503c31930767194c848a68cdb1bed4
MD5 9c8253fe4487a34df2cad6bd1d336291
BLAKE2b-256 62710df273f4c06cbfbf8b33c75854c561ae67dddcc9da3b53544fa30ab4437c

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c65a0c93c5d76f399d65f552ee22f9e110e7db4600c53d2ec689857f5dab9843
MD5 7f4e43cf0b203a9f00144ed655c9e3e6
BLAKE2b-256 4e695a0a0a0a8ac0111511b7495f4efcc8c1dda9e70ff1ddc0231e37eba4a3a8

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1961b4c1225fe40b53c9a7e32a72ada41b2571c685f6b12db0c73cc50a068e8b
MD5 f272bef2276823730228c4de7857398b
BLAKE2b-256 6417179cf39a15a6fa11b0cd2f1a21569082139453b3d0102743c301235ca693

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8f8ea0e5cff372c831b0eda9105da65298c04eee08a3f91c150d485a8d42ff5
MD5 bdf4cb907ef310234d4573d3387132f8
BLAKE2b-256 c3a1dd46f8522a6dd778a6b269b153f6600af546027edbdb7bd44c42c23530c8

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c0a2fe2b37136ccd9b06e42107b40be42336ab6b027f18693ee94688c10913
MD5 9b42e91a587f442e5129a50b476fa927
BLAKE2b-256 a65f8beb0dc336675d7b31bb8c06554bd2be7b3737ec84dd6db9153b64ed8b87

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd1f3916780318c59e96d4bdb3a77bff8043d9ed0ed8e67b66b511b676d11055
MD5 72778796c5a2977fcd05c2a535f699b5
BLAKE2b-256 aa579bace1013fe2b67b7ff76888762b0b49c010ddd362a4367815c809e6f41a

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af854919afd19d90b7bfab8b2e4834dda863a378ad0cf4c3ef1bd5a502f65614
MD5 c847f5367934f741753d567d445c7b2f
BLAKE2b-256 503e26d65fdaf7258b053ee1cd867df6fd58a43362374cd99bd5da46c525174c

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60faef578379264c60ef1007e3a56715067a6ed36a15f9966bab1ce39236dee4
MD5 d39d41c455cb7e2b4f6aef49a8c478cf
BLAKE2b-256 eb6ca57b8d3781c7cb7cd5307fa0f87a8b432ffd7ee87a12421e43c71a5e6454

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f942b6ba8e962a45da031a55494be46e53aa064b86025da6242e4c6c2f544c45
MD5 a64139553e9969868a83c9ba7b718fde
BLAKE2b-256 13a74f34ea44a523f362c87a3d9bab50ed921fe63d4f4002a5db8f731582ee5e

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 626006dd09479d074af3fcca2143332a103eb5f176cf3ea82acd22529ac1db2a
MD5 5201d49dbbe1035e9de584894f83ce95
BLAKE2b-256 33cfc019c95b3077d43581ffeba10ed6522be2b2d2732feaa0fd26c274ba6499

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 870915d4dc738955e2da12d809eae16ee9adf16ca0395448b2701785a5ffe895
MD5 6503379aee875a1de712a3c9ccdf0509
BLAKE2b-256 70b14b5af8afed282883616d6d813ebb8bd3c18d3109237ac1ab841bac110b50

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85e7b232b1c06879ec9a06bda54cd92751ad1910219bd7d830c7a8e92c6f3487
MD5 7ded4c1000ad8acbf48f6d0d69b0c793
BLAKE2b-256 01592e150f89b651e8c403a49fb61847f1dd260a6c65f689e9ad5c2a4761f1c1

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e50571bf0d753de2294b7fca0fa6f93dfa8bcfba4223a01df23a4f1879cba81
MD5 7d64b966a378c835053996b4c1a43969
BLAKE2b-256 c49a73e9bfedf828ee061996a9363d5b3c07a087e5d9fd0a6e29a1a6bbcebee7

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02592b607ea3ce147aa7559e2d467db60efbf772c33658d7ac7f0ec45345d743
MD5 591ca1bd332d2e2b95fa75b91a7f6142
BLAKE2b-256 b677fe5d584adb0f40bb84d524c53f3d5b286b013e3759baf6b56f9682c172a0

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 065b10ca7ffed03c8944616da0993176d3bb723d5b9539b58328cd1df117c6c4
MD5 37c19324e2a29c73e0a7e3be7e2c93c8
BLAKE2b-256 95e0b3c9074bd33db4afe48e15186843a8da5145dca707ace1025250dc88b5c8

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fab2297cd4475a7c0d8450da2182281998084b3838d6b1ca3bf95dba352fc67
MD5 b0cdeda6bd4a9188f9a58924f4dcdccd
BLAKE2b-256 930ad887f0a86d468c974c567a006644ec76f68c36e3b2b6b8409be1957bb749

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 326d343d478bd244bb9451fb3d2757baebe49d000492642643fff864af6c553c
MD5 e2eec56fc767d4877b1a13ba819c2fdc
BLAKE2b-256 868e08c68232dba26d49a594f7d62c4d1fe46bdfcf8884b74bd53e31ebf853e5

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d471cd72425b40fd2a7b58d611b33d6bac5207f609384a1276b9cf8bac4c9de6
MD5 30488771837677cdb61a57f5b58ac96e
BLAKE2b-256 f135c84bb74878b41be6983facc95d3a084beb25ff4336f4c37d618fef418246

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32c5287b0f0c1d4d45c46e42b10c7a5e4a717fe0a993a13fbd61782551955f8a
MD5 a5e0fd88efaceb1d7eba4d9ab787abe3
BLAKE2b-256 6ec6b42e34b3247e75b56010b9853cf44ffd01b84f8222c5e8eea16746daf89f

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7156a84a31845e38337599fd0cae4907dce5c58f765ffb4cdc1dac9de9b456d
MD5 1325eb672b3505d029e9900d7fb08de6
BLAKE2b-256 a39059c544c54305cc4c7142efee9959baf8c8c4a17fb242f144c5aa284bba4a

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5901ddf39a9e5e50842903bfedd38ead92844b86a60307de38cb3e20fd16d954
MD5 1637ee287f67b99dd2a6c165bfea7d2a
BLAKE2b-256 56eeb2639c609ff0db66051b1bf1a38b3f3aa422a08003b78f838975520ebb26

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d366611261d0a57f8af5353b72b3fa6cb04ed547c32d0a6ef282f3a4848b1158
MD5 c44c8e9850c50c53beb3d6ef381e7c2d
BLAKE2b-256 0a7daf57516ce8a9edbf069a12cdb62ad84c0f159aafde311ea67bc5f5883e89

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1c33a48e6e4d417dd29437d618cbf10b81015a56808a317c4a92530b2900315
MD5 f246dbd139e1922c909bb22dfd4c60d0
BLAKE2b-256 f0c6178591ff212c13c140a21f35ad2ce7726270018bb81e443ad91b49ec560b

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 268.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2c87eeb07df3f69028f601f032edd901dee6477552a188aff20d0c1e7fc99314
MD5 89d29e4a9d8dc8bfac8f055c38630a3d
BLAKE2b-256 50f53ff1502426b721c47a67ce27d9529f0be0626a98926e4214f973700c6f38

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17531ac0809b24df1dae078ca2834766394d7075c36635d93c144be0193d7d6b
MD5 3f6979d442b6e049b2620aa56ff39395
BLAKE2b-256 0da97e3baac4439b67173a2b1beafccc296379f750a7a68d59d4bcf28996f3cb

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 578a7d2d3e6c16cda015eba046bc3722aab633db65456902214e083d8056ec02
MD5 97e4cab8cb5711f7dbcfd6bdb58bb950
BLAKE2b-256 9e354457546221f65deb3bc0a5f0107a08404094d18e2aa18d9d0a93b9d57079

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf7a63cddb0004c4f8cafd48ab30524dd125b2ac4777b9214be614e57244977c
MD5 2db33461d49105b3f0652b961f9b4181
BLAKE2b-256 85e5234ed7099f1aca4dc5c3b7fc6ee38c015218030a2c9c30238a074d530cb5

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e027fd57a9750108accfb3af5f2145133131311bf17097e71aa36187b8d7058
MD5 696f8239ccc4ad7173ff9c93fc5f4307
BLAKE2b-256 af326453e14b67520e184a3016aaf5a0e42bdfc1c11c5fcdea06e0c710bccb6d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9729d7da77dd08d78c0c4cb8143f7edd04bb1fb471f644402777b434425467df
MD5 1d20c8611e019f4ab362617bcfef260e
BLAKE2b-256 59d6b52268be0199c8616ce46696efa6f041064f0de4f0a3408993d9862bc2a9

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e0bc20be2d62071c6c6deff4b9d810a9f0a04cc169f6f605d88d9c41b2964d7
MD5 584885d940b2739021ce8e9934f7eaea
BLAKE2b-256 b936c9de3f97743aea04e3e4840a29ad764262995933b8870eca3acbbc972aa5

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 648c92b1e50c7d9745fe077d7b3aa20b4d5e27502bb348f43d403c0a56097a26
MD5 ccc2bdc32006357e2ed87aaff61bbcef
BLAKE2b-256 c8343161d10945daae18b91c37d46bcf91c7bc8f2707363c5473d46923f857e3

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 199dbdda9d7fbeba549e551b259e4a5c3c57a12a20de4d41a04acd06e60f6f6d
MD5 5bc1312b766244f55eb19fed3c0b414f
BLAKE2b-256 fdb71b42259fb40cb91fcae932b9eedfb33d416292b199727dc5258865e6f7a2

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b26feaf1720a8f180e70d70ca11fa83b3ca1b5aa71d8947db5c099a328bbf7f
MD5 8d5b9277e2d6147f50fbcfb01843ed0b
BLAKE2b-256 db2731f14deb6b688fc46eb33e3aa17d937a271107600526aae433ff86b6a90e

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 414cd8bf23caca3eab1b4d658caa2d5f602e34d5796b7d07dfd8dd1e9703af14
MD5 df2ae15d2cbe321bba8ccba5c85fc551
BLAKE2b-256 671defd4e068883e1ed14e45a9bab4dd7ccdcd6f2b84a8281ecdc9f2d17c7e2c

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68c805c100873e23681fb5d2d61308734b4700e1e76a2d03874ef3e4ec9c7f7c
MD5 880a49ae6e2241bf4e0fbed3ceeb2296
BLAKE2b-256 0ce230b59a2c70ffe717818f78af0e6b3d648e23fc5686648f4dc11619a7f141

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 222998488514e00dbfc22fd54508030d0649a94e99780b4fffd06085c6d7396e
MD5 2beafd3af1e142a8f97f759b85fa08de
BLAKE2b-256 547f75d8999b372799bf393d2ce93312ce3b7e35533a67815f274483db9129dd

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c71042f221443afd014d515f24383d881c1285414168a3d1af5857fdeeefebe8
MD5 39410d747f17391b0c9e4c00fcf5c35c
BLAKE2b-256 96ddd5fe79872048fc42620054a0f2abef8a5c3dbfb4b0f232f1da42784e64fc

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 268.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1fdf71cd96ed79212e78a1df8fd74ab2296e557b6e6dbd4950bde0e7d748c22d
MD5 e61fc40f1f772a449aaaf59afaea9cc4
BLAKE2b-256 dd7f315b84c9f2c957c293bb6849742f66b07113f85f9262d8db25bdaaa93abf

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d6ebb66215f3ca96a55eb772f518c367ff02bf1e4f6d630e53745a8d749da99
MD5 a9ef626b215a34e2e3c0e447cc4bcddc
BLAKE2b-256 2fc53a1b618d3a1da6eb13ab07e90b260e4cc6b459db2293ef8e897995cd0ef4

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e86df4ad93685524b08a6ac0cfa4b7f6b788118332448d9ab7adef7bcb039305
MD5 ad70d8a1b7dd2055c369f3438b59796d
BLAKE2b-256 9cd176c4072a0329492c74912d3795a4dfc9b41d6e2d663af844b7c26cc6c2e0

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dacd5ff4bb817454663d261f2cdc574a5411d43b33626d5d0dc57731b9be97b9
MD5 461b69abfbcaf4d19ce7e0937d30a29d
BLAKE2b-256 f0bbd3b0c3d252589bb56e4011aba517d67f14892d8400bcd39081ef14ab40f8

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c03d13c7eeccd0fdc06e724439d3c353a5f0e3a2cac33a7bef72beafa6f4ee84
MD5 b5ee6aec66aaa380fcb4c87609bc9354
BLAKE2b-256 298b0f5b33ad20366a6964c051e68271d2fd4049856115151d5c840ff56d822d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c960469f25f3e6281a93d89a879986740725026edeff3fb43da766a2bc25200e
MD5 83eefabdb7abdc3490411c6cb62efd0a
BLAKE2b-256 ba24bc09d8f103dcea9553535c7fe627f18dce27d0742396550a5872ce402328

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90e0ed10c00ea68287b09dc14c9efda19cb604e094547c5c30900cf8ea04ac9c
MD5 64199f5f443232cb7165b58c44aad8fd
BLAKE2b-256 c3cec6087ebcf9906716b3b8523d91a4ced76667fe0b9b4cf74fdd8d6357ed9a

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0de6e42f00f49cfb44309901bb492751ce960b7dcd6a30146fc4df625c7e17d
MD5 835b66e5f74a665d80fad8a7b23f7256
BLAKE2b-256 9a16c5517a3500a14a23ebc6fbbb36b21312d1e34fd52b995f420c97cf6d0f8f

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed252fbedd1a9566cfc314128c00aa3641352f0fa68833c5575a0d41c75055ce
MD5 802ba4a644c0bec79abf140fbad5c3d8
BLAKE2b-256 fdf62e4a64127bd8f6d9cb4d2d7004807c394ea2b5763e854eeec012a43ee52d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1977e9aa34a5a979bf24a405cc3b8193c25147490b7cf584dbde9a7ac1cf43a1
MD5 ff85a1411e629997599b6e8ed336b416
BLAKE2b-256 5f74f10ed33f8c96496e175a1c8536587e695c432a6d544b0ea58276a58560b7

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0913bf8c10a83a391a470808d83849c46a45384dcfbb6973cb71f1caae52cdb2
MD5 efc7b3e0d284972b576a275e625c111f
BLAKE2b-256 578d48964011fab7c9272fcf293783a682550dcf7fcbe9b57293dfb6a7a02460

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dd19def5edb5e5e5324476095b11531e75024e466a4c2a98426580b83855354
MD5 4955e05b65942e1b5967ea9fba751175
BLAKE2b-256 ee749e17aa2d3763a8db897940b7dbf25caa442f3832927fbf2e8dc7e03cb745

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d36b7599dd3527f6e8893f47394d5e6953705be0c0cd3c6316abb79010fec275
MD5 6417f165e7c3307e2c6dfa36d8ed1662
BLAKE2b-256 aa63d0758eba881ca4950e0de380191f15221f1890b392a776b04bf1205fdebf

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e11006cd338ebf67e4764df2120623af727535c168e872a2872ea5e038424886
MD5 0d06af8ca6822c74907250aeb5a6aae9
BLAKE2b-256 2f8cc6f6203505bbe1e450808ba2946f128cf75ca5a0297966241cff6329ec71

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 268.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ea667b6efebf9c07310cbe7fdf57a33a33d5f821d9f1fcb6497f512c1b9a6ebf
MD5 0962d3dcdc6b66142198ff88325ba0c9
BLAKE2b-256 b85f26e0b72e4cf7c7d388de5536eedbed6756686c7680ef652d81398da6ec43

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 846b6143a98816d2a3c3ed7f5dce11712ce87925ae2968d7fec85821d6d5d6e2
MD5 e4d55370c11feee2796c781de0b18c07
BLAKE2b-256 6b0ffd3cd4369eb750b65e88933afc36bf620c553bca26192ccbd40acfcfdb68

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46f572eb0873d3eec96e235899790c71ce7246fb0dd6414aa9dbfd7446f29e30
MD5 e47df1f278b16a9706d98e0211683725
BLAKE2b-256 352fdf5efea174e24b19407861d6014eb0509808c981ff1733421aff5b11b97e

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d17c1fb18b77dfc3805aa781375e30dd0a1c03ca748b25a7fdf8ae8ae9600b6
MD5 c62bc4dd2fa2b2dbdd1a4c1d355aae85
BLAKE2b-256 aff0aa430aabfc50c280ced249993fc7ca077339590cb3ae1708837477009de5

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2f955b9cbcb518b0247555d8a08d38e64eb9852f6ceba2da4d7f53180da53db
MD5 e8c2931f07cf9a46fbe05b741f7bede0
BLAKE2b-256 34766afd6860b4bcbe5a0ba0b6424066a22cd8793fc69ac3ac39832c577f5776

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1416ce6a7418b4a9338f141b5a4ed721799a58275db0533effd7d2ba2cbb923
MD5 1b7d86800e439362a62b2ec6e4f67335
BLAKE2b-256 3c4618944c6e0e39a11e54095caedd8c97c23521c31af05b686594499eee26f3

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b1f44500798f5c30dcbe7b057b959e4cbc6aae66b8b5b66317dec2b4db54e0f
MD5 4619f5e7dc3aa30ebfe68365f94d877f
BLAKE2b-256 36ba08f67cb610fe3b6857547587f18e6cfd67211510704ac9548650ebdf1469

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0eb9489d00f8c94b19a138fa72d0a571b5185f1d88d59334d979f2a9bf42c163
MD5 c82d864909ffa8fc84f2deb150857cb0
BLAKE2b-256 57b013c5631058ccb1040237c9bcc98e2fed01a7623c0265c09f39b6187d08b7

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a0eccfa249d1ef628e97ce78814f78cfb82592ea862e219f19cf57ab0f21851
MD5 87ceb642a6cc0d13971e124665496541
BLAKE2b-256 648f4a99997ff79a967868667b1d1599e0e25b50715f75953c3594bfedc60c59

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 183254fc666bf4c9b7020d8d2e3ef03c545f886a2984d5f50187b5e343a6643a
MD5 7d0c58b7a03b3dcb4f3ab65e0c1fa201
BLAKE2b-256 a4995b1f3f6403e2f2a4bc7de0e62156e50f6a9dbedace0b875d8f916fd7b907

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7c1157b4f81bfb34f94964375dbbb517f7f7c82531d4fc100d853590d5fd50a
MD5 03264f2942bc282dda17acce2cb90502
BLAKE2b-256 81e5685a73bee61b08a56142ca5ab4b111aeb976b60126c330865552d517d06d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39a3ff5802e341753ed81123125e0379cb97ac8b38fa747291f738b94121bac6
MD5 9ad1a541335fddfd9502f31abc6030a4
BLAKE2b-256 63df0c5f235f801e2ee810b5bcd3fd8bcd6cb56efd43e0e0ea0e4c505458d062

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 268.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 360da61aabec442e3c8ccc09951f63d132801a09d6b659eae50c2535fa37677b
MD5 b84c32264754fb4152c567259a169ae4
BLAKE2b-256 8fc8edfe398d327aee747598deb16d5ca8e4250578bd35687451a89cd9d259c4

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f63d7c0b1f97643b9936c4d499e74a23a816772cd79abc8d2823baafdad3c026
MD5 9d5ad5b5edd320a6f6047073d88caf7f
BLAKE2b-256 1e821891839492d51b9f89835e2412ea04c09384ae8888d3174d322bcb0c6baa

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 274f6a54f26dbffafbee291da345f9539c5c41f9d5b0b86955fdeec4ce1a299b
MD5 35a24daab40daeb7df8b6fb895658933
BLAKE2b-256 2e25e75dbbfa5a54f936538f113aa69837eedfed092a6e693c43b0e31e3a5a35

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0cc82162fbf8bc15e44f1494ea8892ec2fe7540955a598c642719a5cd5119983
MD5 dfbbe279cf1cc3e9cfb0592acb108ee7
BLAKE2b-256 4b831255d188597b9b9b3010d911b4bc6080370dbc60d3cac32e70cc0a74c1d0

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d40ebbbd906b93a2095ebf7e75f8aa79d25dd14ed560046ae79911ebe9ebe69f
MD5 0b6f53ff01410346bdd07ebd781858ad
BLAKE2b-256 579df33a21ccfc78ec058e95d45ae0fc91f55c5035a39328ba8da18332f1931c

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6c885d11d177de7ae4598b0323e1f58e3a2c37cca3cb2a72f4db8ecc222e08
MD5 2260d522922631a9e222d3666b6d3a22
BLAKE2b-256 e880e0139d8cd1b70b8eed9d37a491f3306207c54a1ec2ca2ebb725b6009feef

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15ac0fbcdadb8bf0357b8cc342b46b736e4da124a269102dd59185c1126d8b9d
MD5 21d8594ee39f18a84823559bae6c3162
BLAKE2b-256 f5504faf325cb816f05f4e32129b2b8e51cc85d02417d7a2817ab5bb6176f805

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80c3fd02f2fa4b4f750666b8baf5f26ae8a42076a7fa5b0927aa268ac01518da
MD5 4e9a35945c1c0f53102c42e10597808e
BLAKE2b-256 9a9acae548f3625e7da25ec2e99b59a9f763f6ce361025953c5df64a0c08682d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 848b9c32e12aeec15aef246327fe52e1039a524924aae55a2ac3dc5befedf5b2
MD5 0e5b8488980e13b88d4792602a12e967
BLAKE2b-256 0b57b5e3c2ba886af21c23a01715773e12fb62ef80f085b1bf1aadaa78df826a

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c7a42eb2a5b9fd4a91cb47e719e18ff7cb72cbc8ff57267cd8eaa2c36bf3d2b
MD5 7470e502727ea3c20e6b4385a5a23f62
BLAKE2b-256 80e81cb845e3903e1a1ae3f784b86fc981d792e2600f5f2443622b5c2f90df7f

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 714815b51e3d041af83e3ccc334af6f9d51f82949bad49c6757c999dd1ee6239
MD5 0ac0ad1b6c772e810d07000cd95aeae8
BLAKE2b-256 e4d5389893949496ec7790abf7119b5236a656104741627b87d90d16851a821a

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4f3992e070d89db95b6c7c732ae1916f10d1cb8f981713eec4129f7cf77aa8d6
MD5 39b47f56e6bec22217a0138985a8c6fd
BLAKE2b-256 aa9667ba5df8e5d4bbd02395969cbf526edf661eacd33c323811dda28fa81195

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: geo_trace-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 268.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 af54a77ae1d21512d719f5730e0f80931985b5bb9f359bec182798b3dfe7175e
MD5 a6c419fe749af2f4280ebf09194cdcb0
BLAKE2b-256 93e7b492fd9f598ae5001ffd3752bb509e508a95e5299eaf1e301be112592f01

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ad4bff7d88a3156dfab26af330ab5ad2e16fff03f86eb1b5f8016b83b6d4bff
MD5 4ed8de1266698d501b72e9f332012460
BLAKE2b-256 cb749a51701a4d854303bd51b5c469dc0c7a59e04d7fe141ca9af37af50ed6ac

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fc6b8940dc1a43c0e06afc17edcf091762d0c1f9548e66125c979fa214d3d69
MD5 54613a11384da3725c32f7f899117754
BLAKE2b-256 284f87187e50ff3ecb8a10c25f39d794e06020725df1716c4e82afcbeb1a338f

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e11006d7c8ac58d0de3ca83cdd23798f9b7c641f2b71e2311c6173a3ed9fc99
MD5 ac74e3acd3bdeac294cf7c90cc01c8d0
BLAKE2b-256 a24f698df52ac7287bf864e20830147d7310b872d24b575b3b4bb79a7fcaf4c3

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f5e752f6d594b58fcc28dd4002e71c112414c27c26a0d8780fb36656fadbee0
MD5 91ba99a6bc3e6ea66a459056a534942f
BLAKE2b-256 0c134d2ff18971db4d08c4f3dfcde0cafa338ee4585e6ed763af09c39b2254cf

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 475fbb2c36d25f84248db42be8b1d8289e1f087d3c2301adf495c205a82fe41b
MD5 a7f4be2a519a374828700f84cf9bb099
BLAKE2b-256 34229b2e03d6928339386758f3d155bd87d24414120b0b41a183262f4c9acc5d

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 713a1260d29079fe4805e8bb8b7e98dee189de42565350e810fc64fbc5cb5183
MD5 87f0a3d7dfea279bcd8f86b7be6bd4a8
BLAKE2b-256 a79d875a76b71f9d779cf0b608c295ba822c6c95f01a06a85684717ceeff5c04

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 550d33ce2b7e22ef0acb8d20577b7d04ef48e3d5740fb45747261a9e7c67c0ea
MD5 bc0dab86e864c2cbb4410e35e5b5f882
BLAKE2b-256 bef9cc76a22b45db49f5dfd98712a73ea530e24084b97dc6c6141b527e14229f

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b02ec2ce0857da3a9e85ada0b9d70e4ffa282c01007c18904d6e37dce95e258e
MD5 a706fde2eead5521f39e1854b218973b
BLAKE2b-256 9ffb171639690ee1056432749cc55a12b4d4d0804b882dd8db101dbd7d5356fc

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9754dd0c614365d17c9963f23babdc76cb846161791fd73d797ad2f08c2000a9
MD5 b93cb5b3e320d25f7eb99417dba61f6d
BLAKE2b-256 7242bef1e1d068aa341abf9320c841e3a709f99bdd8325b45326e1ad846be0ca

See more details on using hashes here.

File details

Details for the file geo_trace-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for geo_trace-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f82e8537e3e4e19ffd97497511f6296c64f682c5cd9bbb8a8cd4a92dda3ed60
MD5 9dbaa3bbc0da27f66eab916559254613
BLAKE2b-256 83ab605ef6173f6a048c56f80695dd5cb3c01cf9ea29cf9ffe4e04503de89f9e

See more details on using hashes here.

Supported by

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