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
    
  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.1.tar.gz (17.1 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (798.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (846.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (850.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (821.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (655.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (585.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (666.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (800.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (848.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (851.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (823.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (657.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (641.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (800.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (848.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (851.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (823.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (657.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (786.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (642.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (666.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (798.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (845.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (850.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (821.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (657.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (785.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp313-cp313-win_amd64.whl (466.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfaup_rs-0.1.1-cp313-cp313-win32.whl (471.8 kB view details)

Uploaded CPython 3.13Windows x86

pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (798.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (846.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (850.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (821.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (656.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (785.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (666.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (605.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfaup_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (593.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyfaup_rs-0.1.1-cp312-cp312-win_amd64.whl (466.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (798.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (846.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (850.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (821.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (656.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (666.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (604.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfaup_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyfaup_rs-0.1.1-cp311-cp311-win_amd64.whl (465.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (798.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (846.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (850.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (821.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (655.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (785.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (666.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (606.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfaup_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyfaup_rs-0.1.1-cp310-cp310-win_amd64.whl (466.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (798.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (846.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (850.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (821.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (655.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (785.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (586.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (666.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp39-cp39-win_amd64.whl (467.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (800.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (848.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (851.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (823.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (634.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (657.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (785.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (642.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (668.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (800.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (848.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (851.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (823.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (657.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (787.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (587.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (642.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (668.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pyfaup_rs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3f75c20ee6b3992d14f4752f787b1b9a518c4454963c70b8271beabbe5b44643
MD5 b47b2da3b1cb0007485fa8daa165bdd6
BLAKE2b-256 101ab4dd1081d831788ca0c27ba870353890012cfce99849401d3d6346ba3839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b3042b1635e988f568c1812fa87ae3d9a7c89297099a7542707d3a9452dc7c2
MD5 41ae06613cbb87ff4eb369b3bef084cf
BLAKE2b-256 6244e0a8557ad1e4e86649fb8a198eb36b5ab19033f9b78927a01026c5bf12ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58d06cb7d5a95ce622d3c84dba45e069a9961aa9827449c3325691e96c84d0ca
MD5 36a672216b44a5bf95d91f51f1658035
BLAKE2b-256 4b8d2147e94585a03c76e7a2e1f1d1ca17495011bf72609da812b2e3416ef9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d0ed50b2992da91ad4a41aa216c3be0ca3f100c2fb7b0a7b44b57832cc41bd9
MD5 45059aa291ba45d1b2e07843d173dc0b
BLAKE2b-256 0455c91b787c0493c76847e7d10e665d323d923163a4a3e62d0b41b2728c7e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f8715614ba45753e7f42dfecbf262f0db481f24d4c2b9ae197a6b79c39df40b
MD5 92722fb7e2581f02a8ce2b008ce728e9
BLAKE2b-256 355e31820a1925eb7e8916ddba2ae709cec33c148a5a610374d1382921deae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a27170890ebb1ad6290e7195c239390d8bf529d19c73da5553c118b608efc559
MD5 ec87092e123e00a67b6dd668c209424e
BLAKE2b-256 be7e5b1bf60defe18ec17c379f2ccb1b6831745a3eee8b81e04e7d420ab12f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9c8d3d1e51e3c8d3e3af1e3313f24392cf4c96c05c39764be1f2c974fc88786
MD5 9a4eea67a65b81cb74a15bb51fe241ee
BLAKE2b-256 bc2a90b7c078784c2bec7ccfd5bbba12fdb7f3000779a0cba068cbde71fc531d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1b44f59fdc18eea9c5f5722a0211ceb62117ea47459a87a92049220c096b80c
MD5 302694784f10bfcb51bfc4805304158a
BLAKE2b-256 c456c643b0c6002ee27d6fefc0e79013045a935eeaee4bcb7c9cef75043f57d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53d8d6970eacd917ead8b72f53133d5751031db322513069d378e6fb46f6738e
MD5 333d8a81c38c07be1e24c201fa025a5f
BLAKE2b-256 ee2e3cb0b7af62271d6cebf956fdb2e3cf3f7cd9868b7d2d9059dc51999b2c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12bebe8fdfe88d4b79334292e7ab5eaeb8f44884f3130cc70eb7251e8962dfc3
MD5 12e29c1f0d453efeafc6e9328421503f
BLAKE2b-256 7f387edc395ae7649c924b9e116c824cdab908998532a6d9ed62b31081fc702f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a32fc807cef0383549ab2a5f2ab8a52410fad9ee4e917ac2e65c7be81c668dfd
MD5 e1cd27cb46cd6fe9400f061fbc74ef69
BLAKE2b-256 0bd219a47c7c71fb35035ace55db4f39e17a15e9b22d6caa11b47f7ddff17354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0f5fa8cd0048063aafaaec1068d6358903cfc979d924e87067e3f45f60df8bf
MD5 574e8081a2e69ffbab62c463ebabc417
BLAKE2b-256 47c8d573b4f3d7561f37a67a0b3eb0f028ebefb183f0f92440de60c1b207cd8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a824386811a9989c7b09794e0a6af1360ed18a90d467fac5ba2afb6ee36ee91
MD5 bd3698429b6a0af50289a6931ad1ad00
BLAKE2b-256 9cd70349bb5cd1ba44dfe750063a10a1f509ba42de74246d4741699019f2fd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf80801ca1214d20329e3f3c91d5179f474f5e2cd3649b3bee2041fdd00eb04b
MD5 5a4aef17851c0c57fa845e157c5221c9
BLAKE2b-256 e84d44831d52ea9a32f3dc3e13c07e303a824d1429740bf9f5a37ae5cefc4d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10bab6a207da1fd747f2ddbdb2ebf8c535e5e0fc5b1040c02a625540bb1c5a9f
MD5 eb215ab6e77c7a0144e02acf55e6177f
BLAKE2b-256 86b362afb8a1daa351d8529fc28a8501d0fe51c13617e16b83deaaa9bb51c688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cddc683431dae2e8d6e8f7488d3730e45127a4961a37ec0c6bc1bc1da5502b5
MD5 7d0f133f23e009af4285b3e9b8c12c47
BLAKE2b-256 c9a675b5ed7e5509ae7ca37aad4286ed6fc95611c86cdd6827f3df5e5943d143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7fb2013b847bc56598de9c0c0d2d00cb0f3df2f728175496f801527bbd5947f
MD5 04fbd87b97e5bbbe55729f35e5e5a39b
BLAKE2b-256 028c79d25f34daefd6ec32cd6d50b838db9e121c8d85d6dd8a38ed3fe58a661b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2b0ee35be6c44470c513c5a7ad6337a8e4567b84fb9e54242c9eb626c8dc33f
MD5 29d5ef49e2074c19b313d6c3269ae506
BLAKE2b-256 3bbe31e0cf83355d4e35ef02eaeb3b5484bae3bf689b8b37364d43043211b957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7426254169a48a6e11938a828e2531a967048a994ebd895b5ba3194d8dba945
MD5 6ddfcc107c69d69c4545735e278bf036
BLAKE2b-256 a2867283a4b548b5ddc427edf11aca909e06561cd59315260a53c5bee107ae17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bde8a009b9f2b6c2b2ea753c9b0df92dbee489737adbb35c97ee3da12934131
MD5 cdedcf6d0b2ddeeee459c636e865acfd
BLAKE2b-256 0734bd90153c88e5945b78ae88ae2af5f82e7fe2639ba80fb67d12d71d71f895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c45a4387d9fb1edd6c51cdef8bc07592b50c00873c3f74262282b42885e30e80
MD5 81c8073b824d7aba60d152bfa2101df6
BLAKE2b-256 bf55cce9da53834a67182307c551a3ab9e133e02d5b90bd4ae4e5e865bc63276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d290dc40df8ae358b37f4e8acb7d55967eda4b6f4e85459acf35c4e56eb3012b
MD5 0a3703bf16385f26d87ea4d4e1921063
BLAKE2b-256 8faee3f632f06f1eff8c58d66aeb46c50cfbeb8f36b90b1462015ee0ae7c1238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48523614028a8ee1b36168875546979ec9be9c10075ac55c6ef774f5e3f23ee8
MD5 045b807af729f2628171e22fbac2e205
BLAKE2b-256 daa34c81162155bb8f9753810267c4071779d5f92f58834c52556fc2fc320727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7150ad73b5a53f9c738b4e2a1c97819a777b1994a15ca258dd00bd4fd337efd3
MD5 093df70c5ce1fd6ee06c6769c955a4f9
BLAKE2b-256 97179a41df595c6891c07b3f2611bf79a1abeed0d200b413fd13758b8cc5a86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66190131579fdfb7e57901acd5305497c461f7503f6a5e5cad5bea6a5a45f217
MD5 e078daf4217965142abe8ea6b2af3b78
BLAKE2b-256 d35e7b7d02c21ef0445381e2ef69064094b07b73931398627340116309431d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 113395f71e0cee49ccc81479e2bc08fd7bca35bf704f6e61a37959038b029792
MD5 d892da427b254723a10da65645f63be0
BLAKE2b-256 8d7a0d4258659582f6b04782cfa71da7f1806979eefef76c44a955cfd382fbdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daff3b14e756acb21d5417f93357e3dc79038b9b4f5ada2bc16df22e9e05474f
MD5 a4827346100cd68b6a001068d57c004e
BLAKE2b-256 741545738c9a33dd3454e21e676a5255307c317bd2069195aed1d36132763059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33a23e234e89a7aa17cc281f3dcc599149487a04055ec5f26f6d153e9ce98ff1
MD5 42ac4a6186cfc1315c42efb08e15cf0e
BLAKE2b-256 1f16db70598d9a384ee6a34217632e66ba5b48a317c1eb23d48af75b3552b62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57d5be2c11fdaf53421ce2bd39f9f3e0fb44d77b8b6cbcd79a4e99ac8ecfb50d
MD5 ee756996f5a324003952c020b329fd94
BLAKE2b-256 8c952060124ee93edc868d96768b85773249edb13520eab4f3901e5a03ab50b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc2e4979eb2b84a62ae50226b8594664f50126cad4c7ab94266c3a7d536a3af9
MD5 95c24ae9e93bb7dd971496ee51747b7c
BLAKE2b-256 e0b50662a57ee5bf1af4045aea03cfcfd3edece0c3d21a6b0863e63373ec6d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5b114035afa95d7d4f1f46d1a26f300f997daefdb058e6095214e4f32fc5e6a
MD5 d07c5b5ce66f800761e223d7401b7536
BLAKE2b-256 f87570886502a56853c2024fcdadddf92541bb4d6239230c4cfad55ba466fa14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d04a284529545902f9b587c825e100953b6a74c1a78bbac5cd6d707fa0b67c23
MD5 8d681dd71f897cc15965be211e93d7b0
BLAKE2b-256 26c59dd63344c9e179bfe5a2235a4802d6c0bd1da930e0e210e8fb372bc43073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d324bba323ab071a233064cfe691567ea04e5a9bcf261f110e35e508dc67c23c
MD5 371003df52d0e6b0928c7ebb71c618e2
BLAKE2b-256 2f4fab90042815e46a801f6531723735090cb76941fa81df610bcfcd530be08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfba643a43185720e9600781a085d62daf7cc7dacde9d228bc3692f812eb6914
MD5 449fa8872bc1d2dbee3fdefab5d0c244
BLAKE2b-256 2847817e9da56f810368f94ada5d60ea29cfee62790b00300a4113a841f54e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 783c10549591ce4485508596f6642187aaf32eb182fc7908f6b389127a265a21
MD5 b5780e582bffe5e81b7bf3c28776fedc
BLAKE2b-256 57d92f6904132bc2f5a88ce920f042973219b35a36e38a60ad94d592fde4efbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22a8a979bec3ea6b7351ceb7e553618327fe83c69ef770eb5bb926c073b0b4bd
MD5 23aa813eaadff521cd8cf524dd85fbc0
BLAKE2b-256 9feb25589d8130137a34b10992ef536f99d90bd7f2ceca99ba51b1ecd6738981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f12fb04d1cdaabab916fd8ab52d4c962cf5b8c7de6d01f7b94047e45a7ef0903
MD5 40b65618a5044651f7f2434173ed5938
BLAKE2b-256 69e2cdd20f0edb4a3d36ec10acb0afce28b8d399fde7df57d96ed76cd21ce8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d664fd28504bf6d59a71388eae32b7d020def6857948a2ff2e6bb4c04406e18
MD5 3056fa63259b2d02697363713de79314
BLAKE2b-256 d43f3736395d193aea55fc34e3c366545268fa6ee4ab45cb91506fc8f679847c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7fe4a0b0f2ebb3ce237360cb9e8abb126926c1c79c7310c4ae1b313dcf14b07f
MD5 6bb2129f8cb6a9988c9b0bd65da94c4a
BLAKE2b-256 907ff92a172071e0b63f4647a37727878695ed2cc391ea06cc87f2c29b09295a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a1bc22afac303bb7aad87461b9db1513b8a7f90778cb7da50f0373068e9aa4a
MD5 ab454e3bf26ef1e9c3d73eeefcfb04ba
BLAKE2b-256 a0b036c06ff9406d07bc95736b51fcb54c79289a15ccf7f02ed91c5eeca57924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23bc2f8f2c14cbad64c4a47f30c126bca409ff5d28f2beb0f7626f9e45ad3155
MD5 a1198bb3bb30efe72f48c29759008dac
BLAKE2b-256 10be4347c4a0bb87d54a295902b667f7df2d6326cff2f460c99e3ba5749f7829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bfaabd99f62d44eaf8b3c4f2f5250e7c3d47d2e5d73bf495a57e167bef3c405
MD5 4e455b2295cba493b5d9855f8fd91ec6
BLAKE2b-256 0fd8e75852a8ce44ffc7384c62a9a96eb5d08503cdedaaedfb9eb777de7b636e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3050ac7c2d17aea91fa9a842c61aad0b0c63b9b1bb4bad25403662db48f5253
MD5 f52d99cce57b74798e3869ec375d00c2
BLAKE2b-256 d8fabf656697387d5f1dfbf115487b31a4028dc38657b8f474c50b9ef6b5fd00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6babe1bc6dc1f25a43364324a531a9e2933e24d94bba9464dfa58f1c0e27e1bb
MD5 0216eaa1df2ae2e5576dae7561e020bf
BLAKE2b-256 ed0eed8e3b691e9db3822d4709a1ddea67db994dc35ff58df77d540dacd53a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6ea5416c6c3aa8242fbed51babbb49da48e146912a7364d628a9b1a28518d46
MD5 7e1fbf3b62358842d7fbb461d875b536
BLAKE2b-256 1e2a4b944a0d7de4ecb25f33d524aee7b416beaeeb435b5ab84a697e51088311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f28998c2a8937264b6641efdcc08c95c72ac74f6630ba9f01c1c678ee265580a
MD5 1c7b3fbe0751493f741c3bacf6247d44
BLAKE2b-256 324fa31c22499e90736431a7ba4cc3000410e06f4e239ec27b9cf038fe681b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2734952a0228fa9964e7a0059e11914ab1bd369408fc904e367032993552e0f
MD5 2365f719e96d33d63b3516cf044f0f93
BLAKE2b-256 07519a9e890b444903ebf9029252e4de67141c137e620d8bb2432d60d9fa7d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c158adb6edc7d20d49843a0f7473c88819346e242f5d2488f55fb2e627d2d538
MD5 e2a1bfb6f943d90a5228517e3631bf17
BLAKE2b-256 23c198df84b8e1beaa1307fc782417ad3c6e1ade279bad2984f997ab3fea25f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1af5a869f28f315707bd8611b2a722852d2a739b909b005d1ffbd910a2e8dc03
MD5 f3b12040d77c96b40eed20dd013ccf36
BLAKE2b-256 58d6ba8a7639e5b079db050b5dc7311fbe08e8f79a62e15559701a193129feb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 424c3a079eaaf78c57ad8a77c40a88b91c9f1517218cc8aa266dc854558a7137
MD5 09e36a509e2412e45c61fa4294e3b529
BLAKE2b-256 4fb7bc589c9170a501a830b8f580756e7329b95af0d3c8451f6e4be6db36ce1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd9b88fe4e049305cbd9898af9d5eb8acdb35df50c634f6739e6cb6a8cc6e785
MD5 5d977be24cd0dc9096d7a3ee26e27a57
BLAKE2b-256 d41c07bd77dfe33380d799b0be3f762ec5c43907697777fe1c17378bf4e01cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f35d8456b8be04fd22e35d5d3ca2408ec9c9bebae15ae597f2a8f3d74ff1a1b
MD5 9cb9080be427aa66986de0c5473cc53e
BLAKE2b-256 b605dc15c1d23458ae3260a0eab48eb496acad1ea2c73ca71eeb5d317f2a528e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f9faafc6eafa8b02a426415cf3512a298fe173f9260571947dbe181fd09dec7
MD5 619faca6e9a183d38aa5aec40c414226
BLAKE2b-256 51d715e22cdfcf63758b4d22e7b876aad05b7992ee9abf9cbeb376bb364848e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a61d72c893c61726e07b3c7f867b88119d1ec3cb0cffa54cd16907dcc582d13
MD5 e31a4f866f26590a5993f07798978cb2
BLAKE2b-256 a71427521560baf84b90ab7b1544e4ccd67fb6f5b49e03b401fb968f1bc3fb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25ba9aff0a6264fc712bb824416d494bdb1229c51ce179ad0a2f7c7460a3231a
MD5 74bb5eaa6aad27e976bdd379455dc7c5
BLAKE2b-256 cdcd12638556242fa54b3a1e572cc1bcd6ca79e6f1e8fca9898bb6d2ccd4e9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da2401b5f39e8f00dba8f6c95b8a7df2eb7ad167352b93c094fd81533cbff13f
MD5 ade23e184c50440aba9e54607fbbc15f
BLAKE2b-256 56d8c78ec3a3c6b048e178886214dc1f451a6e38268ad092dd44099b4858966c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46ac346f71f1d998c6cca100821ffef6d6babf8d17b723adb6ddf644c822e3fc
MD5 b468db4dab331927179db518502b0521
BLAKE2b-256 f37449333bd52912dea0a5aefaa5678f05f8d6c672d126f8dc999478fbc2e97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 332eb41f410afaa8222f7afba5253aa984893d8fd4a471691d4be339ee323daf
MD5 767d7df5c5d8cdea173407692e148aba
BLAKE2b-256 dac32cd829183cb7502d0d8b519b7b556267def7a9670b3bf122291b776ec44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8519dd362e4c4da0725b700c97e46bebdcaa7a5e9b66c5dec68d3ebfcc6d3deb
MD5 a772c24602abe2e9047ea34b95e730aa
BLAKE2b-256 69cac75dc6560874f525722618fcba1df89222d22c1acaf84b8339daad61a88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 404b61043cc5303a91bb7d50adb3dff5b1420b3bdfc39742c6821648a7e81176
MD5 939b6f3a093338fcdb9a12482ae7f99a
BLAKE2b-256 deedeab04f96712c096ffaa7478fff7589db88d005686d6d079482f020b9f640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a743dc189da7858dbc2b2ce1a135e47af2bd03ed9411c94f9bc86e49f1e5d690
MD5 4798cd957b7b48c62bb2edac59600e6e
BLAKE2b-256 7a709bdde55b9b57419f41d4ed643fb9db989fcdf84fe4ca88ea3237fccc45e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3077c97371189eb7255068e1f9ca013b571ea1d76b9d948f39a430de3a42769
MD5 7f02a07f09aea40688e25d0b03543e21
BLAKE2b-256 4ccc35b563d7fefbad6985d532833c1eb3365171fbd9ba0f463b77b6b4ac4877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa1c2464c7a2a7ffe1ae1d9f87c43ecac936c4685826fc0f4465f84855450e37
MD5 fef58c6c9d2f939cbefea998499c52d1
BLAKE2b-256 86e2cd19b039440419eaa1a1b8a057d488a67e93f8dd6c6fd48c4a3dfb9e5572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9535d227471eacd6e6213b895661dba5e8035fec2a4815a20493c07e3c917a89
MD5 a17ee08841af285478bc5070d7f21f0e
BLAKE2b-256 1038ea10d0565265cceec57a9abdeca570a089c681dbd2a0dfb30d572460d25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dfa6b64f5069cdef19b3b7ce24c4e31ee07f1eb880c0418f94eafb02cc9e1a4
MD5 5b801b631e6be1cd2aff1600e5b4f5e9
BLAKE2b-256 778ef4330ffd6c856fe9e24a497fc8313f2cc4da2c6b54262bd2bbbc34ebac27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 698a9996e41d23e2a62f47f9c4f455afc878cdaf5c0f966115adbeb4219ddb28
MD5 6068d621994f0ae9a47c2846e376f44f
BLAKE2b-256 d79bdc7e92c7ed3c559a20c60b0769f91e9779944c9e770a7f15c662cb1087c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1077fd2ba30c9978fb19021117be0a6c4b017a2b846fce3b508606bd9e044f9
MD5 da450b4f72228f4a12f648cd6db5aa00
BLAKE2b-256 e874f2f07fc30b992c5f72ebae9c494b601719ed698d77459c3944754eb01187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 300756c8ea51599a30f05e7b2094a54669cc76dde07df9992651b8e4d701c5e6
MD5 c42906cd5360e01671ebfcf97c108867
BLAKE2b-256 70761e4e5103138887b1dc2b342c484d7db9608a2c500b01b1caeba9a2e8730e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2dd51eb4c5a9720e3ed00b02c661e47b9488818fc867e044dadf34ff99850c9
MD5 1219154a05d604718efb242a97281ec9
BLAKE2b-256 dcb37907e3776ad5fe9b2e49d4e096c9cf6544b5c0b14218f23d54f05eaa9223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bf559c612ee556a8cd71a928db81a333879cc9852afbdb911a820836cae283b
MD5 3aacc11efd3c37763c8cec1eac7f67af
BLAKE2b-256 f034ab5c2d0de275cca0cda36482cf8f2dacfc3798ec5a970935c803958776b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58e4f1af17d816fd07db0f25055ca79c8ab886108978da6d68ab038ba4242c9b
MD5 37120825db2258f37525db6fb345d4c0
BLAKE2b-256 afb6dcf8726cf9f7f310973d554d9c91b162a07fe058d19097149b7ef01ae2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f81cabed0e8f32894805d73cb5e3a861fd0f8047152e9f4c03dad6811b18952
MD5 237dbf2567417b29891d730e06f06438
BLAKE2b-256 f2b1bc6be403398ce676b4c6abc1d640158e2534ae09e5c9ad971004ee0d6164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d183c0c3c067cc7f1d85710636e900c50cfa6cf60e1594d4b8b9e91fb71fe8ff
MD5 a9a01cf7cd4615c787ecff8df07cea73
BLAKE2b-256 062818c2f69ea71c6679ec3ececc4d2fd8708c84252e9f61090097b100196fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc10d36f98fe2300b75bd301ca720bd2c465acdae7d85b98013fce3c1bf40185
MD5 7c4f6b23e602d820585d66da9d731cfa
BLAKE2b-256 42647c3ec319b8c0dd14e0f43a944d1568fc7b02fc22aebe7de9a3135137710b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a32a3b1d0904eb611e33b34451666589f6a671c63a487b951f647c8e7a6092d3
MD5 dbc622d73616bffe27f26bf367ccea4c
BLAKE2b-256 e234ba3b7381412c635c08482ff1f33b1d811cb784e3b9e229d197b068d24f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4323230336cab0885a2ff2490622eb09868a4263758595d370ad5b6dd2508a54
MD5 b58fa1504bd67641b18362ca5287c591
BLAKE2b-256 e6d0da7b00709520731bf447de6ac4cf854f7c562fe4aae21007850b66345a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34696292f928a7d8197e9c291d10ef5d4afb4da2de12cca17b6b88916599abca
MD5 b2f25ff2aa35f05e17a63d32cb80f2d4
BLAKE2b-256 b6064c09175f8a5381a85240c871768c5dbf98d3b9986cee91eb3dbecfb7ac71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1927e387764d9817baae628563d8238776175093241ae2384d51a7b928df5b15
MD5 a21d77a2f653e5054275005aeef1eb29
BLAKE2b-256 90761e6ed76382db618c7ae198843b3ccaf8ca1d6870831df1760849cc3b4e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 528e75ee7f44269ee78f56d8a8c077fe5caa0376a6ab499133650204fe40afb4
MD5 79e1cfb5e760090bac96f39a9b7dc2d9
BLAKE2b-256 d33fabdad331067425fcdbecebe5053059b821b05abe60a266eadc3d6fd3898a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca8ff189d7ac9d800c3740ffa6151cff8d511dcef7c030aac0daab5cc5d560c3
MD5 aea999333683d991a8d38cff9433be4d
BLAKE2b-256 ad4ecc302b34ffed6deffe2d96fa4c2a00ad034d6ce8c7bf3dd3352ac1d09576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a024de2ce4c51710844c961a7457f63d97b860c4fc3d0b680f40c269ad23b7e
MD5 09520726657ea9cb852666c990efc0de
BLAKE2b-256 eb5784eb93ecbb3409c9d52d08f3b9e5af60a5c232782015d4389c0aa65105bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 792f58493b19be723d50cc40c7249351932a7c04301fe073bf427d1eef9ce12c
MD5 c177bc76e5dcce4d0f5ca1c04193914b
BLAKE2b-256 33b3d600a5a2af8b1bf46b6b86b9f73e2348ab21436987d426d3936e23ab16cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bbdc0ecfa3253bae2e8186e3fd5c11712c1690faa17ff7b8dd8689a44696bf2
MD5 5fa6af26bd105af3249ab6921154e243
BLAKE2b-256 6e1d7d77af2c59d7b731c6ab191cf7c017a4e89b7d5c3d67832a2480ff002fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15baae79b58ace2608868ef63c7e3172c4a4eca6a6f85a755e13f5ee568d383a
MD5 4cda1cfcb66942b3050038507ea5a7bc
BLAKE2b-256 3ed2a5c8f1f117d025ad35aa3a54ca6b3fbf954ffb4e8ebd43508e3bec5b82eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 771a013a7f13640274b9bbe174f228cdb57d55c7699bd8e0923830848ff13122
MD5 49476c4865483da289407f79338a0dd3
BLAKE2b-256 4912d1f24d6f46ffa03d7da5e60d785bc8f37b9769325f628b67f8d4dae9e0d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bd02e6742e823033817491b5569d9def59d0ac93f22b76f513fb8dc78db70e6
MD5 8f95217ce74c1a8ad0d9eaf89f176643
BLAKE2b-256 6597231abd1774684e2135ffad9d0f8bce63ff71131f184b1d3519500ef059c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e8c880fe10c6b8d2f51f985c3ce611fa14912b6f64a856c96bf3db9d42999a5
MD5 2142e114bf4a7b8ff355b5dba24e3278
BLAKE2b-256 ff259dd26afca5b381bbe163145c495e9386d66df5942fc2bf6ed4c887dcb694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 98c925e88bf8d2f15667e68cd24c114e81d4e9a80dd09510b7b535ce1e97d0e7
MD5 a4d0960e68fb5b1b8e14c8e0b7de8cc4
BLAKE2b-256 3ae8ad2c929c96d35c40cdcdee4224ee4dbac1d33b0babcf22e5f9a027c4ca00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 64cf1385c9dca0395a64414178bfdcba831e97aa4afd8ff481fcfec94e3f81fc
MD5 6be18bc7560290db90f7da75df6caebf
BLAKE2b-256 bb737e6fea7ba66548be30943b51aa2592bab2a5e0a123a242e5fb9c3315d4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 675bccd98059dd310aee9c244e9567d824ac7dd997f93255a3851ce665676109
MD5 b10eb5d5e0a7287dabbbd9389344892e
BLAKE2b-256 352038d3f8184a3e8e5cf28d51329a78914496f5abefa7475762b0175a82230e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b730ab9a2a1c770804b5bf67837fbaf9bb6ff7eb880c3da2c2bbd4ee4b40cdf
MD5 03bb1411eca3e99642706206decbdc4f
BLAKE2b-256 192f3c306cc5f8f54fce762a70ac6e03deb3249a264828f0fd44bb5c304cf028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8dff81adfeeee673813d159e2c5b797a151bc5195846bbbe06f0a4054705344d
MD5 dd5ea9df77a895edab1c013e1846121a
BLAKE2b-256 9cc7c6a04a78e85b47fa2d7154d9a758192d9cf5084b032778e0616b6e6d19ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dadc72ff67f8650b53b1d9158476b40f101ff4b7fcc43dba2b77f8406498d1de
MD5 bfe5a169007743666762f8dc978f01d8
BLAKE2b-256 bb1ac2eefe8f1db7331ee61baa5c52f8d7493bb121e38700c94d4b6eb3eaefc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dedbba9f57ce75d798602b07a1c8aa4a1287ff3c90001e2e3a06c8a8fbda74cb
MD5 8e2814de3f5c0cf9656ba61e73f0a400
BLAKE2b-256 5a10fb573fc0d5daa8608c31570f4f5886613faef5b576512a67648a12a71912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c1e243460c01919c9bcf00253478c066ebf7a615db8df53e75aea9b3cd694d2
MD5 a6b273f8d3598b8c013dc97b61ee2ef6
BLAKE2b-256 017bb6b901ca6ea0098a34d50ec278a8cb5c34df6ac06d5d2a869d62cedcf7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cf5c6ce890298e39adb3e470581380d9287ef171cfa5d0f417d5aa704fd8d3a
MD5 aa292d7f6d3a40107807cf516db7d5f9
BLAKE2b-256 b4eed22b044545e934b5c4a187072fd4eab966a7f86d24ea2027c30a04794988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97baeb41818d760eb4bf9ff5aafa4f5b3511d67a28af6c7d1377bd9c366768cd
MD5 69df97814b975e19bc8cfc2b7cb3bc59
BLAKE2b-256 944f0751594f606709b9b650124f971471ce50bd60f76a4ba75ee0458fb0fa9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bec2a02d154ce7175b7a02d625a6bcc67613daf79a293abd984c66ec158b968b
MD5 1ecf04f4ba4757c40efb73bc6307de2b
BLAKE2b-256 b5fcb1975647f0ef2d10a545f2055ef88156c0b2ddea6894fcc370ae59052bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3be3aa8eb6bd2ff63cfd152946955f249ed9d6cc7d42f57dde6ad35b0c37684c
MD5 dd66067cf6207a1a1d7ea0c372a58859
BLAKE2b-256 cb59338c5c48b1eb88d669948fa1b6aca229f96db678125ae511b23253388b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe4bc452551efa3bf5c49c69d0d47a112cb93fbacf8a0cb14a34eae1d82a4ec8
MD5 86e3fe6eae149d5c41f3e1c2670f85e5
BLAKE2b-256 ec2813100286042e6506d630d8da4d7b0c7b160a2fa3bdb0ae39acd146bcb19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09c018bfce1ec7ad7917c3ba989558b5ce0849e12c081d6b4947ef75966622e3
MD5 f42fc82ffada87f8325407d6793d93c0
BLAKE2b-256 ec04116085d5dd9fd1ab736afc2b68a5006ee67e12176f8ee40719e95250b07f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90ddc5e3f2d38db4a6905aaedf19423911df78fe61a85659fe6b2c9f2b9c6976
MD5 b9e7fc68aed636e63b7e17919751a8b4
BLAKE2b-256 8420cc38c2822cefa561c1a5c89bdde65838e8aa313f8442cc571f1b1deaff5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c3a5fc04493156d080e7a035b6f37cca057455fe97e77cda389ee1b229d9735
MD5 4dc80f5ca3867efceadc3cd326036555
BLAKE2b-256 5b4db11f13ffa5627f5e25b65b0fcbfc421517635a910db916d6010a9fa4681d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e20f4a30bc4ea8813b5bb306b5b71ffede2fe1ca3a16d7545bea220de3d838ff
MD5 d5d5fc54baa9814343406e8a26c942f6
BLAKE2b-256 0f573110ac38f6b8e993317d59480c6d4e82c105de34e3b5666f0ac9e0e37d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5d186c25edbc7383285f3610d080b1d767a1bc3e85c4c2154d3f4fc990e46e0
MD5 069d7ab665dce635aaadb855a78eb021
BLAKE2b-256 e232b60837e29ac237721d04c14f47b36c8be97eff3af37e2edea4128dc989bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a0107c9869b5d76df622dcf6cc3c995846664975dc8bbc086d79c9aacde6cfc
MD5 2172992cb285cacd8d5a402d2518c22c
BLAKE2b-256 0e66baba6dc7e27f4eed02e57624b1d859688322dd119e9ef29ebba3d916e27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ea465fa2e51cdcf0df1d18f8ea8f7f01f4e4a9880caf0d87de64e28ac2a9033
MD5 a072e40c03753efbb3e65c948ecad549
BLAKE2b-256 91c25cb1232f535f7f9954be6ead465db76d2e780db9c0bf7f365bc98eccbc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d04fc373a44c62f8cd8dce8be461686e073fddc13fa3104a8b94be7b0adba9c4
MD5 5ed0b7609416db66c174ada3d9316252
BLAKE2b-256 41eb0d5f3f2d4eaee6995f3bbae46d43612128a1a09cd549c147e7fa1b7815d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfaup_rs-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9835dbd044666dfc7b27531fc61349ade4236c9285a2f392b58f66f9dc7c4663
MD5 c2d855574c6ab128547f99c66f9d55ba
BLAKE2b-256 5cbb82221b169efa218892239cfd2d01f24925a19b3045e6a0d8e8f122f35d76

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