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.2.tar.gz (19.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (802.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (850.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (853.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (825.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (787.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (670.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (804.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (852.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (855.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (827.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (789.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (804.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (853.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (854.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (827.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (791.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (670.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (802.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (850.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (854.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (825.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (790.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp313-cp313-win_amd64.whl (468.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfaup_rs-0.1.2-cp313-cp313-win32.whl (474.0 kB view details)

Uploaded CPython 3.13Windows x86

pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (802.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (851.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (854.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (825.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (790.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (670.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (608.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfaup_rs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (597.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyfaup_rs-0.1.2-cp312-cp312-win_amd64.whl (468.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (802.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (850.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (853.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (825.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (788.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (670.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (608.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfaup_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (596.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyfaup_rs-0.1.2-cp311-cp311-win_amd64.whl (468.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (802.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (850.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (853.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (825.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (789.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (670.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (610.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfaup_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (598.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyfaup_rs-0.1.2-cp310-cp310-win_amd64.whl (468.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (802.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (851.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (853.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (825.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (789.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (670.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp39-cp39-win_amd64.whl (470.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (804.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (853.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (855.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (827.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (790.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (672.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (804.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (853.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (855.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (827.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (791.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (672.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pyfaup_rs-0.1.2.tar.gz
Algorithm Hash digest
SHA256 2282949c94723525861f9fc4ee23e562a22ec859589e623fc02178598952d121
MD5 8bf3037473a4610625f49f33d4d52e61
BLAKE2b-256 e21f4e7bfd3c6b72b71fda7363e758d75de242d7c224d0eb8b83b8a23e7a9e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff15f168ca73f36c65b8dc5894aa42ddd88dab88ed544088cc466347118c138b
MD5 c4a36ad3d4c10b5ddd5adcedab3cb7b7
BLAKE2b-256 7643a92e20e3496f03181e84a2c5d37e761ffb230542303107e0b51e2874e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a0efeccf1632c842de590db1247d6955400bc1de83d3b9328c69fb40f609485
MD5 7095c1eeab27c6ced9069f5455b4cd7b
BLAKE2b-256 e4862b355115f493cd98e7c95f76f418dce2da19942881f17e6c323b0ca38efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4aace83217fec7b69aeec578f3f0ab6198a38ca1520713ce885ee69a057f8f38
MD5 caab15c68aea57ca77e7da8a4e1656f3
BLAKE2b-256 b1205b59e9c2a17aac5249af1d99f5cd72108082c78f282a4f057edcc91171a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0336c0d82b7470e64dc45f5f2c457bd06c801de4d8655643ba052290c7946b1
MD5 6205b9e95224bb08ede3c6459cc18eaa
BLAKE2b-256 7000beff8bdc9f7f90e8018217a1ee1603bd2e4d10830fe2591bf420da0def6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa443af6835aced648a8a316664494f982fe4e23e9ff4b5fb739688fa43c7bdc
MD5 c600090232585421060a6caa8b2089ed
BLAKE2b-256 d0fc13d2dd6a86185deb89f13c9c30065d82b86a6dead389b2ead69625bb089c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b73eafea5bef27c709a450df711a2fb5bf2ce758dd513cf721276f244b86ceaa
MD5 0ddbab0e3c43a8b53699626c3775ebed
BLAKE2b-256 ace9d27331c59a84f7c589ab9183e87fb062dff1ef6f71bf263e4da60a613823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9dd7679f62fd080df96af144be8577c980f30bf9d36767792ae5e0e08f0c9342
MD5 1da1b0c4805f1f1dc03b3adb41b46f3b
BLAKE2b-256 cedb8997a519f1254def18c621c312eae7dbb78e88a0871c6c543f07d8d8817b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1f6e79e77fd1952d22e861ef90b30d57aacd918e08e9baf33c1d85169a1dedc
MD5 81471688f34e01e6171ffb5d2fab8a3e
BLAKE2b-256 b8995255e51fc0437dad8c6271ec2c425c9adae323ec942eeae5b43c2565b5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1b89546f293a97a366d077d9ae7e721738e37a719dac6c3d2d26071df13f2cc
MD5 c948fca30611be52f351ea80e49dc4fb
BLAKE2b-256 529dcddeb6aad26f0179183ede3f81c122787a0474abec86bda3113ee516590c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d891b9650f6adba552bfc0cf77664655f06458a617e1c6c31795c9bb764efe87
MD5 b07ee034604d60943a4569d1aa0866c1
BLAKE2b-256 223d26df4b27ab84d292c4f00319487ca3c80a67a15d2202a86700551d1ae054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e35e334823944bc64cd3cb69300f06a872957f43f80c0d831c66734147ba2bc8
MD5 c3f5323eb31fb60ff5cb954e759651a2
BLAKE2b-256 e8f60e93367f047d3c54dde37c60f3c248fb677a1408f895f5df4235835c8412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6985fdc6aa17d0413fcf360b0ca2b012ffb74cee3857c4072a27e830b94f382
MD5 6875c9099e68e58e478fb48f2418b597
BLAKE2b-256 c2cda8e68dca4163c5032cde6e4b0a24855becdb74daf126cb7acdb654f7cb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4fd5563605aafb46357cb349e004184eeb4699abd98d9d56139443c2db4b59e
MD5 fdf1be501736a8736075765998d08b8d
BLAKE2b-256 56f85c1f198461a7e9e3a61b4a0efc4b21b17070b79161d3daddf1566fb542bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5461fccd1266e454872f7d6694212c895fdf212ddf79b7c7d8d4a87f06f05ff3
MD5 76c09f93f43560ae119915826fe667c9
BLAKE2b-256 c85c342443b30a7f712da1b97b5fa347c1a09ccc5e58d6d4fb2caba83e2fff85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 395d49ddd956d7ab69b935e2dac454903f5cea477b3fa6640cb28478fb0ef949
MD5 af7e088e021bf88bb9ff46779788416d
BLAKE2b-256 d730c21cdc5d0520161cc95cbda44d3ddd31446f4e49bad34409ee703b8c4a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0359586a8114d368c952f4a1a19aefd2cb509d42b884258573c0665a142f51e2
MD5 f14b2ba6ac2fd3cc0973b1be8f0b8b83
BLAKE2b-256 325d4a32ea4f98d25dd8eaec7a187076724f3497de774d8218acf161f81a6b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 415c15153a74174f568eee8ad7d8d488afb9773bc1a34d1a3ec035a6e9ab894f
MD5 b369c65a731745c244d865f31e5e98b9
BLAKE2b-256 2ec6bedaaf39b88ca92edb86fcc6330843cc7e8f66e610279ccf305854925a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097cbecd80918a60691aa25d7f7ce1ba34241dc192df24a910b2d579bf6f700b
MD5 67c17a923970837216229dc5f8508d4b
BLAKE2b-256 c9f9a6537e9bf5b68404917ea2e5268cf7a2e205769a811250c2e02d836b9fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d2463ff85f8a46c1ce8a3a230c6711b89db3ab9674ad2212434e9d1b7e975ad
MD5 22baf562d0971c4200a9ed8a2d7f8a9d
BLAKE2b-256 cea78b085dbe5f05dbf13312c3884cc61dd7e86e8e7d0042cbd441bfdb04bf0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13a057c21c36f10f42b1d19ea18214e21ec3e2173b29166eec0c4e321974d202
MD5 93795e6607a5688c1001d9bf7d6ac969
BLAKE2b-256 d4b5d305b5735a3f252e8f65d0c4ffc4cdbc670ae356ea3816780990faf8bb37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5c8f1a1b1811cf2c6a1f992a20be06a4f0ca02100010f29f949c50dadca08b8
MD5 2e382102537432ffab6ea847f93d99eb
BLAKE2b-256 2132b1643410274b3af168555596911c351722e8e138b06628bb96dcfebd3830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d78b2e4272b9fd3db100374fc1c82b9c0d342c0a81c640ff1a9c52a3973f1c94
MD5 7d1f4c8e3310c607c81bfc564674a770
BLAKE2b-256 21c493ffcb04a1087caf216203c9462f2cd5711543346c1702b066df7fd20bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6d26c78d40538ad228dd863bd1aae39072634544da9e50a5a0c56c73163697e
MD5 7b159e1f996653f00d999f56f75d4f64
BLAKE2b-256 f49e836268979fd18a83ed129953d14da70f75f239ec379302492ddb02a7af40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28f47cd8bbce9edcc2a61b670e07ffe336152af809ec2ca0cb969c0ade6b6d58
MD5 dba0e19b1a8c13b0329710238572db5c
BLAKE2b-256 693e82ffe4e8bfcd5b25fe1b18ac4d3ca0092de81731432136187c6d4e953bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5317000e3e67be13ad4ae66fc9bb3bcdd916eead89f320d5c1d50a705c629be8
MD5 b5250e2ce10b69f67d16d69af683f994
BLAKE2b-256 8aba60a8b33a033ddeeec98a5a7c994b35e5635d68060039ae34eaadf688c26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1104e6264c863e659872ba48e04074463d04f152d140bde5494b1b174170e18c
MD5 e3378e8468b4fae729fc05c4ef58f6c2
BLAKE2b-256 8ae25be455bb37befd7861a711ec10b1c4d520acf0e0448a768f9f2060f180f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66a0526eef2a234077e98064e0b794ffae5d3ff418dc504731c38ce206150872
MD5 dc070b115626bfd9848e12b4258f4f15
BLAKE2b-256 7370277ba25a35c692d94e2e226a967b69ddcd7f0b72333f4c469d4e1efeb047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12a62ecfb51e0baf6bc38e090a95a00776cc020a8196f3dc5b141576b090833b
MD5 657cb5d3672a34f983492cc17c79d346
BLAKE2b-256 44256f2e28ea842f856ba76b45de1ccfc6ae1603b7ba9a185328de50a445470e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5af06f757caf5b3bb3fbaebdd24ff9a87f89788cf971c14d87049b95621cc121
MD5 0f40b7ab65ee047f734761704da8fe89
BLAKE2b-256 7fb62c0a402a03bcd1bf6ec72085b920b3289f7bda1ba0aa635fd7291a7d65ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec3ffb913b3df8836a616d7a390e6d9d504e67130c51fc21f0cbd7b1d3dc67aa
MD5 01d3de66dab2ca0d97aa2d84ce2b8244
BLAKE2b-256 b720dc6e3e69d68831b57d08514139a23304b225331a55ae51a523874766ca22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d2b79807651723bd2ad4f58f9847076b4510ce4233eaf267b3ac6b6ad6f27ff
MD5 6a013ceeaa35dbfe57fdec6e84cae147
BLAKE2b-256 b720e04a443d45990d6f96c9ac1bdcd75e417640f57daa7117312feaaa89dc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1e92c4a7da6f5ba050357581a967eeef19c0ba6508e43b1ecaf2dc15e607b06
MD5 febdd7790ca000c459552dbe820cc44c
BLAKE2b-256 62f0ea05334cf6297697117e265a123610df4b0739562383b2d90d18f4a36a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 145a3ac3184d5aa78b55a04481e7eed5064ac9c560434f0156f4555aa2febd2b
MD5 e5a3c0b6f57c5d5caa5a79e417e0dc90
BLAKE2b-256 8b78826c8b8150e8d7d34a72c2e14cd833ca32cae8e6c0c9ea0a3fec9e5040b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8717fe9600c1e0aca062dc17b83f1623ecf5aa3be1ca55061ff536d87fe63003
MD5 e04f9f3214c721a3b93c084eab465e54
BLAKE2b-256 ed1ec73d7fa8fca51e2b0b7bfa38439962453655ef3218f4ad0659b3cf7cb732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6089ede58148a83352d6b6faf6169ce359f91b1e08352be7a0667b31e86baf18
MD5 5114028681c0bf5cb9442437c355930e
BLAKE2b-256 1f23ee0ffe74d1ca27b74794ca408c54f7e19566c25cb8bd9dddaf82f1708c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec84ba37d7485e8ef19788634bbab512065a382a78a051865d6633ad3ed273a7
MD5 42f212c1a35c7ae8ba60162dcb7d65a5
BLAKE2b-256 bf5b502186e449e81cbb2d9c573f616b0f6449e10b221b273917216ec877b2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 51803f0c1f16f224df19d4c110cb1512466f2a3c58f32ab23a0ccc24cca13e9c
MD5 70c83399e758efdcdbb7bdb94d5f4c37
BLAKE2b-256 88701bcb54936d337fb7310ffef3d5beda524fbe8a4e3ee5c9c017130afa5f32

See more details on using hashes here.

File details

Details for the file pyfaup_rs-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyfaup_rs-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 474.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.5

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 786032e51ec46f893cc21f4a397db5e50507073d2a6ed76194ce2916eb73b731
MD5 453ef0c128c17977da62ab1a23145c8b
BLAKE2b-256 d7c6cd774179c1259ef68b53be2c6aed0df19e873b6624f7481ee0323f832589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ae3c3fd4460f007cb06d75a81b945d57029e4d3e62f48b7d9b10f78f06272a2
MD5 44c50645527f0fcb007060ab68b622fc
BLAKE2b-256 ec40143115ac69cee6f5b7e3cd12e0669b0b3260e3fab9dbe6870e6fff4fba74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 577ea18125f056f853e661495374e35187ff86e939a476d032bafc78bf757087
MD5 2aa5f00b0a8570566e01297b4e534f90
BLAKE2b-256 7ebc16e37f8e032c30db3fcaedf2513183028491a5357639cbbb4f924a60e0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e097a209bc2e63d753c6f454ed1dc537f4c846b1096c915daac484fd31a427be
MD5 6199790785dde13c993c3adb33ee8d08
BLAKE2b-256 dde5364e26a62de0392db5577aa456c3407e71ef658fa6fdcb5b10f5bb6d55e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcd4f85d9765ff2a04bd2e491260170b251a32a3d6a3b38dd16c856b291720ec
MD5 d79d8bd30eb1feea460247b914da33d6
BLAKE2b-256 d1e6de34e1e9d1baf9ec4380fab1cbdda92c6edf1d42df0cfb12f73ad7f535bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a50f6a4256be8fdb75e05df0dee495851f6550dcecabdab51d9589ba9a4ab9b0
MD5 9c79202c5c2d9020086bf9f6b2dfb92f
BLAKE2b-256 e1127ee0b615d78b2e8333cfbb0b623429c70af9b4da4b7897851da2f24dddce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 742a41aca0b5c12d0ad13489b20f548b52b42d13de29ccabdfe7c1947dc4b4f9
MD5 314b7346828b4618227e987da6326a99
BLAKE2b-256 f7291cafc55420df5cb03a68a87a9fa8f9be47cfe57e7872322b8eac8e386dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2d308c69b1ab6d87591671cc7da71bebe83a493efbb7cb989c6cc9933732b51
MD5 f61b085012125c83f4c497dd430de551
BLAKE2b-256 eb0bdee079803c7899e1d705a5931f900dc0fdeb23804206a24de5f0f871d3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9042598b59337df369e05ae8ce5f2da1e921d77e90c45335c382a32b9dcce211
MD5 bc85651d797206a1e9b29d418c49608e
BLAKE2b-256 7df19fa6cb83db379abfa1c3b17b2af5e766849f8a9d2666e1b41706c7c80da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f36670f3877a2bd3b5e29a87f237e94932df3667170438ab89dd9538fc9157a
MD5 1d2f54f26cf52d7ab1244f8a8289a433
BLAKE2b-256 d8ed579d79e262232f2d960a2043e5ab0c0aa44989afad8cb2a3eaa02642e734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 adcf85e638955e757d68114c22e6c35374e61405092e49f1879cff8d630edda6
MD5 c9c7329828370425820fb36b9f339593
BLAKE2b-256 269222061658f7d66c4495ba5674b727cc57853dffa235ddbb3361f9d944a1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcfeedb7dbddc13ddade2b7c7974441c3cddbfc52a5a9bfce0bd9f9cfc6ed9d3
MD5 973ae2c593631cf5f0cb15aaa0e0f922
BLAKE2b-256 d26ab67651abc9cf305acb81c6c7bc8cca6255c473433148c33a4d30728ec37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fb8bbf0105ce5c8e367824c28503f6ba217ad4e8875e07948053b405e98f0b5
MD5 60e01ef0f770b8a0796937d5d3753b9f
BLAKE2b-256 4692f442b9349161629937b139bc568b3e052e40d14e067cb6ef82849aaaf997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be10d807793a2b95071685520175e993a88bc818b613d667d6f4fc55d818d3e5
MD5 793eb8cb0f1d4ac66178cb0114e7fccf
BLAKE2b-256 f18f097a0f32ec24e91eaa736c5f8506c69e3513fde0f64c4641a2d2fe8e10c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2d45e4abe10619c6319557a88e13ab242f5f6b0acd19c12d1b38b82875ef950
MD5 801cadf62a7571c3e1ed45c1f0ebf61c
BLAKE2b-256 9e4439dc529a9556204b332b067d9d12ecfc009aac424e9fb1f70825c134674d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ceb2e904fcf51f02f6e51026594bc4c98b4f18cb46c6e1b62f2a38263b6d7c7e
MD5 e2661503bc8a73b687c9ccbdb2a4ba1d
BLAKE2b-256 a196b29434843c9698906693fa8d01050c855d26faec4d073af4b9192d34e326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 866d10e01e0453bba9f4b643fb64ee16013b647848e556820e96a34c8482092c
MD5 709fae34aa7585fbe53facf16dec7bb9
BLAKE2b-256 8a85652e0aa5cd97071d62d4aa1feaed4f1d0945e4ffea6242b3275a124112ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8be0aac4cee02303add2d8e127ae7b41b4a187fd0c219eadba113eb7cff885f5
MD5 99762e2107819678d3bbd12a67536867
BLAKE2b-256 44cec692ad699b599c8d048eaa1af5a6014ebfea27ee34a2a51c16b159e85f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a27447f414adfef16fba317e3ce47c2a61c90e25db2c8f2f4ef8ba094f4cb7df
MD5 7a515e3e3c200ba979f63f479f392a90
BLAKE2b-256 ddc0314e378e5feee9f1f1e3602f5826e87e4aeb927d83d11a6856decb7c3f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8483a036a639d2e2ef575d93ad8321389d9126f1aa67fb6c08038a466969479
MD5 f51c04dfdc2051cbf843089ed10832b9
BLAKE2b-256 4dc059714d35997e3082a6428f925e7e178759644fdcc7cdb30eaa9a01e592a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a16d0bfad213f7e9a1310f6281264f2b916d862f002e580e530ba5a8836f8aed
MD5 fa9582f29823be877c86f7c5d5ce20ae
BLAKE2b-256 45e943b5110e6274bcfe2c734e880e98a012e149b4fc64f923c4ef8a9fdebc1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a41f3d3110f40f4e5bfa8a4cd6e3f6aa0a1844f9a4b416c0a9eb73374097322
MD5 98d2874664da60e445a67d607ac090af
BLAKE2b-256 df09796e0841693a27f8c945aa0b8cf6eca95bebd310f5fa259934c5b995f470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2222d40fa6a4dabc47007c8dc474b5773e9ae5416a34d73dd958203c7c540dff
MD5 70843e800055f4229ef4005bf5bc095c
BLAKE2b-256 09fe0c4a2f98c01095ebdaf38334f8cf90c2310ec65f4c7545a429de4667755b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1483c5fb11d971523e9ee7d5ed14cdf9943c41d4579d33b0e7b760ef140d6f2a
MD5 06094ef982d3c358d65f79295b7dd14c
BLAKE2b-256 a7f09642e61db1899c17fb7afbada4dc685386cec8f2888f3a5dd612d9e51e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae82e6c23f46f99dd6b31154734aba6109bbddd62a1ba094b680dd17acad4c2d
MD5 bd4c3877b039b828007a846a8ffb41ea
BLAKE2b-256 be013bbfd3b416ce6e3783923500445148c058505e2858d804089277b93de995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 872af30b614dbac3a14e77df6090a87b45fbe73b816e4925fd3295dd3f11a75f
MD5 80d06bc222eb5f90c8ce059da8afc902
BLAKE2b-256 d95d177f0e6206b89b5adf13c18f45cbd744121171f7839f6275b8ca0639dfa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc193165cbc491c96e1c3bd9b08190e77a7c5a084496b55ee5009db135f7ae80
MD5 84f536e228d9e242f6c95733aa9875e8
BLAKE2b-256 bd36da960a12318036d0fead91a096b9efde2d983f800821fa08b96617baa4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f358fd04221da1d0a903f6c5c3bc7161b65a6e1398e5cc54ba685c2dd5a63547
MD5 291c45dd8d7eb69d293a0a787344acbe
BLAKE2b-256 0ed56ea069d74c0c7f0ee18336144813b835d8a8734aeb680142f1cc854c408f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0e404375010e651afb78f44ea5f638245db24255c04b7cbed426be3e29f3ee0
MD5 1ff8d51eb36559dcb9936a3215d272bd
BLAKE2b-256 cd0b8c2244357af723b549e71bd032f447c5959ad0d1d83876cdbc2c8f57c0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d47c713002853604b8b8f1438ede184dd21d0c143ee301134887ad701f10b400
MD5 7df8259df0dbad9a782e6384be5458d8
BLAKE2b-256 ee08e46bd19cb8e121f5df6a66ae22626f8f353cdd8ff2b7f4c461194069aa8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b45868b9aca4d5e1d33eb8d82e8785f2ced0ef97e290153035538482b4c115b
MD5 5bd49d3eacbb0a41e4899f36b938bb2d
BLAKE2b-256 d5997ef73cb14a4429653df759d97fe9f560e39f177053a5f75752f4247bce6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1f5f32d6707a05b8e2109150387b9c48f63dbc709a01a46ff50da6dc673158a
MD5 9c0d8ff7b4fbc7f7bb1a2038f3e4aa1b
BLAKE2b-256 2ff8861e47e9bf67de41ca760c257bb664713997fed198f89bd0fcbb11b00569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32072d9930008ec558dbb790c5f6a8a9b067be75cc115ff82db12525e195f180
MD5 0bb3bee05bd66a7b56abb4b0de81d0df
BLAKE2b-256 42841ead92b203c90ce894c9cc80b4338ef64359f25f07e6ace8bb32c685ab76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e988c3846e198e4337158e7a98f10e2dc3f4d6383b05772d6323bd7ba995877
MD5 14e94be3b120ebf230a8f7badd1573ea
BLAKE2b-256 aa340b5c6749dee80b21386ae2cc5267218e77b3a436bcc20d3394008bd384c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62a3762edbd0bfe50226d4b44f39a23def5f34b30067e606942acc45fcd58377
MD5 a1720f2484700cd9dc19f6cc0efebefe
BLAKE2b-256 157c4a6519a04afc04ee844787e3324d1888645a310142f3bf57db3845bebc59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36dea5839fed937d4acdca29c100d2b010d04b336e0187de2eb364f0b29c46da
MD5 c6a8cc3459eca649758133b29140d863
BLAKE2b-256 c995bb7b98e87157353e6c7e8f8671c7b8082fd275e407716976be6c26c44f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a79adedd771a4629c7a67d8d063e16cbcaccd053b26afdc27b18255209773bf
MD5 2e4458ffa4a837ccedbf0dea286ce8c5
BLAKE2b-256 bba64cac35e4af215bfc04b726cad638bcd60fc4c832ad64683753709a57c95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55ff438808e9c5dabb0446a41dd99654e3567ed2e42210d2e85b72fc2f9986f1
MD5 38aa07f700956cf8c140a4f65cc20f52
BLAKE2b-256 9ed350f636c22de68dd452df9ec045d4ba370a4d1e1f6599f0c83cfca66c8e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b072a89620bdacc173d86972f22edb7b991a7a8f9eb67d29a1893c344bf3a4ee
MD5 2c1f94d0426df2569900986e2b781a16
BLAKE2b-256 ac016a91b674277c9f31b846061d40a8267cebabf366b1524719428a2d4b946d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e049ad163e3d0cd170599bd409ae01314e9ba8c88c077d475938c9483865158
MD5 a0f7247b484738adb5e869bbd0ef4fe2
BLAKE2b-256 fbe0f098cb3c9fc671be961e514ee1a96b6fb7f85d6a436173a6aae06df0e3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3faf484d660ef606a75a74c64c94ae7ea6bf23944ca60abe3b0a905293f2bc6
MD5 82dd32674b74fdc14309dd6b3949ba09
BLAKE2b-256 a424600d639414037f62d8b45fa949825ee697736a2aa80a8e81e5f16cbf216c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 690f84f3c989f0d5da67ea82d399bec0070ca16ce02331ac27b37b03b294cb3e
MD5 9f2076e91049dfa16c5ebbfab48bc3a7
BLAKE2b-256 89e52f9939ca63fb41e2ad009e8e7364b084cec617a5dd78b5d861ebe66ff9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ffcc374ce87ce6fe2b235f6d1f59fe35d0888fc4963990ea88a1d715510da30
MD5 a7c99c9d420c90019ee02a79f4d38673
BLAKE2b-256 521485ce50f9290c45d42bb42fc3012f9f545ef9c8671f1b51b7595660335e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d482b48a0c69e2b7d42f055a9fe2292c2f4e6fd723d63d6b2df8c084b61fa2f1
MD5 c2854aedd307e2643b40f1801cd76955
BLAKE2b-256 e307dff785fd408384636fbebe1a80ec5b95ced1427d6ac8220fe201626c5ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c66b6d3f2a587d6b21d9d65423fba8c1a031ceb54a8841c5e78c30ff9ce662f
MD5 2c72307f8d44f594c38d035d5986c95f
BLAKE2b-256 a27915137458b2c1654d7f52286b417ddd3d64c21d592e9d56237a07bbbb4757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1ad3f07611a1d352e5346cf81760ada81f1c60fbc97ccb04a885974dc82fec3
MD5 8bd13960a66dbc50423719108f272a68
BLAKE2b-256 c07bcee2ec9b84e3f58a06d56d7dd6a400fba44567c39b8950a0db9d0b3afbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 123a6a6dbeb0b38ccc9377933735aea0fa5ca96ef14a8fbd751b2e1c9dda70c9
MD5 9ddb5ee9d48d52db3f5888bccab3a10a
BLAKE2b-256 f27365aa402c4006d239fb63fc3d1e32ac8cf89281d50bbe08562012753d7678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 542c5a23353e6d0b2ab054e2d65a07c67a6e12890bdb54a637805bf309572e85
MD5 656858dae0fa19209b9a691330548d92
BLAKE2b-256 7b97c8725ad6ce16f01bffa6c15a5824bde2531f5c5dd24871487a1c8178a12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f986906ae011d7c3430816b1a3df5a72f83a31beaf955f930b2d130c2a4da176
MD5 0ca53b4aa76902f800c1287168d8c0af
BLAKE2b-256 80b56b637dc159eb115696dc33152ed5c9f31f49a51f434fbcb30fd4e63a260e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b9d85bc3c219bd2ea0119b073a034e985821cf7744126e21a7547ce0f508e79
MD5 7bc06957d14b5f7c3b6e1cb5d0b6a072
BLAKE2b-256 39d8854fc4a9b06b78a2af491d12128f83583fee3178c918a8e9655f0523a98f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 06f523ab1eeb091e23c7b33a9577d8d869600136135a17f1de123624db410797
MD5 bf0ada424e38bca61b49a45ef4c9517a
BLAKE2b-256 bda54a2a58e67fe2eabab3c502d507e40db5b2524699e72da7b15893a634d24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42b739514f99968303dd58424dbe8f50d96b5bc517155704da2b03bdfaae75ef
MD5 7d6be10500eb79acb7f3a4d133a20369
BLAKE2b-256 2479603f406ddb1a9e865272c2ac6537851ed6f7571d861f8483be3c840f1d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 407f7ff554e6334ca321f093227baf4f588d8065905d20ed645cd098169702ab
MD5 cdc534d4ed74741cee8f2f06522bfaed
BLAKE2b-256 fcf1506a02d54d9dde372af5c7edecd860cd66bb6c371f4fcb53e97324cf4204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7df5a5faa2f4659ac52dff16c07d7f066a5107d0f600d82f1cf07d15ea92d99c
MD5 688de26a837572978edb697913f8adb7
BLAKE2b-256 700bce21d379b09d7f30a40e7459c893b12bbb30bd0de039065d6915dad4c094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2a32946b4eb6fbb80bf969ae6f8bde3b45e6bb0c180717cdbb6920248099bb
MD5 5f36a21d23d13289125e453344e4ee39
BLAKE2b-256 d4c3da9f0b2add2bc7ce33521afef892c81e952073859ac2ebf5ee80e4693f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ee9ec65618a22a2b3cd076aa5c0c1df84a7de9642e8b48cba4c6a7d0ae7adf3
MD5 ec60e03495ded0c7f28e80e83852d568
BLAKE2b-256 83478b16c83f74a9caaa9162580f89cbac1962e0bc8e26ec3e40d79ada47f673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e63f72750b18d6d5c0f381c5318099e2deae92a09b02a58eb57b095ac11febd
MD5 1810f1a1be400dd2e89ec1c3f82eb425
BLAKE2b-256 4affd16be44fc9b807b8da360eb1f7fb29f66221d9e5bb39b9a061528d666b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e3ac5360bc81306a0f501c9b29772ee192eefbaaa9c4f5bf3ad7d7f72bd2f89
MD5 0e46b28f16475b9f87d0786fb39f0d36
BLAKE2b-256 5cb206203b86b3205510999b294fe4e4ad75e9a292ab5413f20aba3184c7b2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5307ad6b551eb39c808b5f74817f45fe2df428b9f6993d36bbff41e721f367d7
MD5 58c2ba5ed9930907ab53c4c01481bd6d
BLAKE2b-256 f03f09bd8e48ad09b8bd557b3ee6ffc5b063141b0bd05e81b8753e4d355fb202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34aad4029d04989c7074e9a87dbd76c77d8580280ab19df144935545ebfb3b87
MD5 c1226f7b85cfc6dd3decab895416c53c
BLAKE2b-256 5951d1b62b7ed09451669614b8299ba0d0563dfabfa2daaad5696a02f8744dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3913c3ae32aab3e23b54927b65f8d2634ad789315e7efde636e0ddee66379579
MD5 11510fce7ab6f1e594b5486bd90a09eb
BLAKE2b-256 1ad63aa6f7d3473e2757a4cd8b192062eb9af0570a3243e4cdb2377947471f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5378c50e31e856b1c42b547e704c3cdbbffeaef6fb1b242587a6e5c82c624dd3
MD5 d623649c773ee06cf8fe87d3fa9ef953
BLAKE2b-256 8098c7830ce72229161752f4d55d7913ea5662ea15a600b50fba2c9339ecc9c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c71a601ae813bac85976aedb9c375607154b5345a6a6cef0227268fadab972b7
MD5 60af931c9f1c5ed6f207edb8f4e2e2ad
BLAKE2b-256 b31d89e0835783ded616b352040c0a2c9b70fd88467ff39ba1e5d29264b56f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25c8c9519e644c24a57bce51a0d350b9a8b4502e5a8367571d1b5a5d53f5f5b5
MD5 ee9d95b7a9f9f519129fb817440dd33b
BLAKE2b-256 2e0d286945182fb7b68f3f7409e39336576403484f0745a3a2dc11dbcb29d854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87e00a2ab2880fc9f166d91535f644ea899d20ce8387822051aa64f9ff55c7d9
MD5 b01800391ff4bfbdd8a2486e691710e2
BLAKE2b-256 0d903fc39c7942fb414b947b7e2a530a800ea2375a00c9e2310186fc5c167820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a7189a1ef616581c4be888abe60fde78acfe06a85a367705fd32036c2e0d687
MD5 f8a809d0e3a8cef5728e56633ac2f7e3
BLAKE2b-256 e212e3388ce8eabf8e38a15435ae8f7e7601de162f2c4145a59d72eb8bd651b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8228d45007305a77c25a51cac14b843102cfc404213a092a3f72626de5ca13ac
MD5 b50471d6d7a86ac973ad80aceffa220f
BLAKE2b-256 557716e88eea8206aaecbafe01c591e74252feaacc8f2705b043681893940fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9d1fcbf5b6294adcdaaac83b503876041d5d82a79b45b9013b58fec00fea51e
MD5 33b3cb71e318956f55bc59c41f70652f
BLAKE2b-256 766f2193d26330ea6b296930812d0700f250c3b5baed72eb9714c1a31724106c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b3ae33ff4ab814446d7a1e457c004e2458def7d70e0148643afffba73dcccc9
MD5 93ba3b88b8708e8055dc2f9c05cd867a
BLAKE2b-256 70e1557fd87abcbd046fc5d7c2a6b7cb3ff5ac23dde183faae534c1255170cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f11f71799708c5e152be170ef1e0300e5eb42c3d0c615f8e2d253f2bfc160e0
MD5 2df265811e75c86558ec2ebbfe7a3d24
BLAKE2b-256 8d6d345e41fa20b4af681cd7b13ef93906ac3cfe676c584ccca0f9725cf33f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c2cd7228928bc91cd5f79b6c053f55ab05722cda20be8fe1637ea2c8f9538ef
MD5 74ab146b75cb06e1711acb5902659df3
BLAKE2b-256 de99856f68a50fd5f4fcfa1980115fb1389dce3e9e5ad82e0bb34e7a1e31be74

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