Skip to main content

Python bindings for the fatoora-rs library, providing ZATCA-compliant e-invoicing functionality.

Project description

fatoora Python bindings

This package wraps the fatoora-ffi shared library via cffi.

Development (uv)

uv venv
uv pip install -e .

Build a wheel (uv)

uv build --wheel

Wheels (CI)

  • GitHub Actions uses cibuildwheel to produce platform wheels in dist/ (wheel-only publishing).
  • See .github/workflows/python.yml for the build matrix.

Notes

  • The build step compiles fatoora-ffi with cargo build -p fatoora-ffi --release.
  • The shared library is bundled into the Python package.
  • ZATCA API responses are exposed via opaque handles with getters (no JSON payloads).
  • Errors are raised as typed exceptions mapped from FFI error codes (see FfiErrorKind).
  • For local dev without install, set FATOORA_FFI_PATH or build and use the repo target/ output.
  • If a fatoora_ffi.h header is present (from FATOORA_CBINDGEN=1 cargo build -p fatoora-ffi), the Python wrapper will load its declarations automatically. You can override the header with FATOORA_FFI_HEADER=/path/to/fatoora_ffi.h.

Examples

python examples/load_lib.py
python examples/invoice_basic.py
python examples/invoice_parse.py

Tests

uv pip install -e .[dev]
uv run pytest tests

High-level API

from fatoora import InvoiceBuilder, InvoiceSubType, InvoiceTypeKind, VatCategory

builder = InvoiceBuilder.new(
    invoice_type=InvoiceTypeKind.TAX,
    invoice_subtype=InvoiceSubType.SIMPLIFIED,
)
builder.set_id("INV-1")
builder.set_uuid("123e4567-e89b-12d3-a456-426614174000")
builder.set_issue_datetime("2024-01-01T12:30:00Z")
builder.set_currency("SAR")
builder.set_previous_invoice_hash("hash")
builder.set_invoice_counter(1)
builder.set_payment_means_code("10")
builder.set_vat_category(VatCategory.STANDARD)
builder.set_seller(
    name="Acme Inc",
    country_code="SAU",
    city="Riyadh",
    street="King Fahd",
    building_number="1234",
    postal_code="12222",
    vat_id="399999999900003",
)
builder.add_line_item(
    description="Item",
    quantity=1.0,
    unit_code="PCE",
    unit_price=100.0,
    vat_rate=15.0,
    vat_category=VatCategory.STANDARD,
)
invoice = builder.build()
print(invoice.xml())

set_issue_datetime expects a ZATCA ISO UTC timestamp string (YYYY-MM-DDTHH:MM:SSZ).

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

fatoora_rs-0.1.3-cp313-cp313-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86-64

fatoora_rs-0.1.3-cp313-cp313-win32.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86

fatoora_rs-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fatoora_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fatoora_rs-0.1.3-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

fatoora_rs-0.1.3-cp312-cp312-win32.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86

fatoora_rs-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fatoora_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fatoora_rs-0.1.3-cp311-cp311-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11Windows x86-64

fatoora_rs-0.1.3-cp311-cp311-win32.whl (3.6 MB view details)

Uploaded CPython 3.11Windows x86

fatoora_rs-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fatoora_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fatoora_rs-0.1.3-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

fatoora_rs-0.1.3-cp310-cp310-win32.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86

fatoora_rs-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fatoora_rs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fatoora_rs-0.1.3-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86-64

fatoora_rs-0.1.3-cp39-cp39-win32.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86

fatoora_rs-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

