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.2-cp313-cp313-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

fatoora_rs-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

fatoora_rs-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

fatoora_rs-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

fatoora_rs-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

fatoora_rs-0.1.2-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.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9485bb512d7b174fcc83511b4dcf2f6d7470c99ebafe0b881370adf553ff9b83
MD5 4f73a423483993afb376d2fd09f90b2e
BLAKE2b-256 91626cd529c875d11010a38f999867dbc676967553560ec46afa928563ca0591

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bc7f36c6797be0bab83672ebb0bdbd67b2540cdb7ec3b548534698705c8fce44
MD5 458ba5fd07dd2856a895cb7ed5c70f85
BLAKE2b-256 9e6b986f712524927b654bcd4adbb6b75a28770466858d33c01c5b7dc7289a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65d812d380633a43bb9c9e8f5302ee90d3e71a6b8518f50ea8bc3fb010f41550
MD5 91a276670cae213852b000195a1ea951
BLAKE2b-256 7b7c2f726062472a758af948410684ced8225614c8c47ea414876afb97760ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7db4d812f61ec9bbd31c7ba304737ff3daf5d34c402b251199417e3cdfbe0fe9
MD5 054d41bafdbbc46f333970a8fffc91d8
BLAKE2b-256 e0ec464b0cd32ac90e97b7d5b4cfa0477bdc61f2472200815dac6636f37adad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e33d04aa0b229972bebf1f2f4faa0ef50223e478413930768aae780bed95cf36
MD5 9daa7ba07053f5307f43047fd440cab8
BLAKE2b-256 c7d8817f6caccc8cf824e2d6082b57531a485497c9225d944d7d0788c357ec1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 53adbb8f51df239c773dddd6a15c3284821108c641bbc814a3b01ddaeb160a44
MD5 fed4bd2e4b6bb208b37c8afd5f4cc970
BLAKE2b-256 14aea9c60c31ef026a9c868a3417a1addb5373ad28ee36992ad408f880cd053b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a17d4a233eb95692b1afeed079e37827ce69f6797ed23dd4fcd5af42816a3e6d
MD5 fe1d573ed98835aa07e6b459319077ea
BLAKE2b-256 829963ae73fc3c3f9d2f3e7bbcffc93e75f234cc5a195d2d2f10c33d6d7d1463

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24cbe8f025d5262a0c6bd0b2802ce48a0c74bd952f9116e42d53877798c6043b
MD5 ee429b957fcf158300975f3be036518d
BLAKE2b-256 7e387c950555a607073d038d64e043a1d8f87c13cea806410dd143109340e804

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad510b59074cb1b0049c1013f95f419f6f00f4c1fbb301ea6a1a199997714380
MD5 076f59da0989594fb3d6013a3c5e46b4
BLAKE2b-256 e623b2cf2cb4eb7d07d6b15049c534c2a84153e76b3b5eb97428e22593edc581

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a6f48fa42532da5249dc95034dcb3b00b4f25b3d7800a21a3d5daaa25662b18d
MD5 7638119be5cf23bbaef921fa91dde210
BLAKE2b-256 85d34541843f2fd968dd64cdbfe857cd807b2eb89ebaa6f3fafceb35e2d8f7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f30beb7349fc0a408cf0d3f8470fc5b1db05ba6296bf08b4624f3aa9f3e2d59
MD5 8b70fabc59e4614512728369ad41c502
BLAKE2b-256 8adf510d39f6333c26fe825df6371fc045fff82df8a081edc3a6b470cb316dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5a317709bf5f721ea497a304b03b06bcf7000e9eab93e19839d3a356f7a0f3d
MD5 d02c30aac8d8b410efcea08eb6de369f
BLAKE2b-256 9a431304fb5c5fe0e2ea16963d42d4172826da7a2645dda86f4d5fa1c8c3e6c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af45f057672c6639520debdf902896b6b6075a0c445df7a9827fe362a7e15a51
MD5 a14a20e34a049a555ba786d2190aac2e
BLAKE2b-256 3348a24e39247005f16c922ecca91d832e8daffe1720eee8f3dc203bff63e863

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1e8a95e6c1f6994c73b4e72fc06937ebb1d1a43d2317da3aa466bad464aac3e
MD5 df50efc8d78cba82661cbbfe5fca44aa
BLAKE2b-256 f94db1c4a042e2ab7784b7a9a6720bfe251447d8018a5c42409b98349349dd25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5befd5426e538203b276f654dd0a1443bd27165404c0588692c5c382ef7c649a
MD5 ebdff4696c5a6ea614fee6616c3cd059
BLAKE2b-256 3d7dfaa666bcc5be0c744fce6d3958e60d0c8b2b8a96419320e0f4e223d29e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2204a762e2c64e759d4a41509454cfe80421cfc408a2d2cdc5f00b11071825f
MD5 c2ebe28608d78f0687e385c6d92b7534
BLAKE2b-256 093819874eeb5958fd1ab656b5129cfcee8a57ec7ef0a81041d4bae2c69d1e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8bde4bac801195e1b7c4373adb417ed7f6cebe1202054da04706805069622c6
MD5 4a46b68ec33dfe51bb69a9d69a81cb21
BLAKE2b-256 abc39e82874e2427277a155de573b107e50ee48e105ccf9201e6911cc4b727f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: fatoora_rs-0.1.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 288e1ae9af300c0e1e9aa4050f6593af2d48d48908544fb32061fe0f5e59039a
MD5 a806500646cc9d898ef3e2a2789fa2ca
BLAKE2b-256 c28550dec3a8287dab563eddbdcc273feb25860f629c1ebf5ff2457985c77eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a99c771ed633aea6219446001bc2a0f3dba8cf287b5ae27844547b632630190e
MD5 1f2d3af29692eadeee6b1ba160518196
BLAKE2b-256 b762c5739da8e5e7d432bc5739a590e5433dcda750405b495f5b5309ec55b8f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatoora_rs-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3849dfe9ed5abb9aa47a7827ab78214e973818acdc5b0a7b83e606134f3f14c
MD5 c2bd0a949ee811c0d8a48c2f8cbf0318
BLAKE2b-256 9c05724dac15be7320faec4fef45f00904d86963d9c6d2068eae618daf12a7cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatoora_rs-0.1.2-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