Skip to main content

File to Analysis -- Automatically perform statistical analysis from any data source (Rust-powered)

Project description

f2a

File to Analysis — Automatically perform statistical analysis from any data source.

f2a is a high-performance data analysis library that provides a simple Python API while running all compute-heavy operations in native Rust via PyO3 and maturin.

Architecture

┌─────────────────────────────────────────┐
│            Python API Layer             │
│  f2a.analyze()  /  AnalysisConfig       │
│  Report generation (Jinja2 HTML)        │
│  Visualization (matplotlib / seaborn)   │
└──────────────┬──────────────────────────┘
               │  PyO3 FFI
┌──────────────▼──────────────────────────┐
│          Rust Core  (_core)             │
│  Data loading (polars)                  │
│  Schema inference & preprocessing       │
│  21 statistical analysis modules        │
│  Parallel computation (rayon)           │
└─────────────────────────────────────────┘

What runs in Rust

Layer Modules
Core Loader (CSV/TSV/Parquet/JSON/JSONL), Schema inference, Preprocessor, Analyzer orchestration
Basic Stats Descriptive, Correlation, Distribution, Missing, Outlier, Categorical, Duplicates, Quality, Feature Importance, PCA
Advanced Stats Statistical Tests, Clustering, Anomaly Detection, Advanced Correlation, Advanced Distribution, Dimensionality Reduction, Feature Insights, Insight Engine, Column Role, Cross Analysis, ML Readiness

What stays in Python

Layer Reason
Visualization matplotlib/seaborn — no Rust equivalent worth the effort
HTML Report Jinja2 templating is inherently Python
i18n String-heavy, low compute

Quick Start

import f2a

report = f2a.analyze("data.csv")
report.show()               # Rich console summary
report.to_html("output/")   # Self-contained HTML report
report.get("quality")       # Dict access to any section

Installation

pip install f2a

Building from Source

# Prerequisites: Rust toolchain, Python >=3.10
pip install maturin

# Development build (editable)
maturin develop --release

# Build wheel
maturin build --release

Supported Formats

CSV, TSV, JSON, JSONL, Parquet — plus optional extras for Excel, SPSS, SAS, HDF5, ODF, and more:

pip install f2a[io]

License

Apache-2.0

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

f2a-1.0.3.tar.gz (99.0 kB view details)

Uploaded Source

Built Distributions

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

f2a-1.0.3-cp313-cp313-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows x86-64

f2a-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

f2a-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

f2a-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

f2a-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

f2a-1.0.3-cp312-cp312-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows x86-64

f2a-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

f2a-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

f2a-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

f2a-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

f2a-1.0.3-cp311-cp311-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.11Windows x86-64

f2a-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

f2a-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

f2a-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

f2a-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

f2a-1.0.3-cp310-cp310-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.10Windows x86-64

f2a-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

f2a-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

f2a-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

f2a-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file f2a-1.0.3.tar.gz.

File metadata

  • Download URL: f2a-1.0.3.tar.gz
  • Upload date:
  • Size: 99.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for f2a-1.0.3.tar.gz