fatoora_rs-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: fatoora_rs-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6f9e42dc85d01cfb8825f77e6105cedb2e38a5c07701c8286600a9aad9224f0b
MD5 271ac810f35e1afc0145f76c3d09bc22
BLAKE2b-256 913d6947784bd11dcc9d3cf78f9858540ccde5ca42af7ffa0a433ae90f30b39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c01e3d6b1425be068431bf7c7a2d39f3bdd609257efe9860ddc209dd2cd15c5
MD5 de1d962394e463a2efa5892c4955566f
BLAKE2b-256 56a3ace6c323bbf357bf1d69f81b4da9856c8ada27daeb1ffd0925c14213bd2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp313-cp313-win32.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04628608757abeb8b7c5d3cffa54366ccdac23f33a0648733f5381983d6daad6
MD5 d01c0a04702cb0c42bd6577676cf4bc8
BLAKE2b-256 8f9e967ecf9fa73e6ae9c7d322b30d56e841b385b3460198b3ecce4872a07d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e314c07977760d6ad1575fa9cee34c9683140d9ab6033d9c66f377de4c5f21a6
MD5 ce38ff8a4d04459c3f189b4e1d597f7b
BLAKE2b-256 fb8fafa6d7c827d50c42074b68fac34d3d81414fd19c80e7ded503cce46156ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: fatoora_rs-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45420e5deb4af90aaedf3bdf7c3395f404a1fd0074f676df56a42b2453ef2375
MD5 9f34638a9872a90d36fda95019eacbf6
BLAKE2b-256 14fc5c3bd2a1a34bb1b13ff6129237c8959fb501dcb83a2dcc1ff58bbb1451f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 70947fb49a4299e3959aa613bc8b6c21282c3e880649eb040520322cc37cab7d
MD5 cdadc291d1b45c3381ac3499edfa7da1
BLAKE2b-256 54eb4d8d6c67574964188a7e75f17eb41b5f2815913715d8fd0f8e2cfce1416e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp312-cp312-win32.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71b6fdf9088968da57f691780b3c868d7e32662372262ef36e771f2ef05fc4a8
MD5 bb53ac52a6cf3bf852e9c8d5b2dab233
BLAKE2b-256 a957d54139984eef95503d5dafd81a708d0bb768c1a97ae3d8927022baf42b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a0bf0a90e22c92092d6c39ebf1081d00a03809d255a25f18a3a2f037e95e7d2
MD5 d779f3bd33e8471d5a74625527c3d23c
BLAKE2b-256 77dc24fc901c11e577b80778f2285ddf3d3f7ef9bd8ae47ba83d0025da5e30e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: fatoora_rs-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4409dc8976840d41f1b95fd2e6dd13832b516ac920331b270f724168522df912
MD5 8391e180836ec1cfb1d1ed0033d5efdc
BLAKE2b-256 67c11294d226964b728352500e65888b177e6cf005e4b4da2aacb4605f8e613b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f5a6ebf71fab59d001bf639faa5130db8b97cb7123bba501b33dd5a9cc70e44
MD5 f4af9c5920c5f180ae71e6ded71a0090
BLAKE2b-256 e87c04de98c18fb524606a474fd31fa60098c24a244edcb2cc3343aa2004956e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp311-cp311-win32.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c3ffda944d98d0f7e21d551a092270ad6cda65b2f5e844453e3337c3321ba2e
MD5 f910188bd0d4af7154a74955403899ff
BLAKE2b-256 5b2816505bed0b1567b0901ed612c9423ac52f3bf0cb1e8817805b22dc53b47d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6a515d9d687972f3c895385221b4d986a8ce974276d048d347192f386b8025a
MD5 a15246be62696d93186726491d77b4c6
BLAKE2b-256 e4be4de758cf4d5f5d6a6496f8f10ac917c886b817bba44d56093abd43e3b593

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: fatoora_rs-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28b29aac27145f55f2697de9f0d947eda294e09a67bd28da02e01861188f6f64
MD5 848a121a548e7b4b72b57a71536c9d0b
BLAKE2b-256 8f15bef21fbe742e9eca7bf28b5a11ca201264d2321f0248024d1332948177ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d54ef20c20cde84574b75e5968d68e5c375b43bd458c05979a126305c2858df6
MD5 258cca9d19e86480a1a3573a87e37301
BLAKE2b-256 76e4fb18edd49d02445d4de1679040fef578b43cb917302ac2dfa90af341b95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp310-cp310-win32.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab7b49292c3a6e4d542b9b47e02d033ac54ac42df7277a94dcf85bff636c8e35
MD5 d856bc5b291fd1b8acd4265aa7a73967
BLAKE2b-256 943a56982a35f683b792fc6a517d6051418d362f2e442cbc4b7ddda791ed7a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e82ab8581cdd9c54b9fcc3bcdcf908bfb47805c506aba192d362a8bb2dee2740
MD5 797def9638ac6a0fbc519d7c26b2b8d1
BLAKE2b-256 c68bbc60e85963bf16622e7d980e0c76e92554d0e6eb8c1d862df0005050c7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: fatoora_rs-0.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ed5c7d50aad4ba6a7373e304f18d8524239da049af0fe96da4c7f9f06a20497
MD5 c8aa742b15adb4765f6fc6df62f7acc8
BLAKE2b-256 d2daa08da70b820f0cb7667b18ecc96510b1f5fc034e588efb0cc7fee853140f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp39-cp39-win_amd64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatoora_rs-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7f0de0bdce551d04184953a9879697a1bdf53f1b67aba77f7d2a60bd76afd4ab
MD5 22d9df4030d0199038e23128b7a50a0d
BLAKE2b-256 fae0c56cf17d56a45ad008a2b37e699c43599b28c7d015330d17607bafddedc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp39-cp39-win32.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85f1550dff8c4676d9faa27bac7cc06931e71bc5608b3fee3e528651a294210a
MD5 ec0ed71dfe5bc52601f4a4a4df2a903b
BLAKE2b-256 cf6350e5e0ddeb93bffe26731c8b99e81f052fead0c25d3e5bcf9f49a46e878b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fatoora_rs-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8315aba7e6f20e1da61c97d3fcc765713f5a70fea8c48d2a4d0fd0e167039641
MD5 276bd3997a7fadc56116521f46b76fca
BLAKE2b-256 2e02a81f794ba6a791a484308af6e7520943ca52096195a785a3112b4b17b9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python.yml on mqqz/fatoora-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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