Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

GAFIME — GPU-Accelerated Feature Interaction Mining Engine

Latest release PyPI version Python versions V1 Contract Validation License

Native feature-interaction discovery across Rust CPU/SIMD, CUDA, ROCm/HIP, and Metal.

GAFIME searches continuous interactions, decision-path regions, and temporal transforms for tabular and structured machine-learning workflows. Python is the concise public declaration and reporting surface; Rust owns validation, planning, scheduling, lifecycle, and Core execution; each native GPU payload owns its device-local execution.

Quick Start

Install the current published prerelease of Core, optionally with a matching vendor payload:

python -m pip install --pre gafime
python -m pip install --pre gafime gafime-cuda  # Linux/Windows x86_64 + CUDA
python -m pip install --pre gafime gafime-rocm  # Linux x86_64 + system ROCm

Core never depends on a GPU payload. Payload packages require the exact matching Core version. Apple Silicon Core wheels contain the Metal payload; there is no standalone Metal distribution. See the live release status and backend installation guide before choosing a hardware package.

from gafime import ComputeBudget, EngineConfig, GafimeEngine

X = [[float(i), float((i * 7) % 11), float((i % 5) - 2)] for i in range(64)]
y = [0.4 * row[0] * row[1] - 0.2 * row[2] for row in X]

config = EngineConfig(
    backend="auto",
    precision="mixed",
    metric_names=("pearson", "r2"),
    budget=ComputeBudget(max_comb_size=2),
    permutation_tests=0,
    num_repeats=1,
)
report = GafimeEngine(config).analyze(
    X, y, feature_names=["trend", "cycle", "offset"]
)
print(report.backend)
print(report.interactions.top_k(5, metric_name="pearson"))

What GAFIME Supports

  • Continuous unary and higher-order interaction candidates.
  • Native decision-path candidates with target-rediscovered permutation maxT.
  • Lag, delta, velocity, acceleration, and rolling time-series candidates.
  • Eager, resident, and explicit compiled lifecycles.
  • NumPy, Polars/Arrow, file-streaming, scikit-learn, and CLI integration.
Backend Distribution Precision profiles
Rust Core/SIMD gafime fp32, mixed, fp64
CUDA gafime-cuda fp32, mixed, fp64
ROCm/HIP gafime-rocm fp32, mixed, fp64
Metal embedded in macOS arm64 gafime fp32 only

Explicit unsupported backend/profile requests fail closed. backend="auto" selects only from available, compatible native paths; explicit vendor requests never silently substitute Core. RT/OptiX remains experimental and local-only.

Documentation

Getting Started

API

Execution and Backends

Architecture and Development

Security

Releases

License / Contact

GAFIME is licensed under Apache-2.0.

Maintainer: Hamza Usta — hamzausta2222@gmail.com

Report suspected vulnerabilities privately through the process in SECURITY.md, not through a public issue.

Download files

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

Source Distribution

gafime-1.0.0rc1.tar.gz (372.9 kB view details)

Uploaded Source

Built Distributions

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

gafime-1.0.0rc1-cp314-cp314-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows ARM64

gafime-1.0.0rc1-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

gafime-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gafime-1.0.0rc1-cp313-cp313-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows ARM64

gafime-1.0.0rc1-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gafime-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gafime-1.0.0rc1-cp312-cp312-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows ARM64

gafime-1.0.0rc1-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gafime-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gafime-1.0.0rc1-cp311-cp311-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows ARM64

gafime-1.0.0rc1-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gafime-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gafime-1.0.0rc1-cp310-cp310-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows ARM64

gafime-1.0.0rc1-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gafime-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file gafime-1.0.0rc1.tar.gz.

File metadata

  • Download URL: gafime-1.0.0rc1.tar.gz
  • Upload date:
  • Size: 372.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 34aa26c133cccb58f465003ee8a76a885fe68f0f04ab316378d1b0801a88a342