Algorithm Hash digest
SHA256 375c0354882f779e05198ff7ddc7cbb41cbc1d9dfd91bd5d4095a974a2b221f4
MD5 b72318b65cd51259c8cbeb925313f445
BLAKE2b-256 7e0825413b30537f3a9261445b00f62aa6e056641f6d9fc4efd9f500ca70e051

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3.tar.gz:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.4 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 f2a-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce820ac4647e2aa546cfbf5981e2e29729a32c42fb27411afba4b42a037c0bb3
MD5 8b4f440a227e12acf10b6ddfdcc4edc0
BLAKE2b-256 f8cf9f4eda3fa20ea9ebf290a2b4e214569af77824c0d0fb3d7fdcf05c35aa45

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3b4b250a8bba13966e8133b4ed31f1550a8c5d2a0a67582704902cb7a34fe21
MD5 2c441c5342a0983c885fa6b6bb715fd4
BLAKE2b-256 2bd7aca6619b2bc92cf6887398ad09d39d6ace8aa78d47dbdd2fd2617124ffd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c9401f53ce7f88ad66ac42f3419473ab2c6cad78831aeebdb5bc914f5b73f07
MD5 bd5209385ea9504051617096717d52b1
BLAKE2b-256 f2276dce1c7413be6a194b1a0796129fb50c07024732c70937476080774272f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for f2a-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2eaefbf72104c32aa4bf4a20539a3c908587250fd2db6879cc3de63a128b366
MD5 76ec566fb92e3074721ed79fed90a833
BLAKE2b-256 4b606a1e0f7ea4ee7b881a4314b3edc7f8818a647d86de757cef080d3f4fc278

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed0bf460bfa48f773e9ffb0cdc2dbe3a14b3e1ad8211cb0c079734e63b81d051
MD5 20a19d6fea9b3abd6cfb83a9e819a673
BLAKE2b-256 1f1f4cec65570feda2bc7a6d20816699d0cd81df35e6a94b523a6d7927d47cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.4 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 f2a-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fecafa4113de97b3778812338379febfd4ba083f00b8d6c33b604e1daaec9c6b
MD5 4aa261a81472db819410286aec7b4ec2
BLAKE2b-256 a712006737c876e50e33e535a37edaa9f694cef0e2a4784781d99f7b90028030

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c25dbb77423dc423294e52445fdf3a538014d729f8e6241cd88a55b3fdf654cd
MD5 7162bdd1310ccb7547b63e2f6965fc5b
BLAKE2b-256 98df91b9f470847e18548368af186ac4ec549f2b64907ae1628efce0de807bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b4c8e3861beb7e5531ac22416c540fcf69c61a2165503ca1f6746801f7a35dc
MD5 d7a0a2e22b77ee545269792732917a87
BLAKE2b-256 3bc36e3b9f710604b1271d08aeb30ffd44a7d979a132d23f9af2c726009e63eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for f2a-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1d2995d5fadd504a147eb8f75351f93e0e94d4d3f304d8cb38969e177c345cb
MD5 60205ac7e2bfd1d45f11f80013f6ded8
BLAKE2b-256 3d6e36fc494a7fc27edc89731bba69149f650cf6a027d90d09febb0f5245c303

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 096b28a323877684154cd77f4378cc36b9df6e04627736da8119704bffe56968
MD5 ead275a91c2da6ac156a885de61df7f3
BLAKE2b-256 5eb23aebc30c9f57e4f03fc679266460dc15854d77a3f6b3e9d143512a13bda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.4 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 f2a-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b26f55057daee9a97e766797115d5ebcded0673aa13f16bfc7bfd286fb4c7fb9
MD5 ca6834a7534c200d8c8841193f685c55
BLAKE2b-256 4a751cc4a404d0d57d6a3d48fb3fc4b28b55d615d6c15308c5e2526671898ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb6343d797a6afdc91b85d5d36ed914746a27679fff1b8932f4e354b08d88436
MD5 91cb3266b132ea8a2c35c061749b8b5b
BLAKE2b-256 40ff027d82e8159b8a3f7b1aff5b71aab04f8630d52b9b4db60e20b56f3d8be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ee5b42bc7d86b64e1777d67f09fb37963866d5ce6bb769ef9374a8bcadb39b4
MD5 24cc925e5fe08ff1f63bf65d5dfc82b8
BLAKE2b-256 2a7353605219e181d2e5951326f11280f860d9f2eb7648d85c161afc9150047c

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for f2a-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4228391df03f420629ff8f33b348d11a3d1314698a4636935ddd47763ee2c052
MD5 cf329ab0df7098cf6b21f48bc53b8764
BLAKE2b-256 cafadcdaea9ad89f01ccea7a67c37b4c94ea4d7b9d0f74d6963c984da5b6dc46

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fba21e3729de167a4c1f5073fd08936f2841e712f3082cf27e807256f7a1089
MD5 413adb900bd1d86ba419dc8b41481123
BLAKE2b-256 ea2ab679340c59cf4a9c86ff9ea559e93d0d0f07c540692466dfda2b9034ebd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.4 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 f2a-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7724e0abf11474a86e390b65a2f637aa138a530f4ce70576bdbc1f390f83c4c5
MD5 66475f8a8fd0e1b91b368624561b85f2
BLAKE2b-256 6ae88bcabc57c10f614d73883ca7a761f928ad75f53039482afc0585a68cacab

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 124839be9330adc0574b1dd8fe089907c2a5cfb698fcafb87013a5b46e2c5dd5
MD5 33dede2a080264f105d602a545c8c2b7
BLAKE2b-256 bb435a8104333aab9b11165d7b9a2d2de16722793fcfb20207a95a9c11501387

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61545d49cbf3de0354137bbc253f9acd0d766c801f129f69773e8d46b86107fa
MD5 b05030bbcaceeb044aa9acf04bf95077
BLAKE2b-256 d269ed875e46ee7579e036ed8fd50c1b5c68e845be85e5baed7b1332bd196230

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: f2a-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for f2a-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 726b527cea3cdfa6110ce307664b8381e81196af1476db9f68025ed113b62805
MD5 8379f97cbd66d5b37611eee6668b6642
BLAKE2b-256 22866d121e4b56c180baf7eb286cc0e6d8616a35e5c7c8d75980c6142532a961

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on CocoRoF/f2a

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

File details

Details for the file f2a-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for f2a-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3aa5092647f7b067f988bc537c13809a961d20c0d339150e06519579c584ab91
MD5 a295ce18a1d9a7d4482eecc86d7840de
BLAKE2b-256 cc9db9760e4ebb0daa1185570aa88f2232c05bc999b0a40280221a2cbf13e7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for f2a-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on CocoRoF/f2a

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