Skip to main content

simple tool to summarize the footprint of a python package

Project description

libfoot

PyPI Python Versions Tests Lint License

a tool for analyzing the footprint of a Python package, written in Rust with python bindings via pyo3

installation

Add libfoot to your project:

uv add libfoot

usage

if you have uv installed, you don't need a static installation of libfoot:

uvx libfoot analyze pydantic -v 2.11.1

CLI

libfoot provides a command-line interface for easy access to its functionality:

# analyze a package
libfoot analyze requests

# specify a version
libfoot analyze requests -v 2.31.0 

# get package metadata
libfoot metadata requests

# output in JSON format
libfoot analyze requests --json

python interface

from libfoot import analyze_package, get_pypi_metadata

# analyze a package
result = analyze_package("requests", "2.31.0")
print(f"Total size: {result['total_size']} bytes")
print(f"File count: {result['file_count']}")

# get package metadata
metadata = get_pypi_metadata("requests", "2.31.0")
print(f"Summary: {metadata['summary']}")

development

To build from source:

git clone https://github.com/zzstoatzz/libfoot
cd libfoot
uv sync

I use just as a command runner:

# build the project
just build

# run tests (builds beforehand automatically)
just test

# typecheck the project
just typecheck

# run the demo
just demo

license

MIT License

feedback

If you have any feedback, please open an issue or create a discussion.

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

libfoot-0.0.1.tar.gz (52.2 kB view details)

Uploaded Source

Built Distributions

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

libfoot-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

libfoot-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

libfoot-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

libfoot-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

libfoot-0.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

libfoot-0.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

libfoot-0.0.1-cp313-cp313t-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

libfoot-0.0.1-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

libfoot-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

libfoot-0.0.1-cp313-cp313-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

libfoot-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libfoot-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

libfoot-0.0.1-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

libfoot-0.0.1-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

libfoot-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

libfoot-0.0.1-cp312-cp312-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

libfoot-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libfoot-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

libfoot-0.0.1-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

libfoot-0.0.1-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

libfoot-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

libfoot-0.0.1-cp311-cp311-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

libfoot-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libfoot-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

libfoot-0.0.1-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

libfoot-0.0.1-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

libfoot-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

libfoot-0.0.1-cp310-cp310-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

libfoot-0.0.1-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

libfoot-0.0.1-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

libfoot-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

libfoot-0.0.1-cp39-cp39-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

libfoot-0.0.1-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

libfoot-0.0.1-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

libfoot-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

libfoot-0.0.1-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

libfoot-0.0.1-cp38-cp38-manylinux_2_28_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

libfoot-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

libfoot-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

libfoot-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

libfoot-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

libfoot-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

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

File metadata

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

File hashes

