Skip to main content

Python bindings for faup-rs Rust library

Project description

pyfaup: Fast URL Parser for Python (Rust-Powered)

License: GPL v3 Rust Python

pyfaup is a high-performance URL parsing library for Python, built in Rust using PyO3. It provides a modern, type-safe, and efficient way to parse URLs, with backward compatibility for the legacy Faup C project's API.

Features

  • Fast and Efficient: Powered by Rust for maximum performance.
  • Modern API: Direct access to URL components via the Url class.
  • Backward Compatibility: FaupCompat class mimics the original Faup Python API.
  • Comprehensive Parsing: Supports schemes, credentials, hosts, ports, paths, queries, and fragments.
  • Error Handling: Clear and informative error messages.

Installation

Prerequisites

  • Python 3.8+
  • Rust toolchain (for building from source)

Install from PyPI

pip install pyfaup-rs

Install from Source

  1. Clone the repository:
    git clone https://github.com/ail-project/faup-rs.git
    cd faup-rs/python
    
  2. Install using maturin:
    pip install maturin
    maturin develop
    

Usage

Using the Url Class

The Url class provides direct access to all URL components:

from pyfaup import Url

url = Url("https://user:pass@sub.example.com:8080/path?query=value#fragment")
print(url.scheme)   # "https"
print(url.username) # "user"
print(url.host)     # "sub.example.com"
print(url.port)     # 8080

Using the FaupCompat Class

The FaupCompat class provides a compatibility layer for the original FAUP API:

from pyfaup import FaupCompat as Faup

faup = Faup()
faup.decode("https://user:pass@sub.example.com:8080/path?query=value#fragment")
result = faup.get()
print(result["credentials"])  # "user:pass"
print(result["domain"])       # "example.com"
print(result["scheme"])       # "https"

API Reference

Url Class

  • Attributes:

    • scheme: URL scheme (e.g., "http", "https").
    • username: Username from credentials.
    • password: Password from credentials.
    • host: Host part of the URL.
    • subdomain: Subdomain part of the hostname.
    • domain: Domain part of the hostname.
    • suffix: Top-level domain (TLD).
    • port: Port number.
    • path: Path component.
    • query: Query string.
    • fragment: Fragment identifier.
  • Methods:

    • new(url: str) -> Url: Parses a URL string and returns a Url object.

FaupCompat Class

  • Methods:
    • new() -> FaupCompat: Creates a new FaupCompat instance.
    • decode(url: str) -> None: Decodes a URL string.
    • get() -> dict: Returns a dictionary with all URL components.

Compatibility Notes

  • The FaupCompat class is provided for backward compatibility and may be slower than the Url class due to additional Python object creation.
  • The Url class is recommended for new projects.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the GPLv3 License.

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

pyfaup_rs-0.1.3.tar.gz (21.8 kB view details)

Uploaded Source

Built Distributions

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

pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (828.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (879.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (879.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (852.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (687.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (700.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (830.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (880.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (881.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (854.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (817.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (674.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (830.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (881.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (881.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (854.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (817.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (618.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (674.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp314-cp314-win_amd64.whl (491.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyfaup_rs-0.1.3-cp314-cp314-win32.whl (495.1 kB view details)

Uploaded CPython 3.14Windows x86

pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (700.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (632.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (828.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (878.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (880.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (852.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (671.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp313-cp313-win_amd64.whl (492.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (828.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (879.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (881.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (853.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (688.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (700.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (633.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfaup_rs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (624.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyfaup_rs-0.1.3-cp312-cp312-win_amd64.whl (491.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (828.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (879.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (880.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (852.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (688.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (815.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (617.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (699.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (633.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfaup_rs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (624.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyfaup_rs-0.1.3-cp311-cp311-win_amd64.whl (491.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (828.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (879.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (879.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (852.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (687.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (699.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (635.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfaup_rs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (627.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyfaup_rs-0.1.3-cp310-cp310-win_amd64.whl (491.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (829.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (879.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (880.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (852.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (688.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (699.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp39-cp39-win_amd64.whl (493.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (831.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (881.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (882.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (855.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (666.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (690.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (818.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (618.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (675.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (702.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (830.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (881.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (881.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (854.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (665.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (818.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (618.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (674.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (701.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file pyfaup_rs-0.1.3.tar.gz.

File metadata

  • Download URL: pyfaup_rs-0.1.3.tar.gz
  • Upload date:
  • Size: 21.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for pyfaup_rs-0.1.3.tar.gz
Algorithm Hash digest
SHA256 5e7a3d15698f14c9550086ec5adff68b5a15d7456460315cf5577813a5b07ef4
MD5 08def9b0a4d635df06d06e9d6d935175
BLAKE2b-256 cb019613895f71ad1a8c1cf88cfa6cd2ffc6604022eb722f75cb395f0f9b0716

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d862f3eba3831c92c8ad7dd47514266e0f46d91c486abf6de25072c73888c2c2
MD5 98a33090826ba56231b0c295ec3ab22e
BLAKE2b-256 2f95a62bd6839236c1bd4e3d04d62a3f73d3dcd1b36c81252d8f0c9aa0cf8375

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9b3a93b5ba8660e32a0c28a27f9d380535dd963a47b83dd8583dc53d0694446
MD5 71c3ce43dc792daedb66388d6ea9ba6d
BLAKE2b-256 38263afcce0bfd500e3739a301217566cf260d7a2e6adde385c131a7cb747b4f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7f3dcc7c5b6af6b99e26c4de71fe54374f125f227f8e981002727f16595193c
MD5 573c9f034dfda7be57f45c91ddee073c
BLAKE2b-256 e653524f36498e3b335b7fb978991432c976fca831f7a2ffc9a43e8bb86f7acf

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bcc35b3f4a9905b5c4c78219e47261b9a94a8f82f04aa4b9a926afb16210ccb
MD5 1da0c83bc206bd8db27653e5abc68ea3
BLAKE2b-256 85d9982f67c212f3ec2557bcf4271d21199a13a136a534fd275f5bdf254cf35e

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 286394cb8019427d47ece79876feb2e0e1f94d0c80343b3a57a8365430a75b09
MD5 1400b029e9d64f4c218030e6a64bb903
BLAKE2b-256 82afddfa5b9ed00b15ca6e5a119c10769db4af1362f45e9678ff30faa0ee6161

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7407052a50a46858f659221edf103d3c505a2a34e2dcfac040beaf6eca21efc
MD5 27c7caa68c07b88eb3a1682094a8ee47
BLAKE2b-256 001c478993bbe4e2e7dd79e92906114ca3b3b7fe294c1c51c6b1923ac03f0a0c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5cd147e18cb632f0dc2cae716692340010d84a7498326be5c4aa3f8afb730fd
MD5 27eeb41f3d0f3c69eab7b3942bb71ae8
BLAKE2b-256 4ee20bc618a9ab557ca9de742f2b7662d6763062721b5598c05222f43403bc42

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98465eac79b4c8063e6700e7cfd4467416c1532b7b0ed26423e41f333e472210
MD5 b96e3a99a7769ab6e5060c826e80bd31
BLAKE2b-256 503dfaf484a7971f90995eabe17f1f2c52888b3d66be76e52b2f153db4e2ba72

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a42c4640fe54df178fe451f84e79d9bd003dd5b9ddbe2e41997b850622bc121
MD5 da82ca1fb124609a662f8e7a150b870e
BLAKE2b-256 a25bb8bf6f24061e72c9f2a66caba542fa8b5da89b0a7c4e7911536356d8d16a

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c41addef5a89ea7167d68e8689d7f88e05301a3d610cbff9dfec7370951e7402
MD5 2733a1db4db1ce4ac1ac46577c0b1d91
BLAKE2b-256 9426f46d569eb0af26ebbcbe2ca00a2d84b81fc018b67343f97ff971ec120d8b

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1ee1ba6003eca51408616a81b00d87e0a2440c49fc699cfb32eb745a74a22cc
MD5 445745ed6aa90d3411611c84f1cbabc4
BLAKE2b-256 6a9dc56073d6eaa50af2493753142c58a3e97b812172978c94dd789d951ea279

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7fcfb70c6fda90b459d7222cd09de71e951a336ef9d8113b953e103543b1536
MD5 5674b8ac5a3fb0e4d5c07776075f66c7
BLAKE2b-256 983d3ceb26d07b76b0c34db509fb93367d04f805f371e19751a314a6e3f938f6

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a5d762fbf35918e6bedbb87a7e4985a02be2534cf176e56f22802f1bd1c6464
MD5 0a55868f1ae3c3208a38b4c3ea53ff41
BLAKE2b-256 02c5491bb353b29d9f351e8077a5d97ce52cb5ede607670b76173f64d4d895f2

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e100d497d57e5a8328ed47487111183c6fdeb6757a7d966d1506d3eec7b8dc8f
MD5 3c5711483a2f5bd7482fdb62e5a13253
BLAKE2b-256 9460a5e3815360089a3df3e2dab3a78d94cddd695c2ee873c89f9bcdba1c3434

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 356fdc109cebc694295e506a1408db4ee6f91c9541d7e4c80685dfb6841489c3
MD5 361dec1176490dc5ebbde9ac492a1c3b
BLAKE2b-256 0e7ffda8768ebd8b858b2b258fa347ad6442fcf5321752570aec5b48979b8bc5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b87d5e2f981598da13aa7c025982905cc68c1902e00448de83d5d1b1b1cb3f09
MD5 b0d86dfb7a520a17a0e187b41becd69a
BLAKE2b-256 08e014d75a2e397253b249222f552bb27af36dcb5970c72409a2aa30a296e79c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94a720acbba8a8237d0b7ee6f77df3e2a0b4cb3ca0784adda5d114da9898a1c4
MD5 5d067f2d288691f049f81f59312abde0
BLAKE2b-256 c501f3c632929228d7c362a5fd0561c24ed988e1226b864dad3055d79fa251a5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51ca1048cd87f7b8f35642d4ad5b17e02a959fd44fdd3f57b45080b23866eed3
MD5 dfd88a9a18ba944f204310159e69d363
BLAKE2b-256 07e40e2cdbcab203fc559ecb5f103baeff9e442a227e293daca34198c56de945

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53783442f11cd5741ce8957bee2c72f8b9cc859e5ea94e134befefba04dfdac8
MD5 bd0c89ea587d9bd27739fc1947d7f44f
BLAKE2b-256 adfe77f0666946a0fcfc94aae6ec71cac6ce43fc3f414d5c71d25658a416a06b

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b5b4db20e0fed5a6baf6b6dfb36e09e4d5e9bc6c73524cb73c1f7c44ae32c34
MD5 1cce40b0f405f3dfdaffc99bfecaf14b
BLAKE2b-256 255c9da422f9c407c0de29d9a26ade9ef9b4313ed27d3e653f2ee1d6a9e91dcf

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8d3cfffb0dae319220d1c14128b31976ed759ae42cf26888052f2d9737dc0b0
MD5 67bf3de1d51053093a86e6288cef7278
BLAKE2b-256 2fc043a2e74cb4db720e325e77e0f4fc0a406301133f829ff18514a994b7129f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83639746c91ff1a789890e750d4976411252d7c498a5948856d915d18a7f7df5
MD5 87e8fe5e36b544814d895aac00f6f67a
BLAKE2b-256 b166e42fdb4c25600759db3328fec5419f960ce35f762b232947a3a6d4436818

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd43fcb366b815b44b19792b888ff312cda779cbb941a2735ed3b21bd66b60d4
MD5 2ae2c79dd026965df374ec71723bdf7d
BLAKE2b-256 cdb83a4ed9df817b191d9fc61a68350a57da34eadda34cb54e3383c1c19cf638

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3542f5d80239074f7bf4528ff296c1591aa9a093634e9d467d00851e6336f1c
MD5 b23239ac174d8d4a74ba1313e0a56f86
BLAKE2b-256 b5a2616ad29744d643a88901b0de313aac3d594ed5198b3dddce2b4c3ebd231d

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c7c91a6dee85317091d2c9eba55d7972172a5a0928d4178b6f8cd5dd3f05877
MD5 6246276bb6af5ba08325d1ce736e4a53
BLAKE2b-256 764d74ba0788961ca0ee38ddf0269cac442d02c4da82eaf445bcd1d073bd9ad5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5e37845808eeee414724fd93c3b0b924731a26da30b46a3965a5cb7050bfbe8
MD5 03030f56f765eda16b18743cefdbb048
BLAKE2b-256 692ea370f2ea76a7ba597174026e707222f0fb2c76f465af7537c324297e448a

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 495b0c7161cb3de49770c691f0278be46c065cab946402f2e5c41f13462d8176
MD5 12e7c3b3823b84e72c2726b8dabd8072
BLAKE2b-256 dc7bfb4580697f38cd3bf97d5f010411d06b1d67aad801156320bbcfd38c1723

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyfaup_rs-0.1.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 495.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for pyfaup_rs-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 29b20b058988e0493e2314ab7c78b79c277bdb5637df4959005bed03de0afa64
MD5 8f9a5468eb1b964801855b2cf8ba3006
BLAKE2b-256 63c66db5ee27bd5061cda1886762af8323ad9cf08231ebb22682972037d0a905

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5e57e69b5cadebdc481b131db2f1421145b2611ad10b6501ac91701514bb6e5
MD5 825dd29d7a5938ac4280645c96aa4ec0
BLAKE2b-256 f6c5dbc57b04f8f86d510a214b8bb44b3e4326a90908a4877a97c4f802b0f16f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dfb139b03bdb6cab5f440a41d7e5a04b3dc36ec34703cb899b12e2cf4fd9dd9
MD5 0d7e07b405b850c6d724cb196c6d2486
BLAKE2b-256 11158a2082fd371cae39f14360ccb1abf609ba6b405fe1517b7addcbf1f540b3

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 974661d57d02b3f88bd07190bc3935886d440f6ae462933befcc891d5ea81720
MD5 f694fa09cab6f95594b5cb496dcc73df
BLAKE2b-256 e61a92f66bb219e49ae932c517624b5ae5ae068aaa515c024582c07cc59db963

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2f977a566643205f17c5de5ec5b69a5d8201a7a81f6647b97523b9cb76530d
MD5 172734fb5c3f75c9c990051db97fd798
BLAKE2b-256 ab29108a9b35f78b3bc3ba10575325c25abb3718eabc5798a42dc69b116cafc3

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac851e7a407b4165b2a637ee08626960d561d8184af5abde13b2dc5263ebdde1
MD5 d49d2cc124f9b30d46d72d8ac4b85045
BLAKE2b-256 e88bb374bbe7ee371ac214381c84588ec8b5afcef786a19f5ae85fd560b2e4df

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5065df6c598b19026823116e3b5a58db3ee60f6ceca9c064be76ece6016be243
MD5 436e4cad51ef4f7ea6439722ddf9a748
BLAKE2b-256 28c78b1ea1d92bbba14931562020b0210c494b9647b03c3cc16360ff7fbc0f2c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eda6aae62c37b23f860f84a145c24e5e894ff1689362f2416d339a21f1c0930a
MD5 ff8555d56e24e423067949d3b9888bbf
BLAKE2b-256 3d10f9139e04e8b2c96636976c5a41547b094d284c0fcbb691b9379e12f34f27

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2334ac382bc2cf95d5595269434b9e6a5f479e548eddb77a615039ce68e13a48
MD5 affd1904b4211d5acc4bd5b21ea12fbd
BLAKE2b-256 187555e141ea2ebf5020905759955843b9365d622a19af03d7e464fa6947d1fc

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e2efd973adf2c0b4ab92a4235941afd8a67a35253a38eddf91690c6316bd735
MD5 08fdf58e949d19b432e6ade275dd5bdd
BLAKE2b-256 aa799fab517c910114de9f7db0a227ecaab37822d84194503b7727a78cc61bf4

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 361eca9def6f1307711a5fac78500bd6bbb32ebc6a887352e6294fe845d5deb3
MD5 83c3199bbe57ae9b5860ce643c9e9354
BLAKE2b-256 ae0f373b53bf394897795d4a0a4fabf4aecb5382f6782fd9a25a23ea915804f9

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92506020367f34d63ca3f258a677c8d0d8614453e44532eb1921111c3c64b06
MD5 6a11ed94465d05370dd8c5b30840fafa
BLAKE2b-256 031d47db0740eb1744650b55e328f5be63481444ea5920702662e32a422d415c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb3901ef8561e8277fdc5dbd2934a2a35555c7e752a80e887f49f5c997805ff4
MD5 8ebe3911ff09bb55cbde4424590a5f60
BLAKE2b-256 1d8bcaf41c23143db4f60ee2c6cedd3402986e8aff393af33d56ff77c815f799

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f7ddd835045e94aa20f5afdd0b5726813176542f832eba9522a42da81103dd1
MD5 4b280e4c1300b40c767035bb9508bf31
BLAKE2b-256 9a09edf7807b1725ab3cb423e832dd6d36f2813e43f124f4cf7e6f00103a9516

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f105f338110e9136c1b167ac16cb3c8ef37a7c45c890984d55f1aa15ba0d2044
MD5 97dd5c3b3bae4e31800ea164682ef9c0
BLAKE2b-256 1b74ff53d8c22739f29966f4d52b456e7419513464c19cb1ccfcafa1a80ba191

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de89a9de574e9dde2a60301973b93835bfe51d480e7c34dab61f8e3f983cf7c8
MD5 d17c9bf8772297739938b9bbdd7f3af6
BLAKE2b-256 30571e51231b8add5e530909630762cd083d6771062f3accc445c460266beaae

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bef87eb88bfa2baa3b583278fb3382d49451b332023dde801850ac2ba5368b08
MD5 e6a488209320b7086f916f16409c470e
BLAKE2b-256 898539a74a886e921a35d26ea1dc5727d4134a8631c7305aa58da9701d8194e0

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a52d1bffa2b297efc79cea7bdfb8d1c7fb9a3f5143c676dcd5598f989a2fac7f
MD5 91a50ccd9dfe117de69a3aec488aa563
BLAKE2b-256 cb96e7c3552ba2cf267bb0a6f9384521b4c5e096d953f656a24cd1daae3badb7

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47bad9da814c2bcfaf87dee78f302ac050bfc951d50ed7fdf9416ee78b28824d
MD5 870c61d6537322896cb58f44c84e496e
BLAKE2b-256 d958ff2de9ab4fb8be4952d41720b69fb8f41b9fd8a7f278c9dccedbd2313686

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfca11c0219abb5feae638be1fe37c6d4ab7181d79039af36772154c6cce2e2a
MD5 7a5c10a44b02a9a8fe92f9c3004f038e
BLAKE2b-256 c8408fd52263721c0c157818a96aa7059bb8dfc1b7105fec31d155dfaa422e20

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 315914f4e705b9a81e045d8f178cba1426b87857a8ef98378765212a760d4926
MD5 90cb59504b11293bac5e085378652917
BLAKE2b-256 cfdc201b4279488099ce299b498a6a69361c2b3226c4b8fa88c2363b14528bdf

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f41f601d0284d006c4d6f6c756f6389a2771ab586c66e2fc55afc748b0489353
MD5 c8d7c0355a4c973aab02bde8d8a85a9d
BLAKE2b-256 cf3801ecf9e0b09d6577eeb49034813f3b8fd5a4961be692a29e3ef901e55bf3

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22ea5463833a4fee999952acc1cad5c5b5fefac93a85420a6bbe34d88c6c1663
MD5 d0d08cb5d778082408c849b5e1216dac
BLAKE2b-256 8a99f5ce6f560413f9a34f606c6910b7ef2451ba718f1469d35a0562909a874f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c41858750cf0f039e1f857d9c156dc5a9e51856d009436a8df1bc98fd0b80f2
MD5 ffa02af0b79cacb722430d0136ad6b69
BLAKE2b-256 c72ba35207b547fbcb15aaf4531d094d7878a4a403716307149e2e4c18e224dc

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da65bfe53b46a01c1f47bc3a02e1b5516869a5aece001e89b7c2eaaba693baaa
MD5 63a44b41a07fbc415bc608cddc300892
BLAKE2b-256 8bf77279eff1cbc3a7bb100eb9e071210ab1772615e7ec98fa2274d5f61d20ac

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fc8dec149896d36c192f387358fd0bc3a5815c34c6191b7a19a184698eb274b
MD5 25ac0d5f04d1a274dee4ab39e540a4d6
BLAKE2b-256 9a3c015970ae8d442ec38586d75ded1c96017e94876b35a50001381b7d744c61

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e7e72619071d79e822dcea79ebf751c50ed50f7a77cf38d6b529888c38e77e7
MD5 77ddf48a92754d769ac21de2da538c9a
BLAKE2b-256 9aec8a2bf626451c3c69d262e20761ddb042e1ef3679c9874154ec1e53558642

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfe5890dbd054ac1c6fc3c9538f3b414e251ede66f499a8bdc75df4e9ed5c6d6
MD5 39a397b56754caeb3a438de083b2a6d4
BLAKE2b-256 da197c84f29c38e1633a54e198a7066b0d9d3a078c36dbcee3cd1b8453ec73bd

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13341a7893b8e6a2dc53eb05bc4c07bdee66bf194b8628541a00862ab74f4c79
MD5 01ab3bd83a1fc0afb796a37d56cf74f7
BLAKE2b-256 905cacbb6cb341a538a407ee63cdba4cb9083f4878545f912420d4171d2b76e4

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c745eeff8d559109bf0ba3a6563bb1fb52983cc51e61aa999dbd6cced167c829
MD5 1446769fced2219f7adacd1b439b0477
BLAKE2b-256 ee7110c93abd4abc890586ed0b066cca48614ec0300adec11bc6812ed512b1a2

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aeffccaa15366afcd1f6e0c700759c5ec2f5f223692b0502d1e4cfecf6a1b47
MD5 063214796a5cdd73764aa8aef0a83d77
BLAKE2b-256 68f315b528fb365c6e6658b712aa9cf333c126e48a9b830ad97cb4405c977eb3

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2f953542698eedd24a607a65fee0f211b8f288e85a4d98208969a84fc0d91fe
MD5 0b68a826bd1ce30f28523a655913ceaf
BLAKE2b-256 3532dac6e28c8f990e53dc30c022e3ec2e55c76f4fddd4c6ca9de84a7a9861b5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5daadb1d53ed7a1c2e5a40ab868590297322e12cef88fa7c038f040d945f4a90
MD5 78c14456bc6933adffec686baf36729f
BLAKE2b-256 da214e2755cc6d9c85b732a73480bbb695f405b67ef32588658f6b55e884b4d5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19e73b1cf32a2b98b7188edffffb0d82a4aceabaecbdc10ec9331e7d5cea39ca
MD5 ed4147a4ebae0015660bf278329456de
BLAKE2b-256 0c590134e736a696a5634c2a4915f678a05483f7d3fa08d8363db522338ff537

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8869d405219eb8fd2cf43c4f27baf1afb2831cea3cf8cbf4af17d0df5f299238
MD5 64adcd6b3adfa0987b18e238c2f511af
BLAKE2b-256 4dfc892e3854c7e7fc238fcde26a88c8e911deeea5d7693d9d7b791841a4c539

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef0a671f145bceccad4c28b9e8644dde72c60068764d0d438b0ca94addd9d2e2
MD5 f266fc5baf551a498a5f7925dcb5398b
BLAKE2b-256 421183d9eb0dbbde627af064380b0d1719b2a979efa02d4091ea8b054c7b7cf0

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f00dbe9887e6bfb4ecbfac5b3a165b212f86e129475dedb73dd876639c7c68
MD5 1699b9279c94ad6b84c12fc017729809
BLAKE2b-256 c968cb6c47da5ca8b5d11f4bfec628b09ab430e29637c4feadbfd4327b593fe2

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 897b1d1190369fdced47b64f5d4d38f626e926c1983eac0862eae20382cebcfa
MD5 2d65d8cce51eaf034f56646a57e55c5f
BLAKE2b-256 a1179b82973f4b7f355a7e9c2a45fb235a93c6ddf8ea3b71dd58d9312cd02411

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3a7ff989d54bca94e9e67d9614e22a67b62c606bf452b41e778e71da7b8d0a7
MD5 d0fcfdd984518cab2f2ac99dfb152ed6
BLAKE2b-256 8b4b22c269724ff1480572e47c9c8876fbe6d466f51f21af472b1d9805067925

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 102b348e2a8a8fc8563e44eb66f3dabe6ba3b1bf653cee2621c9bfcb6f15a5aa
MD5 94eb7275814442d593efd9e1752bea24
BLAKE2b-256 27bab7668aeff5ad22e78d8ae5554a3a3df5a11dd3f32dec2703a4e6b2ddad91

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 434f1778be1ab10b09405e91280d69de029666bb339e10647cabdf179eed90d6
MD5 ca8a38ba85269a20b31d4d00e9d2e0f0
BLAKE2b-256 0371304f5c52a522fe244f0367b5ecd5930f1f23bb994f8fd392b610be11364f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ae5f26c765109932c51c161528c9cd6c2fcee90a8869521ee7d1b8685509954
MD5 67c381c04a7ce88a51c495a3c3472621
BLAKE2b-256 5f85de341ea6a18d3c6c1cae479e75534c685d4c854388a4671d684108364182

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49b2f09b6c3e6519d5f7802e417d848c6fb2c06f2b369851914bf3ff22673828
MD5 86040b255543192f615784849097b31b
BLAKE2b-256 ace42f08fa26d10fac6f113c832ce8abe889cec25cd1380c29db8bd68ffa4e3f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b7799f938b4f82015147a58eea330bbf3b159df88cf64c3e4caa91c544c7562
MD5 4b1506709d526dace37838e5bda7026e
BLAKE2b-256 cc02a17bcccf598fd6f0e75c2f6ea95e0ab0b51aea8eeba4b2f29636e0e7e48b

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab478fcf663f4abc2c46af7a29819baf535e7e4ae5a6a709a46fe39301c6cfeb
MD5 1017ba719ef2bf6a22525def1f078710
BLAKE2b-256 ba8ea19f6302e6bf6f8cd7f9b41bac56d11c0a21061623bf2ef59fb5208c181d

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53b7b4d0f71d60eac4d143d1b442d6ff5776299324fa069a8b9d37dcca208472
MD5 ed2a16bb7805366a7d13ac47d651ad4a
BLAKE2b-256 3086a32eb8a195a0ebdeb0cc8c33507758f4cfeee3a87efbf1a51b54c5364b0f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ad83100039d8792e221c7f97bf7ade11e0f1a349fc8ca2caac0bad5f06f7076
MD5 5a2aaa3821d137ebd662016b27ccf64f
BLAKE2b-256 2230c675adbc2bca210afbd24dfaff5a54ec0000f3bb938e92c04baf4b3c24e4

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06961e54cd89f555792560babb8e6070abec052d72d6f000ec083eabef163676
MD5 af3c9936581409b122836f5469fad8ca
BLAKE2b-256 6ded302c6137f24f994b6ec446bac4333ad33bf08e49f7b2336ccc83ca65375b

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43505ba5ba9c6774cb67a087f19fa85dc21248dbb01966ffd8407a9fd0e06c58
MD5 4fa267d5fa8c33453fed340846b3e1ea
BLAKE2b-256 5433b15c9e4cfdb2bcc433b0d62edd0c200477c0c81b6981875c522ec90b9ca4

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddadcf64b50f44fd555fd39fbfbf6717df120b65b16b1a495c1d51d88044706e
MD5 a5144f7e36b454652250d7841a83ef68
BLAKE2b-256 256497f880bed404eb758ed321a0bdeff02919f7169d76a1e0ca5a0739d97302

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f483a61f141db90d2ac5494a1f668c725ffe5b0d9a2a3f498f6444fc07fe7487
MD5 0990983fbcd8eed48d95e453efc59616
BLAKE2b-256 c15dd02cfe535aac9991687e5e0a6466c2a5a632ae313e8db4cc3ee99b54ed2c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a841197d8f56f78edef3f529bb27da4f8764731432f560631b52931b670cd5e
MD5 9339744bd991b697238bfdad8d5a981d
BLAKE2b-256 1308355b1a88571727f5397aba0a4ac064272831daf0b14d51ed2cc9501a5431

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99969e5fafc6abdcf0c337a17d2db6a34876be5b1eb99f22f16127376bafd8ed
MD5 cff130733652251da06afc40b2051001
BLAKE2b-256 9dde0a0732eb2feb2ee035314b5d35f5823380a676433e4296a42a2782b45281

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 652804116cfaf89d77421038766bbc563a614ca90b0819810b36a120121995e2
MD5 bba3262a6aded51b5f8983501112bdec
BLAKE2b-256 91aae62ad04cec41cd4349c4541ead5443b79c397a1f28328b0230a565fdef66

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7819dd1fe2b877b0c244b31555311623c9719081a3f69c713be23b8994338d6
MD5 085bef345a0638d26ca557a17ae84bed
BLAKE2b-256 4ad6481473d93cec34243dac0128b4af32384429b1ac037620ca76c541382a1d

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92225a81e96197780beda4b1434624d2ac39c724bb7551a2133a502ceda6594f
MD5 c6fa783bb036457f629c3390e61400ad
BLAKE2b-256 ec18ec33269cd83b85ff15ede9ac04eb5d7b8b277aff27ee897fe76a4dd39fef

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cc5087028a7141a8d6ad846d3bda4c88c04dd04aa2f5e2fc643db6f93c75a8f
MD5 cc1b916e80d5fb9925781203b05aa7ed
BLAKE2b-256 cc7f5d81281d96efcb2bdd00d02a9cfec64d1f4f0125a09e78df19d130631549

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef107c338c2e874b170eb5f2262814825d4f6268047f0859f04060068e19d007
MD5 9ecc7aff1a3cbd375c1ee62b94f79710
BLAKE2b-256 064ae21f092be547960258dd30abca0048622c00d744e003a146530a2ba31a12

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 325f99e66ed261ec1b5fd751b2032cba5668b7730fe5a9fefc9d40ef5fd7c8ef
MD5 5ebca2512adcb5b78d64c501679aebde
BLAKE2b-256 0f43a07991f71dc89cc9017cbcdd0b4af0e5633dcedeb555edba43f77b0bb9be

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ed7652ca22ad3b83da1c4228188e4c9e45ca5c595c20809e1d72f4987f2994a
MD5 3421e8fc4a380171fbd1d088972a559f
BLAKE2b-256 fe090b89fd7fd4077625bcbedbfc7e1ce0d9af9c2472e52768ec7f71d19a987b

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c6216047e643f0354927f94ef0d37ae7cfe39bf6199d7269fff9c8e9a5328d0
MD5 ebc2e80769cb0cf9daec7d7023b4cd80
BLAKE2b-256 ad65c16e386dda143e09039b57aa00110c154edd2cea48683a47caf56e13d4cd

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2aec87f64b3a42f7598059cc50e935c96a354831e8c6e044e6041ee3609c949
MD5 1e4c7c508603c1a173d1b6bdda891a83
BLAKE2b-256 eefee798fdc21acff6b8e94be7c9a9650b095bac62488c07f5fcb252690c358c

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyfaup_rs-0.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 493.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2c71cdcfd19c79be2298f56ab52f468359eefab4e99f50209f71cd06962a5465
MD5 f895b4c6f8b9ebe4637829512fbfd03a
BLAKE2b-256 4222be32328218edffd39bca8128fa90c64859774ce96508745cf3fe73e34000

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4afac6f27342cd5623530d7f4ab1d37804477079908476a4c75b6abd6dbcf15b
MD5 3220d566a775c9a1f1e173a42f7bf4d3
BLAKE2b-256 a44b52577deed4a98fbfa3cb93cd689add8852137f8c9e3b59bc84968728d5e1

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98760b42ba9095cab55878dd6aa847302551eb1f5edfb312a145671aad58e126
MD5 c3c55fcc6ecc6564a8ec17891d35f199
BLAKE2b-256 acfe9481d73e3e4deb7c5a645307fb11f545cabe9f35244decea19b15ce7257e

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c66066265a0811bc90c0f8f4098bb2314a9fec4fc7af2b3d8ac13a6a497f3e45
MD5 274e1fbfa77c31aa78cf5ebe4dbdc60c
BLAKE2b-256 9572839114ccae8e0c33735443dd292e67a582cee0374de6dfe4d497bd5c5cc1

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70e2036ab503817dd34a8c38d4d2ae77519d059eb3bcfd449e6259ff71b3e657
MD5 e4ff59a790784e0f673959cc0ef56296
BLAKE2b-256 10000ca777df9fe873afb008a68f03c5ac2cef74acaa9474e8afb1e6abec6871

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38bb55c16ed49d495d4c4261d25009bbd9248b5ec7778cd24ebad8338f70760b
MD5 64e9074e3a805c456e5def985b1b1d1a
BLAKE2b-256 28d2f5941e11ed893e514df7d65e4125d5871a7a212d1ffcdd4064b4cc0df3ea

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 322d5adf3d042b036eb995632235cd2c68cdc799732ca1b32e26898f70b03854
MD5 219c82e14fbd34bd90e616bee5658f5f
BLAKE2b-256 bc3889d8c4e0f38fec6e3a47fcab96a90588f7c2036b569d715029b0e8787eda

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ff0d15f78da44bc33dc51854508276d3c9f8fcb05f1f6a4fe41d6aa498f15f7
MD5 66096155e12704e09c2247715827fad9
BLAKE2b-256 78269971b8f81d47f0bd71a50368c4e2a7cc1ece988c57eb3b160b2e274500cb

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5857e8cffe361fa3cc532b12142d8ab098bf34c46110c850c1854ff8bb2d60f2
MD5 674faba0623691627a36801011d52713
BLAKE2b-256 ca1142bfea484d9e0df61d450c866e2fc3831a3a3dab81c0db39d1987d5d6d8a

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6178ecdbf184eb431658b66af34dedde08ad4c1c2ba71baa2108efa3f1d73ead
MD5 e4f78a0206a295d3d20921b58a68a05b
BLAKE2b-256 0fa3c474dc13aebd9ba86adf24a01ca57a00d9142c8b62ac9d86566d411888d7

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74df108f689e0db612eae0856b4b0bf1bbb53ae72dd9a7d65ff12b05456a2b2f
MD5 25465664a2dc8f2c9a8cb1733efc61af
BLAKE2b-256 3762ec40ae51c1f0684f4c9941119e598fe0493a29888fa8e029322f05dffb7d

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c54aff30d08a4b4ced5de7ceef32a38d01a2dff1234999388c7e18e4ff509738
MD5 8d350793234b7fbfa692884a373a0dc2
BLAKE2b-256 6c2c0224f481a6ee15215eaebf284e67d003cbad07b9a265dbe31115b5295af5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66d94664750ddfba703e773ee8b1e3d50b67bf350336769ad0cc15e58dbe08fd
MD5 aaa59b3a3d397cde57a1d9b377c0939d
BLAKE2b-256 0e5efd3f485472df94880d27ec505fad15f3fed56b848cb6800cf4c55b29514f

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8ad746e34ac79e3a188835ca94474aa88e48bead61c8321c0fbd5df9ffb35bd
MD5 2fafe0ee8c6dc916bf871d81aa8ba909
BLAKE2b-256 ea6b268f90d4ce1d4eec1679cee3b7039d49f53492fccc0baf52494b1da54ba6

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e508433ea9e02fa2e3e87d3d6728296012ff22f09401c8a21f4e79233ebea327
MD5 e95494224f0e394b954a8c1cdd024114
BLAKE2b-256 9c98fe158e35da4fec9c278763f915a82ac2f6a1b233063b16c4873342ad35d7

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad79cb287b5c0501868f71c33eaf3d7121674484486875626838cbbf58bcf151
MD5 b8f5327f8a60fa8e0d27dda6c5f7759c
BLAKE2b-256 942b16da4ba29cb0beb5d9fb453c841372f9f7fbd2ffac7a919e0d535c7c67c2

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19e2a1ff528e27316d7b0753b95feb3a25ade4d21f0dfaee63cc7e114c839814
MD5 f8d4aba3d41a191348ded17a3b0af3f6
BLAKE2b-256 596a4daac04b1b99d9991b12d63918c1a0e76eae31553f42c20e7d13dd2c20bd

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2edf425eb96b08d4fcd654bf907d3142fab23d140ea3290d1f3d800f4d3f447b
MD5 e8f56c69098ccbfe4c57a0af0c0394f6
BLAKE2b-256 fddeb14c8e16903086693584c5f6578f6b027bf4431d5343947e1c04d98d25a3

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab9b6faeea5caaeeae1a169f32fc1232f28c6046c874360cd39eead59964a46f
MD5 7ab4e3ed7bee6fe5548622b2316a97db
BLAKE2b-256 07420d90d4d729b366904b9d518a5f5a8be67fe8b70c4f75e6aa1356b294fe56

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f89ca23a801d5864e41c74310f168487aefddb1c7e70deba2fcd1708e6b1b6e8
MD5 5603fcb42b785b8bef2b58b10f177a47
BLAKE2b-256 a7cbf3dae89d68cbf0bf9a7dcf40d3cd1abde3036062a2c85e220b557b5c8af5

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfaup_rs-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e188520b6ccd5e5dc7bf7610cdea69e805a122dd30fa88543f3fb4a5a681ea60
MD5 ab8dbb231f90d3279ad681be721eaa96
BLAKE2b-256 f3340b7efe8bce5c9cad80df59e9d5a8c52466db28c072cb972ead14de8cb484

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