Skip to main content

GPU Accelerated Feature Interaction Mining Engine

Project description

GAFIME

PyPI version Python Versions License

GPU-Accelerated Feature Interaction Mining Engine.

GAFIME is a native feature interaction mining engine for tabular and structured machine-learning workflows. Python owns the public API; C++ Core, Rust scheduling, CUDA, Metal, and ROCm/HIP own the hot execution paths.

The engine is built for workloads where interaction candidates, threshold-style regions, and temporal transforms become too expensive to search with ordinary Python loops or model-by-model trial code.

Install

Core package:

pip install gafime

Optional Python integrations:

pip install "gafime[sklearn]"
pip install "gafime[bench]"

Vendor GPU payloads are explicit in the v0.4.7 distribution design. Pip can select wheels by Python, ABI, OS, and CPU architecture, but not by local GPU vendor. CUDA and ROCm payloads therefore need explicit package selection once the split payload packages are published:

pip install "gafime[cuda]"
pip install "gafime[rocm]"  # Linux x86_64 only in v0.4.7

The extras install the separate PyPI payload projects gafime-cuda and gafime-rocm for the same GAFIME release.

Apple Silicon Metal follows the macOS arm64 wheel/platform path.

Detailed install and backend policy:

Basic Usage

from gafime import ComputeBudget, EngineConfig, GafimeEngine

config = EngineConfig(
    backend="auto",
    metric_names=("pearson", "r2"),
    budget=ComputeBudget(max_comb_size=2),
)

report = GafimeEngine(config).analyze(X, y, feature_names=feature_names)
print(report.backend)
print(report.interactions[:5])

Generate the reference notebook:

gafime --init

Advanced API tour notebooks are also kept in the repository:

Candidate Families

GAFIME supports:

  • continuous interaction candidates,
  • soft discrete thresholds, intervals, value-gated thresholds, rectangles, and value-in-rectangle candidates,
  • explicit time-series candidates such as lag, delta, velocity, acceleration, rolling mean, rolling standard deviation, and rolling sum,
  • scikit-learn transformer integration through gafime.sklearn.GafimeSelector,
  • large-file streaming helpers through GafimeStreamer.

GPU discrete feature engineering is soft/vectorized only. Hard discrete mode is a CPU/Core behavior and raises a clear error on GPU backends.

Backend Policy

backend="auto" resolves native backends with platform-aware priority:

  • macOS arm64: metal -> core
  • Linux/Windows x86_64 with CUDA payloads: cuda -> core
  • Linux x86_64 with ROCm payloads: rocm -> core
  • Linux/Windows ARM64: core

GAFIME does not initialize every GPU runtime during auto resolution. It uses the installed platform payload selected by the backend resolver, or core when no supported GPU payload is selected.

backend="gpu" is deprecated because it is ambiguous across CUDA, ROCm, and Metal. Use auto, cuda, rocm, metal, or core.

Native Reports

Reports are structured Python objects. Read properties such as:

  • report.interactions
  • report.decision
  • report.backend
  • report.warnings

DiagnosticReport.to_dict() remains only as a deprecated export convenience. It should not be used as a runtime data-flow path.

Developer Docker Images

Docker files in this repository are development environments, not distribution images. Normal users should install GAFIME from PyPI wheels.

Available source-build containers:

docker compose run --build gafime-cuda-dev
docker compose run --build gafime-core-smoke

The CUDA development image includes the CUDA toolkit, compiler toolchain, Rust, CMake, GAFIME development/benchmark/scikit-learn dependencies, and the locally staged gafime-cuda payload by default. Extra workstation packages can be added with the EXTRA_PIP_PACKAGES Docker build argument. The Core smoke image is a smaller CPU-native source-build check.

Docker details:

Project References

Contact

Maintainer: Hamza Usta

Email: hamzausta2222@gmail.com

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.

gafime-0.4.7-1-cp314-cp314-win_arm64.whl (986.5 kB view details)