Hashes for libfoot-0.0.1.tar.gz
Algorithm Hash digest
SHA256 39c1e6e3a0f43df61a346024553bb70528a4ba11df641966eb8fce8cbc6e1f19
MD5 20516c49fa6bc3675b6a8747ceb636cc
BLAKE2b-256 e284984924f2f5f22d16ab7b3a3b042a853f043d1855afb5661b91b1ff0b544a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2ca1228bf595428276b25d683f54e449af4f308920df6d2f5f8d07c38e8c24d
MD5 18e48a82d3afd360c7d00b390574312d
BLAKE2b-256 47bbf8a1f89dbecec3d7be935e9111bd452201ddc8682cc5e4ad1aad554d0707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdc6d4e0ee3874b6ba7166f3d1ee9130f8b94795822634a7966e9c0c21389b3a
MD5 4bfa43faaddad2d126d0e9f98ef6f7d3
BLAKE2b-256 4c0c3196b3343a846c9d534136f99113d7c1d002213ba7d68d33c9589d334195

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5640a60a7a0fb5e7dac6e3a824547cc6e9a4757b802f649862008b36794a08f3
MD5 5892b90f2e7c5263c568331c3b55645f
BLAKE2b-256 e3f236793b9a9ea05a225a3471e84a05092eee5c8b45873ede4f95c55b28b576

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f52c602309a91f9ea3c034f60204db5d8da454be9988e7d366186351d75b1fe
MD5 646900076d2cc232806b5b2845f1c7db
BLAKE2b-256 7ae1460061cc30a1376551dc465ee7d57524b8b2dda379d4ff044356aade7288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f70675b183a4e792974f652d5053447298a73cd2b9c1658b547df7489702b37
MD5 321c1d5c51f35f221ffe596da49f8d52
BLAKE2b-256 df0e7eb62cc40cb0e06e6a6cb7763896f572b0d6ffebdd13602ffcedc1c608b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f71e4c4dbe05a5d0c3d432968e5fb78651622dbc1a70816b0e3c9b88df03c9c
MD5 365c3a1fbac8a6a981137a4e7c4716e5
BLAKE2b-256 a8284a51816caa97cdc2af5f5f17675972378cc1816ca1f203593d89dd5a7d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bf859ba93b27c97322852eeaba505210a49e297df5db3bccdbdd4a4d161ed1d
MD5 a3b0ea2293cb1689887f82b9349b928b
BLAKE2b-256 aa71fca5333ed0ff7ccd3d17be2f98325bb0e82a47ee40a3814c97838a2b4d00

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e764081800224277c3ded05c984c57e8c25fe4621d14f31a048e703c726f3f20
MD5 e445fbcb03452b59f7ce99625c9b6798
BLAKE2b-256 e136f426f6500d6446183ddbdd9166ea724b8290b525e4ec97ae4c9a775d2516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72f5903b455cbb0f14b29ed088950269e590f75ee9897744a3ebbf5945a5e712
MD5 1536fbca195a28352710604b8763d6ca
BLAKE2b-256 9c184be41e5d5a4dda6a13d211d48ffefabc853f2487904252a5ef3617bcf44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23dd993d72e2ce32ff86631eba3d99cc52627e3a45cf6fef6ca4be15d2074d55
MD5 6b902faf966a92290b032b1c01cb67e9
BLAKE2b-256 271edebac7f2b18bdfe1784a0396b40e2184a67832042b99e79f9315ce97866d

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 57a175b211ea480975b536b64e02148ea92961786d56b68932f544f82ca90ae6
MD5 419ca616c86b1f3def6e151b1c307fca
BLAKE2b-256 3a9fce96b1312ee1312942c3dc5b02cac9041d7dd02571dc37ddc4ed9bd116b8

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec27a369f613eae004332826ad82ccd32ff234b7995fd74f10c0a6482d6d3ccb
MD5 34f3b547d1f71c47a176e77fdd8848f6
BLAKE2b-256 8f71aa75cfa2af53fba46b17c41d625f5ee21ee95d5307ccf4464b1c78c061b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f60d948b7229f23131f8b95fa54728b64f882b7f6cd5170547208818b07372e
MD5 7aa7a35c742ff4de05f116323c758bff
BLAKE2b-256 1312edb8a35468129b4bd6908d8d0e9ebd87977d7cae79454ac439055402a9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c089c88e3b8286177149578ef102464dccdcb7ff65a507c1a1596020129418f
MD5 4fe29a9cdad749f954e97c010fd21e23
BLAKE2b-256 83c7b0c61500d24be59e37bb0eaadb005d928accacae341ff4ab0300b0670536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 716eccee6d440347d1a71610415944780421ca2fc830cced8a17a6f5bc465ce5
MD5 be4d75b8e360453354c83364d81f7c24
BLAKE2b-256 7e8a22f021f60369b82f25130743df67387e98685601a091dae161ed3939dd3c

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82da8c70cd7882943c699449071e1472a6eb742d8042649deae2645aa713e907
MD5 0c6282b6933880ccd633075bcaf6e85a
BLAKE2b-256 adf8176f87f606ed28c5ab5282df4aa87818d6ade8dcb03eceddf1620d4f395d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 216153dc54216a7d79b59919420bd58b9b18645a427dd413b6e11bf56ce87406
MD5 300f8ead034e4fdbbd9a23cac1f89743
BLAKE2b-256 9bfbe9f189ba4f6e5f03e270ff6792101d2bb3f81604b00b07db5ce9a8c8358f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5b7b72152d93142afe21953ac2f40721b761b911b2b40845cdcf1f3284110f3
MD5 698067ed9b6e547bd39946d1182067dc
BLAKE2b-256 9d529eb5c3548ebdf24ff8bccc6f2320eb6c48a20f2263a1387f45e797ba2cf7

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1743252565626c3c31363c12c952805eea01785b7344197481de7e1f04780502
MD5 d4620db405a89f0b8a6c89fc872b165c
BLAKE2b-256 24df390eb7e8befe4a304ccec1c733034ae6ef94cd4a22fa3bbab51c34d25980

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7267a81d073882e78e78bd32401ae921c35d15eb8a3e62eef17af96d11c26cbf
MD5 9a81ec6ddb4f4da500892c3f4ad73751
BLAKE2b-256 4b4fd746bc75502be64e69259bd08eac9afd4a174e9e81cd07d38917bc811f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0d34506513ab0db235cf1b15b49f2815e007ef853fcebf0769a7d853adc1651
MD5 ae7e54d998e6971bb2dc2765f70169e5
BLAKE2b-256 08cade3a39292f5aaf1f3c573b0314dd0e8d15b3c690448ce7429f4ec4c4ac47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fa19b256c7beb9c3f087c1baaa08f4d5db3b0e91b12b0a2415e1e762f86a05c
MD5 b1f7ed832c610c47b78eb5b020666146
BLAKE2b-256 bf9caa800106b7cfe93ab4d4217434b349b711f3bf83a0c0eb9c24d4c9f1d883

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 252c37c54ec90f8b20f5caedebf94c42f5d314219b4a96ac80c715f76d5b93b0
MD5 76fdd519e5dbd14185d8640e9b899afe
BLAKE2b-256 ef965153b524a49e40c82059da291fd420f4cde3eca77cf1935f7c31494bee54

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d21169f92d663c6bdf6414da9b1cbd2a3b9f60590d728eb5ee72b37ffd0f052
MD5 f9c6675200f5ae30fbcccb56f7857e9f
BLAKE2b-256 191c9170d82c794350ab0e7f805d74694330ff0668f463e49f25c333fc5cd9e7

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f55107fceef64d15b1701ee976d4b8e94845c313305c0ca533786828bd897207
MD5 108d9421363bc1f39a81aab8a7656a36
BLAKE2b-256 71c15cff5ef23af15fd76bf601bc667d33de96775c8dbd843d4847ee6839f676

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f32de37fa2e1d833649782a56e7da0f6e7cbef588202870e9f5099fa48219573
MD5 cf36de26294486d8e3b91bfe6d979002
BLAKE2b-256 1f5492106bacb814518ed0ca7c99fdfc56e9f6a66b1680acf150503945bec1e2

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f3d2250dc53507ad157948ac667dbd6bfa67c83a1da926e2011ff310d2faba8
MD5 b5633d3f9a8c7801f8f54b559cb3322c
BLAKE2b-256 1be617c7471f60a4b43923fcbd2c2f8d74bbc958afc5a9774f6d9b47ec6b4b0d

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c52cde12c3dc871cb94a0e34f97b699f2b441e73626ccaec647a3a769b8d98b1
MD5 9d4a8e798c07d09f8b70060e04740987
BLAKE2b-256 7c209d88db4e2fbade8d57c63245b3bcc1deafd18cd8b599b7fff592a2388327

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: libfoot-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef33339fc7ab1843ebacd7d18be3512e33cc6a437543936f1556c81c63f23aed
MD5 354c5eeefe33e156180ce5db498e12fe
BLAKE2b-256 90aa26d96b726ee114cf77c54a3d9cd790e70d073896f160816bc2b018f2d325

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: libfoot-0.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a11a7e23babb287f2cf01fbc5b71a1d1421dd0543a19fac1e22c73d473adcaa8
MD5 bc9ef07c6e9cbf39ce893f9ae9f50498
BLAKE2b-256 1ccbd3368883038834121856aa933b13a570f283b40195b3d5119dd8aefd063d

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c94d8e3407ca9f65d6616743b60b8e1b0460c94bc2c2899fae501f862949aa1c
MD5 74da54266540e5aee31371e7782a8cc9
BLAKE2b-256 bf66d49beecd9ea0d52f78e22545987dbfa638f864aefbf4f9080ff891b5f8a4

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff5fbc072a77ec107e073e79abbd8f9db62428cd6b92f290b76c1ec1ebfe2d8b
MD5 271f98588f0af88b2ebeb71788079924
BLAKE2b-256 e61ac4df76e60effcce289e4e8c60fd2d35c3c12a4780102b4dcdf2f51490c93

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d55bce0cb4e43241c080b9a558b19b23f233fecbb4b612178feb8b85adc6a588
MD5 13d935477baf2fe32bbccfc8b0fddca3
BLAKE2b-256 75eb4e2aa3ef1826ab304d5cc4db0dfa80190296c267b5ff9245429956f2b002

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c87a1c6c6ad76a60dfd4c66c9e4e2bab4f1a5bf44efc4e96a7f13f64fd4238ea
MD5 9f47cf9782045afa1a9d8f6b6166483b
BLAKE2b-256 b3c7a8d1d05c8036edba0d47dcec1589cd233774f088bb4e7f40170a23a6273c

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 328e798222f587c700c0aa585abcbea15f52bd99aafa07d73caee6943f32caf0
MD5 0ec05bd748639ee854ad25e62381f0ca
BLAKE2b-256 ee6f6c57b927c0097b877262852437551583e9c8aec6389b56f836bf8b3aff94

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27690b51e7eed55b212d89b96a7eb08921f75eb101862dc6dd826f569630a1f0
MD5 3265ba746ce60c5f271b810930b594f8
BLAKE2b-256 9e6e66edf47a5172af3b90cc41c483ddb681e22a2260324c3f1b597fbf870705

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94442898688b2650f8f77198c40cb87466bad57e01081aa9d6bcc798ab80390b
MD5 fdbae719322c8729a0f17f0832bafe25
BLAKE2b-256 135a1f14066a81016a4125bad73b64ae104c87cd18d096d8cb786ac2fa064a45

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45ac2f19b6a24e37c28e0f34882c0933c71e3db48c280257e36afddfe335a07d
MD5 3105c3bfa27d7851f0a4650e9f0a35ca
BLAKE2b-256 5c6302e2a160bb07ccbfc5d19d210c4ee19ba589cd3cd7517bcc51fd1ca158dd

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbb9bf889798369e5f2285baaad0f5c828dfcbd17b74aef8db988bdc28d508f4
MD5 b25a01ab35c6c82bf547fadf4538ed5e
BLAKE2b-256 9a50578823be47e7132604cd7d389aa3fcb3e1cf5b384b2a6c15c16bfe9b32d7

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a310a0404669f176ec2d662933e5d3d4ca8475a77e961e7399cc412d19600f0d
MD5 dcdfea312ad0f932e7f1055dd8a2594f
BLAKE2b-256 51ad70cc8bedff97c1c0957906f46881093bde8b3a7cb61ecceba72ccdd1bacd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 82ae7478e2649daa7175b0c0712e854fed5d52b2fecc91216ad868d164dfd7b3
MD5 f2644bebea557f96096dea852ef51f45
BLAKE2b-256 37fc599f069765bb21e01bf8061cb6712683d5c4f05b66a5140d69c309bdbdaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5394b02f27da1812474a2fc35e0c8ee8832af86f217d2ce2c756e84cd42b2a21
MD5 c1126869fb3c14a629c85c4e6b93af80
BLAKE2b-256 eef2c767b57cc9b4859084df4797487e217aec3a94ab2c28a12957ece816a99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29cb3dcbba9c67f030691c1bf952f0f42f1ab255cb9b46ee392c88e06a361b79
MD5 cfba01be678daa55a4f0e0aa578cdb60
BLAKE2b-256 0819fc72e3c41492b1a9518db70e3f81ce81fd0c07f7cc24ab100dfa4af95694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 556db0e5e9ce53d9d711dd8a350fe79d2df3715162c435782b6f2019e84ce667
MD5 ed9ba07f1dedf197a56b964589a16252
BLAKE2b-256 4c81a14a14e004e2e9b9b44d889ea7126070dad6733ccd50b8bba0f518b0e472

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cc2fb873a606f3e9f918cbe0de82579a311e00748c56243c79fadd07ed7bac11
MD5 19e80051b441ad2163f294ad8a6c8078
BLAKE2b-256 009afcb60eb730710a0fe59e3a8cfe8ff47768dfbec49e334cb07a15ac1fcd8a

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27552f08eec5220fd828ca21bf2dde4827cf026998ac21529e4d550047e2d1e3
MD5 8fce631b5fea25555a64b37b177877c1
BLAKE2b-256 3710b5c8ed90e384c722ec284d7acd7515d71e1bb7487087d3e5eafc0d44c699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c855b3b4f1aec3c31e6441201561d7706e08b5b4798ec3f46a87973cf2748b4b
MD5 e2b1dc65affacadae516ecd8b38d750b
BLAKE2b-256 93e9ab75abacec4c94a5cd880b98c1241d6c93f5a169485ed27f0b037941b24f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17a5bad9f6698862087465da2dc4fcf4f5afd5e0e30acf99b923edb7d055f75c
MD5 cbc9786a6f0d637815c1c083084bcbb6
BLAKE2b-256 faf004f0b1a0df0cf5ae098356fd750823f287cd9664723735920763ce62f3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cee82f2b50f0dd4e6709a337b3ab838de1efeb2763434beb05ed69489b586b5
MD5 0effbec395457bd57f075ad5d8ea1388
BLAKE2b-256 8773c76a135108a597dbfef2e35c879affb6ca0c08741c57382ff587374485be

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b22165f48365937a071c4865d5492daf1c73c2a79219ef27f0d8c3644ec56d54
MD5 fb508d6f2492a8ca3c34003a45de1484
BLAKE2b-256 98c36a4b696fed9d482af350e0a40fa1e65b263b17c37062b6cd9a863f4c21b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdcef2322ee800e6fe8963814c9328a6da534ca49dc2409c31cbaa55d3287b7b
MD5 c3e1239598721586cb3941dc868474d8
BLAKE2b-256 a6aecd8b8bfc152a53519a6862ed0909f5922e6bafc804dd0710bb4c907b5264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 939df05fe9401a104501b72b7e16650495b9dd1ff7b0f786227c5714e419e7bf
MD5 973da8b457ef1edc7b9c65ac5903def7
BLAKE2b-256 72e0c561f0b1ef3e0b441888824f708c91dcfa3aae1fca2fadb7f1622f754960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a16b563b622a8a3da3c7a6ac36fd25f0fdda1132c2c1971b6a0b82a4f060c57f
MD5 9f960c172dd735e1c880314bf514ad6d
BLAKE2b-256 1273ed5167e16fdf04396657256a3c7cb76561d6f5e19e63ad68ec8db6ea9fcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b8e0510ac06f2ef368447d6fb00e55048125d4f933801ce916a8b24d5c09918b
MD5 b1e9dced67114bf1537bfa54669c52ca
BLAKE2b-256 f5e3260de677e27779713ef72d293f9fcb1853c95b15f9748354af4fec361aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 385bcd1b54a9d12a9e366b7282f54f249a0e887a10104c649a580007761d9f7c
MD5 fa6a55c7e616993be1f31c02459d91ca
BLAKE2b-256 16de7419c0ec86396c83737b41a13cc6614087ecdb5dc5df2b9d25bd2ccd7c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcea1e98cdcd043fe6d9a56915cab511412aa5ed148cf7c9566b13e6ee6928d2
MD5 8177a79d9586e438615419e5797210e2
BLAKE2b-256 5a088cfb9d0aa8fb618a41a33ac7ce9b5e1604d5dae43a4825a93f0b68590a22

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9cbdf8b3f5ee97e7954b82fd3564f463b0518c718fedf94c2b4be1445f5dcba6
MD5 c19e6af38b93bd26ce710750de2e79ca
BLAKE2b-256 7d8968b30a7564e44f54211ee05e6987f316ecad4646472dc7821a3ca6e181cf

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 735440fcb340b796fed2dd6fb4437f121190c2a64d60edc2a3ebe16bf22d9d0e
MD5 8560f20a1375a5fda3b5e710e6e52798
BLAKE2b-256 e1cb2bd885c1682eff8343851efa2bc5b9b0b512102357c28ae5011fabb194ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d5106bc1a2adadd3756e59d7b18022697cdbc538f84df4c0ffd91d7c2f3826
MD5 c47150bd37cbe416664cf58283e3083d
BLAKE2b-256 93789bf2a9a8fe6d9ee5362e3f0e6a53f5d6bcda6a24b36c16d5eed757255e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fbdb1b19e8259852b311b775cb39c31a731cb645e888d81d8442cb792b36535
MD5 e26a809c89905b66d9e53db420767115
BLAKE2b-256 06eed8599242fe0b6c1e771dcf10534e4a77fbd44515ecf510fe38b4153f64e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 492e0ee5c49ad1d7c767def74d822dc7db444d306c2615b0f053e821308b1f62
MD5 af6c0956fc2a2fc47b41c11062ad9357
BLAKE2b-256 9a1cffc45ea1bf2b49337aa5eb34e25495f2c9464fa3b32eb1c64743670559bb

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e54d8b026258c38029ebf1f67f7f048e5da38ffdcc701d657add966506682667
MD5 990e3236fad9cf7561859f0f64977850
BLAKE2b-256 410b6fa3d56aee10f76a1a48dd13b29b7ffe7960e0325ecce0bf9e7638f6ce5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30e8a9a2c9e5425ecd88d20351f9c44806fa810c64f2eda9c3b9eaf2721fa77c
MD5 66729bc4472d6d32c3c855f1b9fdbf7d
BLAKE2b-256 54058126dec83e37be8dcbaf6f85eeaed5067953ea4a0587b6569b9033234084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c45c7624068ffda1e54ecbb10895f847b83e25a443a04dd6806bc8d50573fcd
MD5 a964bbc0463e6644c285510e522d00a3
BLAKE2b-256 13b924b3910c382ebdb9b9c6329a1ab3a2fe66622e409f1ffbd628e53b1bc9f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 adffab310690dfc80b82730416d5a34f9299e1801b622c28b724b726cd943795
MD5 31b46598182c9d72a276cc81d93b82da
BLAKE2b-256 3ce2254a25cea56f284c7b09987e7dd739fc4ff5ffe2118a2780ff6eeb04e48b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0464dec0882abd3e21d93e8673358964cd338d46acaa0ab1dd952b042528f69f
MD5 af6e688ae1b9c7afda9abe07bf4ea340
BLAKE2b-256 8b9c501b70e93393db5157a550e1bac102c951c948a9e30112339d75e632335b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d73bc8642d40c6151d70428fe9b4d67eba25b125ef90c6eda006cb8941be6732
MD5 893c1a96e8a4b99f173557e22ffee09e
BLAKE2b-256 2f0bc5b57d44d65a6f5e1dca219ce4c0b4093ae22bfdd798c75eaaf02f02e4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b36b88ccd5953ea7cdcc0cf628e2b664d8d030f35af4635a87eb4b70356f518b
MD5 7d5091b55b54643f09c4f286d45e4363
BLAKE2b-256 ee27a30e34b8f81cd29d9a5119497daf289e504b78accaca7e3477cdc8a0da1f

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4c25042b1233e693acd0bbcfd4076cff3cdaf93122855b8264f8901946f11bd3
MD5 eb723f2cbbf32da08fa406848c190a12
BLAKE2b-256 d0afb29b7124828d2107f0a8c21c1498537d97a16aadd1162711815156e105c0

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e324d99f22ad094d3d0245da6c2c0ab6b396eca7a91c69f9b53e57e61dc8b81b
MD5 5019cf6b8ff87158df2a8fbfc020396e
BLAKE2b-256 11540555dadad17a1161008270a0a90b11ff353a942b37f1265a86ce8ec56f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 627dc15b934441a2355ed6703eadb3f375c3553413e7d9da55ceee06f1702dff
MD5 4a5142e3e2f8bbcb6c31051db1dcc385
BLAKE2b-256 f28b88a9a5e14ad62c08bfd980dca809711739b93a2a95a849d2220a19ef74c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a651dcb42e766320931b6fe8faa7a2fe61e37b6013f8c1209a54e9c17c75d2f5
MD5 d85b5c72d3394739798b27bb97d96867
BLAKE2b-256 6ed35a8f4f45e202af6c9d7dc9fe7e36631ab7dd824d6114ea76056fc86c1aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90cee9c428de4d78ff81a3ef6cce3335eb659fa04f28e82d1dc7df4fb3e4b4c0
MD5 d3e34a8adf003812a627fd17817eb4b2
BLAKE2b-256 c9518f1a637e0743bb1eca37711d8c8ec49869a580de23a0274cf652e79adf63

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7d591c33aa8323db0de2b55ba3811d4390768151d9d840719199ee029bfc8b3
MD5 bdae43a9d905f3a975147c758ec3f514
BLAKE2b-256 00a6db175ea5112c99f1064477b772a41a090652bac0c0626cde03e66b920947

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 633d1e98e4cc3c0ab23e34514c92679d09ed77b98da89d909bb65d7f041db377
MD5 648493c15bbf23ccad8e532b28061144
BLAKE2b-256 8ce15acbbb252089e5cc1afd97cf3499f91639ad0a1025e31e1524e90d7dc7d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3210856638c74e7d21fb0a454c960556b98d684781dc0020aade80391cc7784
MD5 b65e9dfa81134e0690a0a657539efc04
BLAKE2b-256 3a561d8e06cf53227204c7f5ed3cfd0617c5dd3682bda9e1611a0c094a9d8bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eedae8175bf052640406318173d1fb6ca3c5e005ad99ceba2a40def4a0ec88a
MD5 5f5c84b6cb9e3d3fd2cbf3b5bfc89bc4
BLAKE2b-256 831d691a3f431ecaa705929591122d07963739b6b5891156a501396b2f787bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f7622adcb940b8a7d423ba4c0c1c5b55f81203ab1c337fd6fe405034dbd53b3
MD5 918804f37a5f5893dc1886a2a25bad5e
BLAKE2b-256 6a88d0c78315ec9a2284b3405e109a0abf913fb0ef5d5514cfaef60395994441

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0582a33151290412c857701f36244a467157a05c1b6b63094173d24173d889da
MD5 886121fe64ad1ed427eeebd7a8a82113
BLAKE2b-256 890f364a1d88e9aed5ab60483b5cb41c047438a7c9df66d8a9250f5f3eecbdbd

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb7769640acc21dbd8c05c1378d7b2666a851784de3a82b36f0990b78b5ae007
MD5 3e92ea8513f6fbcb03066da4af088493
BLAKE2b-256 a813e23aedb5ce1d427146ac712c2ff544c53ecb5b43f47d91ce1d189436ef90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac2ad52ef5571c6d16ce670c2338ad3b702ee36bd5ba20b7d7faa136fee2a529
MD5 c9d186f7ce34b0d547f67229e503dec0
BLAKE2b-256 6a8e7748d1be5e9819634bb94b48a28cc699425a23c4bd2f1c7fda2528bdfadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d07d67450b0c02962d862978bba6f3adfe68c127e36f006c45ac321fea36650
MD5 995fd027c2cfacc258ae183a3f08de04
BLAKE2b-256 0c525a8f85aebeb35cf4768f91e6ad473841184d546d2a6c8789bf7768ddf861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 351de31153e3b162438b55654db86dfe93fb05fa6391d6b5ca8d703237796f59
MD5 a647a09f1f32fcd583a02c1fb52ce6f9
BLAKE2b-256 8e87488a8ed18a79c669edd552f7742670ce29b63993e420881f995e0542ffda

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b87f7aa1267f20801bf88f178edc0f35922dc00b8d11e2aaab615b86c7919f61
MD5 cf7ad71003f4b72c39a0d3d8c032220c
BLAKE2b-256 09987d2a6f5e225f8a505e9c2dea1bd03a035ed0fc8730f903c96b89278ceb72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d5f1767c7b75aa0ffebbb4ec3d860d1dba474384115fde04cfc55b0b27de7ff6
MD5 83ab44acf07216732453f970cbd5e2d1
BLAKE2b-256 d5e901edd2957bc145c4687ebc89068f7aeec81dfd83c89810d7d8385e414485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: libfoot-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9a6f53be105e6b1ae5a0da6e99d80af87d2a8e54a66a666e15c6683a8e465ea5
MD5 983e1d49b847f190efe741f6d92b14ec
BLAKE2b-256 af14f25068472276815006f091a2384d517ce6cfbde2f47f66c404ad0724074e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb354880ba950a736946902b716077be546de984bba85f2e0d4a80d1bb56b16
MD5 fbb124ee95e46754aad00bfb880edabd
BLAKE2b-256 122d3ac784cafc9df39bb44dc1688dd00d4c8f356b0632648b965a93370336c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b146633ae6d33fcbe222fbd1aa7220ed750c899206a5a3ca6a2b93921cbd1a7b
MD5 1cd6d32fcbf4c2ef8bfab8637fa481fa
BLAKE2b-256 7ad73fffd2ae2fa55701921cf11e405bd2d8c6855c8a3cadd3372041ce2992f9

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d932e74224851f30a5fe9b80a5807e82d52fc85cc2773c23faa25c1fefe6261e
MD5 fdbb31481b66366ae8689395559a3177
BLAKE2b-256 403bd74fd0c8dad0ff85d41c4a7cdbad7750845ee385d74752dce55e8bd1c4c6

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65f06999c4ad9732546d301f56c0f042f0bb676860a3486e99b55cff81191d51
MD5 3a3149308a1cdbdf500a8b3edccd6542
BLAKE2b-256 5ffa714e50b14da9cac88714260dad8268dddac91576865d76ef6c77bb0d417b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ce9e89720f5ae5c19f0992ca477441c761225be7ab81d245cc3fd922d26d8e0
MD5 8c22aa44526c09684fbbb6104076c2a2
BLAKE2b-256 0043f54d4e496b01afd43f29da3314482abe5240867e678f7e180db450975efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e182cd8a8dbab7010093aef3746ee530c5a9e436c9522be48b3ff386e746df0f
MD5 fb86547d73714a333fdffd467aa405eb
BLAKE2b-256 c90e49384cb4929285cae9270afc599f23378194b4e7c7125e4a536241514ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f93957c8a1f72d27b62bf78dca82db998504cb1e1ac4f0e556b3a28a96da8d3a
MD5 c6b5f9d0fea7ae84f26d14f13f787cf9
BLAKE2b-256 ea81e7cc8b7f8fa99af8e3f8253db0ecf402338734ba1da0fe6884745a5fcb7a

See more details on using hashes here.

File details

Details for the file libfoot-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libfoot-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17fed813bcc2f285a0d4c7bf18440daa9602de88fd867cd5c83892e339756ff7
MD5 b9733fcd1e30560977f4a8b9a5493e96
BLAKE2b-256 3aa471e15e5678bef29a218c44ff7d54ff73103dc023833ee65c33e4b0267177

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