MD5 e3c546220bdcd950d9c7aaaf891a042e
BLAKE2b-256 b434aadc00dc6d311b3a044d9ead654536a3f115fafd200435ef02e932d71802

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1.tar.gz:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6c83010b085acb3fd1a5813ff6c66e7259322d21459c6c1f12c8e81796bf3a56
MD5 d6dafadeca7d9d34e00a29069b5875b2
BLAKE2b-256 e03ba5d89df08f26e31026a5c4f0b2218336d0b2c6f59c6f82a6f76610b0e95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp314-cp314-win_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ade2e170a4a950d9b495f3a8d8eb5013b852b4438751b635923bd0ae0fb66f6d
MD5 c633ed984f2685e018453f33d99d7975
BLAKE2b-256 d11e6af75262bb28536610cc36a9e0e45dbe1c2ecbedd33ae49794d026182de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp314-cp314-win_amd64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f745882a025068e421e6a3b8bb564b78411ac680e3a1e2f73d1322f6b02c8e5f
MD5 70a32ee590f3493ba9381cd2aba02a91
BLAKE2b-256 6921b3fd9b5e2b7a87ec4ff7d21a53faea7f8e36c409e484a2530b87800ffd28

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c57bda5d7d30f74b892ae79c506eed07b34b7a96802f53b3234cceec250f0218
MD5 c0f0debfbed808e3b6a267fc89c36062
BLAKE2b-256 744725aebf10442189daf8ade9721332814489aa2ae20890b59c042a161e9a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d09a6085514daff839fec819056b9c7aea4d0073274f3f9b4e146aa1f746a951
MD5 7ca0b1ed9845f90d3bb67073ecee8a25
BLAKE2b-256 91cab68e67f5f03bb962d9eeeb77c65390a659892ec169eaaf0072b7573c3335

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4a78e3551fe15de4b539311922298ee962001ebac798c1ffae82a28e8e072e2a
MD5 f9b3387fb9677ae8dcf30fdf0008b8d9
BLAKE2b-256 5e918c5ec051ac9753364cf4fc5b8767c526e6d83b4c79c64db2ddfe32c86abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp313-cp313-win_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2e54960dfba234c3bf98d28b355e72291372db5e3504c8ca7b43d5b622be2bef
MD5 886b549cf24b0ce133e21728a2d37a3d
BLAKE2b-256 093a130baa0e16f53c09e83aa3c741b531c0856431a7033d09d1e09baa6c4740

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp313-cp313-win_amd64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1f2ca90263c327ba6a91dfb6637d25f08046b0c482049cdd3566466d45c919e
MD5 3cf588244fbd0e65356fa62543abf62f
BLAKE2b-256 3035ce70e9b118f9d179aaed83c0f0db19999320cf9e06bc31189e685b2d983d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b96cb0febd5abeb4c7e4f51b40c9392b4549823effbc5008a3d9b09435a3a08b
MD5 b38710f8be6aa54e59a60deb94bc2fe3
BLAKE2b-256 fdf035e3b5b80c96f4aff9b7d0f57b3299953ec0d6a4a38188368eb9ab133773

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4e9e29fc8e1dc3ab66b5596cf45d121ed6d2664e6cfed76876691bd2f4e367d
MD5 74e5c84cab3a7be21ef221e7c10c79e9
BLAKE2b-256 1198e806a9add77eb64d06f1b912b5e90f50a01ad553401cc121344b46f71dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 776a93b252db83b6c29e831fd39910c7e3f5b06bffbd964ebcd622f0c44d2cba
MD5 cbadf9e312ef7059a286c5838d1534f4
BLAKE2b-256 c6a70e656f4711a4c662c8995c40598552c719497df9cbd76ef58cb7c7c81489

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp312-cp312-win_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a14b98000354e8894907fc8c3391727f4ed5c28ac04f500eb7947d240cb13a92
MD5 457069b9cd37d7e9cc8003eb14eefbe8
BLAKE2b-256 63d706899b2d86828308df77afa24c9157d9253945bf1ee3e2799f0c12313f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp312-cp312-win_amd64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83e126a9898fcd3870f93681028c2a3349cd98db4d24d1add001838a83aad92f
MD5 6bcdef2d6d36e47c15bcd8be9ed91253
BLAKE2b-256 8d275df13264618a4d87139e9594ff9058224321efef46fb83fd494d104e0ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd20142fd147f037df9a31b1721ed597f277eee29afe38baee55e121e0f206ab
MD5 69fdbec4359d642d8de2dc9632f207a3
BLAKE2b-256 47ea67104ebb373d1174dfc92bdf74b3ac5b4892d32bf5f0db281b3b505f7944

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7b7d0b3fd4c155fe198250eddb738656f59a577f6a84e3439c4fd12a1146df
MD5 cc63a3b5faaed2f0177ca34985bed591
BLAKE2b-256 c70cca4180040d53f3ea8e3c1996dfa5d4d8a059beb4024e8f7b988fcb2f988a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ffc935636c638c28d16d72cb08b9dfcdd632e656a42ceb8b36f4aefe6bbdc0c9
MD5 2003bde028f5493ee5c5166d8903bb01
BLAKE2b-256 afbda8c1e2038ba2dc8f308063394e11b058513c17fce991ce2623be6c419907

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp311-cp311-win_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de3a6393e0d7643816ce4c5372b4fc7159249a239758fc8237dc2c54c3b55a38
MD5 f59d599a56fed768f734632b65215da1
BLAKE2b-256 74da4cb3270a22d34888e808257c4325c800b3418d0c006f40d6ab734892eaff

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp311-cp311-win_amd64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d5a925c7413b7058535c192c1bf4d718769387041055e0693de1555d6b1c152
MD5 a065acb7edb1f993b2f54da048974275
BLAKE2b-256 e29fd284881ba94929692c6ea0f85b4bd126adc1fc6ac7b9f2e9094a500a4cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8c289df383752cd22777f36457c86f032f0e446e6b29f53438a6e82bfdc4671
MD5 cc43535752a8a8cabff148803b7870df
BLAKE2b-256 d0077eb966a9c7a1565dfa20b16348b46ee5dd8faf2110725b0187848c97b8c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0db89a77403b80704028bb0f17a7a74e132936e4c01a92944b5a8dbe26adfcc2
MD5 996d80569e4a599509bf66e0d284b1c7
BLAKE2b-256 bfefb1aacf60a61b539ba7aa5e33f63e065e4974e84df753d7b1bd8db5c781f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 efc5891f20dd7cd75ba15031bcbdc7270a8056c397ea6e01e51899395f729112
MD5 2a863f1cbada0e8ec793bde27fa80a71
BLAKE2b-256 697e1d13ad89ef0874c2f3a70c698714f77c62b38e31b27c00190975fc526574

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp310-cp310-win_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gafime-1.0.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for gafime-1.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca4ebc3ea10593e78596901ded8943ce5c6984394ebe2caa17d6395a9d640370
MD5 857c37f1e81ffa51c88ca5557cb1676a
BLAKE2b-256 18035e2bac271952f1736f0f52ee55ac07c6b974f28c788a627f290fd3f5138b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp310-cp310-win_amd64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83da6fd1541f01b454a58d5698fdad03c3123c0efd8b660f25b26cbd04d6e6d8
MD5 824922400d5508e4cb354ee699d5884b
BLAKE2b-256 0fbe606ef7b78b073347959e7d1c61d04b52918e25a862907662b4dd44908822

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04585d710d8cfa9a35f87ef98185675ca5949b68bdee39e1d079e3fe85648170
MD5 5a61ab6298ddfb6e092eb4b2e0e5ba0b
BLAKE2b-256 e4e2f1b4c55d381434626175084b702e1d0746b8bc210d1e9469996308a4e118

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

File details

Details for the file gafime-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbddaf9fa9cd1d4c7e76d90dbd4dc1705530dde2d049119cecb91bbc5f6409a5
MD5 0a1569704cf2c5226d1985a50afecddc
BLAKE2b-256 9a49d37844e54fe5237cca06585a46a425299c01ea811035217fdd5806c8554b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on onlyxItachi/GAFIME

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

Release history Release notifications | RSS feed

This release

1.0.0rc1 This release

26 files

0.4.7

25 files

0.4.6

26 files

0.4.5

26 files

0.4.1

16 files

0.4.0

16 files

0.3.2

13 files

0.3.1

13 files

0.3.0

13 files

0.2.0

13 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page