Uploaded CPython 3.14Windows ARM64

gafime-0.4.7-1-cp314-cp314-win_amd64.whl (809.7 kB view details)

Uploaded CPython 3.14Windows x86-64

gafime-0.4.7-1-cp314-cp314-manylinux_2_28_x86_64.whl (753.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

gafime-0.4.7-1-cp314-cp314-manylinux_2_28_aarch64.whl (708.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

gafime-0.4.7-1-cp314-cp314-macosx_11_0_arm64.whl (588.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gafime-0.4.7-1-cp313-cp313-win_arm64.whl (985.7 kB view details)

Uploaded CPython 3.13Windows ARM64

gafime-0.4.7-1-cp313-cp313-win_amd64.whl (809.6 kB view details)

Uploaded CPython 3.13Windows x86-64

gafime-0.4.7-1-cp313-cp313-manylinux_2_28_x86_64.whl (752.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

gafime-0.4.7-1-cp313-cp313-manylinux_2_28_aarch64.whl (707.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gafime-0.4.7-1-cp313-cp313-macosx_11_0_arm64.whl (587.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gafime-0.4.7-1-cp312-cp312-win_arm64.whl (985.8 kB view details)

Uploaded CPython 3.12Windows ARM64

gafime-0.4.7-1-cp312-cp312-win_amd64.whl (809.7 kB view details)

Uploaded CPython 3.12Windows x86-64

gafime-0.4.7-1-cp312-cp312-manylinux_2_28_x86_64.whl (753.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

gafime-0.4.7-1-cp312-cp312-manylinux_2_28_aarch64.whl (707.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gafime-0.4.7-1-cp312-cp312-macosx_11_0_arm64.whl (587.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gafime-0.4.7-1-cp311-cp311-win_arm64.whl (987.8 kB view details)

Uploaded CPython 3.11Windows ARM64

gafime-0.4.7-1-cp311-cp311-win_amd64.whl (808.2 kB view details)

Uploaded CPython 3.11Windows x86-64

gafime-0.4.7-1-cp311-cp311-manylinux_2_28_x86_64.whl (752.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

gafime-0.4.7-1-cp311-cp311-manylinux_2_28_aarch64.whl (706.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gafime-0.4.7-1-cp311-cp311-macosx_11_0_arm64.whl (587.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gafime-0.4.7-1-cp310-cp310-win_arm64.whl (989.5 kB view details)

Uploaded CPython 3.10Windows ARM64

gafime-0.4.7-1-cp310-cp310-win_amd64.whl (808.7 kB view details)

Uploaded CPython 3.10Windows x86-64

gafime-0.4.7-1-cp310-cp310-manylinux_2_28_x86_64.whl (753.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

gafime-0.4.7-1-cp310-cp310-manylinux_2_28_aarch64.whl (708.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gafime-0.4.7-1-cp310-cp310-macosx_11_0_arm64.whl (587.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file gafime-0.4.7-1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 986.5 kB
  • 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-0.4.7-1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d4a862b178df42c6c26bb069a0cf6440665a4f487e15236fc5a572f9e3435882
MD5 4f0900d12238132034cd9890ce86d25c
BLAKE2b-256 66caaf3f00ff7143e9967352f5f6d197990565c172e10ad575991c1dd76791c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 809.7 kB
  • 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-0.4.7-1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8ba6b275eed83b6d93c5792cf36cfe1a4686a73cb6c03b6e9df8ad55c0f6b04
MD5 f01144bf3a32dd3d0a1c43b843cd3d74
BLAKE2b-256 d88b34399806e6e5eea831235083412a558920060b8e3c3627ff0bac980d0df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.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-0.4.7-1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb0b5b94f594dee03c0f38348b940b9b07db614c1938b32797e2563af7a7e3ae
MD5 b939ab0df9f742675b07e33b7b36fd5f
BLAKE2b-256 4a908cbf1e86e180a63f86ae7de2ef3d4ad64ddc5af2e29ae8aaf98affe38726

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.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-0.4.7-1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3589f824fd2c3759d52f5a4c0c41e22b92ac77434ce15976e8f3079e28232107
MD5 9256219afdb69719692fd7a2e509c385
BLAKE2b-256 8d6ef379b5e872fa05728a60d2f6f75952f631b2dda535407f308ded68addd89

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.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-0.4.7-1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b85d06f88ff52c5a32f5ae8434fbb6d4dfd6853d36d91f4b02353ef8b9ea311
MD5 ae6c77515bc1bb8992c9d9d9ff193630
BLAKE2b-256 289bdacd5080b1e2569169da0002127d0875f23e1ce3f5c812105eb58205769d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 985.7 kB
  • 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-0.4.7-1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fca5dbeca7fd67c60a71dbf7c4162e6c3cf4de5b221b429c775244d2e69241c7
MD5 a4e51fa26e83a22102f25912a17fa8fc
BLAKE2b-256 8ec2258e1e2a05a735a1d4e0bdbb8f0ee40c535c25c21aac742a25f6b38eda06

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 809.6 kB
  • 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-0.4.7-1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0cbb9cf0187dbdac8b88a3ed1cf5a2d7c548aececf7debe268bf823b045d1387
MD5 a9d3ca8c218794a2fb9951cc6d90d68b
BLAKE2b-256 d4932f3b8b5608f8e9ab2e1270fe69a2d14097d2cff67c7b5c10c9d64540e3e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.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-0.4.7-1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcb23c26b3db9063675d6f50ade54e85557ac870af9e345f808b8b6ee0998fa8
MD5 c7298fd19c6955d03174ef9913982497
BLAKE2b-256 19b46ecae709f7537e1fe4ac8766a947cfa23848eaee72bfa2b8230545fd88c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.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-0.4.7-1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f509614e6affb9b20377962cd82c8a9e44ce73486380a183d5dce8fc02c5a5ca
MD5 c26ba112b6e4c918d83ab4d1692d55cc
BLAKE2b-256 65a0fa1f4051121b9babf1f671fbdb83f1197d10b29e91de6e05b25d0b54c505

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.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-0.4.7-1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af36762fa3adc0a2c25a9d35ac935056646cddb2bd99853f2e66647f5ff0e68
MD5 5364b9c158eaeab26e4029c4f6b55683
BLAKE2b-256 4a7503d56e6a403a79a0002adaae44b4445bc631f042372f6ad4a9c8ce8e4609

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 985.8 kB
  • 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-0.4.7-1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 249ea1550c9bfc7de7bf592434761590fc320e2e70b564a8ffa913c6bd332880
MD5 519462c744358c42f79bda6afba89f9b
BLAKE2b-256 11069974d4eb8808f68ab34f833d4ae67fb3a6b143326da5e15adec031b72e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 809.7 kB
  • 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-0.4.7-1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ea93a194a32a85cb7c36b09a718b6b10db8223b4d3a5da2d59793ef9266bd86
MD5 59abd0ece989457deb485752f1063a58
BLAKE2b-256 df4e25dc1ee2b664ba1305ab886f021529004b039039823b8e7e00b04aec3672

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.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-0.4.7-1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8aa98d1afe6d5dbeee104cfa013997bd55d20c82556920d74c46dc527bb76ffd
MD5 d6d148b947b96f64fe7df0131aec99d2
BLAKE2b-256 1d4633b86565ec807fb966c9c9beda1a06857d63b21b3529a092d762bd96c956

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.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-0.4.7-1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77dd47bc6d46d6070f4ebbdd613271bfc54157bc9724627c5b0d85796c909e9d
MD5 1b1b623f6ed6bdd482d08be7717f6188
BLAKE2b-256 2275325c5fe530ec92e7644cfde7fab36535bacc2c66a1b1a541014bd6e06252

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.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-0.4.7-1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42d2b922d3828c58d5054afa74b65030bde40c9504413364a8026bf9052d582a
MD5 b070141f3648816cc95c79f4927327c7
BLAKE2b-256 064c6f35a6fc2e1879b50760d30eade7be6fa97fb41fb198e58fd02a7d1ded7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 987.8 kB
  • 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-0.4.7-1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 614c8ca4e000f39b669d268c585b98157ebfabf2c8f9088073fa6664e302e8af
MD5 04ece4074f86511d6230849ce6b4d9ee
BLAKE2b-256 0770ef9bd5e4220140e8002ef767cceb0bfb0d0f6aebb0c2ba722fbddd0022f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 808.2 kB
  • 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-0.4.7-1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c942b911cd39bfa11135abc5f1e72a01595280867843907b4632a2efc026a785
MD5 abc74b59ad77cbca4e683a967413f131
BLAKE2b-256 a389c906eb9d6ca536826e5cdbbb04a2145d9c3221e20a77fe8f4207a8581fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.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-0.4.7-1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3579158c04f2861327af5c8c88020511e19c72bacc317156a34a9776bc47e512
MD5 167f0e45fe0f8db6713d9239964b642d
BLAKE2b-256 9881571e6135a645c7d896618d1df017c3b6d665515ac6ba75a432e3db7fdafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.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-0.4.7-1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9078065081495d33b6de22ee4961e1d1b3400d6fe965479c24563ab780f2dc11
MD5 e6f8338ca5596844094019e3554f6df2
BLAKE2b-256 c51313f00ba38665c3d3399ae833c4891ff418c9d2115067c15f58d472e6687c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.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-0.4.7-1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68c799facfa633424289b0aaecf586d01d69ae26a601aff773c2d0f42849b504
MD5 f6bb2d58efd8b5f5aa6c89e14192e8fc
BLAKE2b-256 679eb567a8cc573f41ba14a3e6dda546ed69aa1b1f279f79a0bbe218d6b6528b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 989.5 kB
  • 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-0.4.7-1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6e0219e20ac26b6010082e4717291a3aeb249ce1b81d0ccdec2d78b0d767b493
MD5 80779509d482d54476f3b6f0ef035868
BLAKE2b-256 aca488185fbe99159fd7e649cf74d2266ad6df9b7221f73b7e7a0acea6ccfd57

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.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-0.4.7-1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gafime-0.4.7-1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 808.7 kB
  • 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-0.4.7-1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d373fded7fb534b83c05cccb6d109e62014efcb9525d0f01b485e86408c821b
MD5 0e80047e292466eb65108508e61c499f
BLAKE2b-256 a56f22f9c4141fd77e7cc825eb745299e27e18bebc86a6eb4375c7e6d24452f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.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-0.4.7-1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a85ed4d19917ce12409d9b74fde4f70893ce42664b96e0814e2d93ddacd57c5
MD5 4b24e6406c39b3e010af36eb884aa56d
BLAKE2b-256 58373c127f97845dc5eb91f0e08d2aaaa9a3116f7c6f5cae7adfdbc192fea229

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.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-0.4.7-1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39c4c2bdbd8afbdf94ece8fdb85bf876a7b85972946a716ad6770f4a873445d5
MD5 bbe21264e3bfc1e04570fbe40209c16d
BLAKE2b-256 2b31be5428248d2379b21ce6c985cb9c2af93cd2c39c5ca3fbea5f64c2cbd816

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.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-0.4.7-1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gafime-0.4.7-1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8890872325726c0d05bfaf1c99edc199f995aff40ec6d7d0a40cc8e04b3d018
MD5 d2bd769a941b91ff5fa3cbc127625446
BLAKE2b-256 8366f0722cb7ff32ce219a69a84bbacf2569d82c6e510855c54725b677275170

See more details on using hashes here.

Provenance

The following attestation bundles were made for gafime-0.4.7-1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on onlyxItachi/GAFIME

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