Skip to main content

A Python Library for GFN-FF.

Project description

PyGFNFF

This is a Python version for GFN-FF based on F2PY.


Usage

There is an ase.Calculator subclass termed GFNFF for non-PBC system. And a more low function called gfnff can be found in the code.

from ase import Atoms
from ase.build import molecule
from ase.optimize import BFGS
from scipy.spatial.distance import pdist

from pygfnff import GFNFF

atoms = Atoms(molecule("CO"), calculator=GFNFF())
opt = BFGS(atoms, logfile="-", trajectory=None)
opt.run(fmax=0.03, steps=50)
print(f"Energy: {e:.3f}eV")
print(f"C=O Length: {bl:.3f}\u212b")

# Output:
#       Step     Time          Energy          fmax
# BFGS:    0 19:56:53       -9.188347        2.478131
# BFGS:    1 19:56:53       -9.050233        7.166941
# BFGS:    2 19:56:53       -9.215231        0.433918
# BFGS:    3 19:56:53       -9.215990        0.070653
# BFGS:    4 19:56:53       -9.216011        0.000889
# Energy: -9.216eV
# C=O Length: 1.129Å

Reference

  1. S.Spicher, S.Grimme. Robust Atomistic Modeling of Materials, Organometallic, and Biochemical Systems (2020), DOI: https://doi.org/10.1002/anie.202004239
  2. A standalone library of the GFN-FF method. https://github.com/pprcht/gfnff/

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

pygfnff-0.0.2.tar.gz (636.3 kB view details)

Uploaded Source

Built Distributions

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

pygfnff-0.0.2-cp313-cp313t-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.13tWindows x86-64

pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp313-cp313t-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

pygfnff-0.0.2-cp313-cp313t-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmacOS 13.0+ x86-64

pygfnff-0.0.2-cp313-cp313-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pygfnff-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp313-cp313-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pygfnff-0.0.2-cp313-cp313-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pygfnff-0.0.2-cp312-cp312-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pygfnff-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp312-cp312-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pygfnff-0.0.2-cp312-cp312-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pygfnff-0.0.2-cp311-cp311-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pygfnff-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp311-cp311-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pygfnff-0.0.2-cp311-cp311-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pygfnff-0.0.2-cp310-cp310-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pygfnff-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp310-cp310-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pygfnff-0.0.2-cp310-cp310-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pygfnff-0.0.2-cp39-cp39-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pygfnff-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pygfnff-0.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pygfnff-0.0.2-cp39-cp39-macosx_14_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

pygfnff-0.0.2-cp39-cp39-macosx_13_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file pygfnff-0.0.2.tar.gz.

File metadata

  • Download URL: pygfnff-0.0.2.tar.gz
  • Upload date:
  • Size: 636.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2.tar.gz
Algorithm Hash digest
SHA256 3bd7ae741c565edcbf0cfcc239af824ca6910267ec0cccdd65829971d68a7d20
MD5 f36607c782fe54ea38bf033fdc98c7aa
BLAKE2b-256 2c9cfe9bfa2e276a0a8b1750437c80d939fde7992b6f797198f9323eba2cdffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2.tar.gz:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fb45aad385392ce7e5bf399a2a158d537c76d1871d7549ae328bf4e63b28695b
MD5 c2da8a0fcb8653aa54d6c678c02b7aa0
BLAKE2b-256 f93668abe860f7755acfc84854051a9336a6d831a7f4b1e617af4b9d8bacfc9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313t-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29c8baeced3e88752f154f1665a89f2b816d372d78837a10678c162ec6f9b216
MD5 048f833d7f5aef0c7807efdc40a66e2f
BLAKE2b-256 cd7fa58ef5c56108c63453eadc2acbaf886fea2705dc0cdc1b8fa8880792de02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30cbd16c86051b6ffb488bb397d081f12456cfdb98edbb0ce04ab43008c90b40
MD5 e5a4207692d656cb55c137d97702e9d0
BLAKE2b-256 3c07ed869d72888f0a3292cffce43395f24b3646ff01cd8ac617794395dd4f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 53fff94ffc942e5fbdde5ea178b823d9952f20fba81cd1b9d5808e09edf4b39d
MD5 ccd187ad67a21549a9774f67061340e5
BLAKE2b-256 3e4d57a0b74555548111d088a715a6ca2d3cc09f52415b9ac9382ff5e5f578b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313t-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 41f724148a80a2203f54d5c16b06b309e6456e26eb4324e71c01f6333ed07fa7
MD5 56fc3454f2111a942521efacf6a08ea8
BLAKE2b-256 317574e7b8d62a62320781dd6aed4af08a79d1f400280da4ce40ec0ce63b4b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313t-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bacabcc5d8a58fc6c2964c8567420927eb7b6f064953b166b213546ed94924ca
MD5 9a0cf73ec9027f91cacd15a859764121
BLAKE2b-256 72245004883e10d3ef4711b4293d818f2afa8d042d826da7f2fc94f0c8a024cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfcdbdfc7dcad259fd6e46b23f0754b8644fe778116971c5f633a69c6926dee9
MD5 56f5eda0b9299fa90009b56b57e3f8fe
BLAKE2b-256 b62fadd723e49a476a39af30ecbbf65445bee4f3fae034a7c756b30e3079d9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbf08ee9030a2f1e8bf5abb8597fbfa09d1bb96bb0f1eef6754c4671909f58a8
MD5 5c848c61ac5e684819e64eedd065ea4d
BLAKE2b-256 0a02b8f7c9be1a62990bc1ddc36529017ae6b8887d0aa110407a9027acf8cb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 622d95f945aaf494ef485a4bcdd37968ad43df6fbba4623b445bc81165a5668a
MD5 931d468a2c50c30576a2a711831125ff
BLAKE2b-256 a4ee6ffae20592345f6913f25631650f2a4c34a08283eba830b0a6f6363e1648

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e645f40b9c02920d222fe3f96ea0bfff1a83e4bfc8496341e3267f8b34aeb0aa
MD5 5b47a17231fb892ed850135e155a6f8f
BLAKE2b-256 a2079623b9800af0a531ac108ed511e97277d708cc11efc2c0e01859ef6761f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6d501d119d37050cec9d9642976a2e737e6b0372eb176ae2252cfe361674941a
MD5 082c037102d79cfd7a920d36e6bf0a1c
BLAKE2b-256 fd994cfaa23072aedef0e1aac2fba60dcc63d333d41229e10e98851758a0036a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp312-cp312-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f157193c7be3b126859d50fbc064ed27051460ecaf2032d2d9038bfca0d65745
MD5 783b7a0666670ac2f66cbb7c0e8f79de
BLAKE2b-256 3f08240f2fbdd700b52584b345b3ba0070f025bef21056bea7e3d981d237bb7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e2dc382abd5564fef9ff844144f7fadfe346fbbb530b2b95d7c4763231e209e
MD5 35449ac11e1318b742dab7d3d35e9d6d
BLAKE2b-256 9437b73db3c141224e63f0e42f602f61c1766aaea3109eea68784212856352a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e117af986b4ab73e77a32282d243418a4bd326919f2b412c6b2eef68bd3744d4
MD5 d29bb867cbb81a73ea94ee754c8259a2
BLAKE2b-256 7315cea20ba9fc1ee2317583d007c820854f0025445dc263ebdcfee1a468bd80

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cb6fd1178d45139528ead5b4cf57bca01a64b063a74d4d651760f885d8444eb5
MD5 dc66862c64e92352fee6b2ba8346c340
BLAKE2b-256 a59cdebf5887763ab209ba10e747034a95351847eddb3db1b7238e02507767ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6859cfd9388334d68a7e7cc1f99221533cc3bf8f710177f44d9fd403c79cd638
MD5 77425eeed0e311fbc6aa316f9170ae74
BLAKE2b-256 2b37ced4c6bcbd04f85c8f1a0278dbabc7596b4ee12a4897618b80cb144fe84c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp311-cp311-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee26d948bdfa17c43589b30b067841ce7ba7d4bcfb3567f7541f8897391eaf61
MD5 7fb1b8f15c59327d2bc6481c79f3a427
BLAKE2b-256 68e3de585a89f9ba6dcc0ab8b6b88181764d0667cfdd6a072b9141ad4ede7b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd33f999028d377d4f4596174b7310de5c2b0e186062c0c32e15a8e7ba3df364
MD5 7fd0497457eb963ae6691578dab28ca6
BLAKE2b-256 f02284e5be15aae4a207a523d24ef08725cade89d30e8f859299721fe68d1eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ab973ca3451aaf0b5f55795df464448ce4babd8d25437d7da849dbf60bf4b3ab
MD5 a4df33d8dcecbf8821ab0456817de148
BLAKE2b-256 1306f59cca0f24aac9a7689c017334d8dd6d72fe6768dd14228c413bc46af277

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a9d7796460d1cd1a321eaddb7e38be70cd36e6eed23a8f4cb20eb39c7ac10963
MD5 2098ef51c23e9bb6d7d4ca1aba445449
BLAKE2b-256 e8bda52de3560d6f51aba143df03e4fb80c3ca938fbb76b0e9846185c7f51744

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd7d94b8f1a60a07182cd16162e427f953a04ceb07a99267a56cd60147cfdb24
MD5 327784f6477782151411f390263c313c
BLAKE2b-256 9b09220b1259fcc84acb395c22abee4de9bc4c7ad04315b46a4dc18be945adf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp310-cp310-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3e1098bbe408fd642e85c08a6332c8577c3ff71ce2e11227c63694b0b5551de
MD5 74610d4b6d82689dd473edc5d52e3a63
BLAKE2b-256 653c7665038f9879af51faf3c14a21c55e10a6e24fe33e8b761119a0fcbbf6e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e37d109908bf859da396bdc404fd7aa92bfcc9ed7e8766b61d538f736d26f061
MD5 a532eeb1d664fe42fb229977b982e904
BLAKE2b-256 77563ff8208f8009b274dbffd8ce99d5de4058f2dbb9a538ab3d479db3d1aa39

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 58b9c67ae7b5a564f5481d95e4b18f5514d252ce0294508d5c8719b2c6cc7b8f
MD5 b3998c803052056a70e2f04737e3914b
BLAKE2b-256 4766a622bcc32c602a2b1df3b2646461e5cc0ac955a72bcd443f105682846d59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 972968b263a39cb1045dce0d29592ccfca5b9e4d6201e3458b6947279dde76f3
MD5 cc4f994c9f6242eb21d85644871c7cc7
BLAKE2b-256 201e039d897e66fa31a380335fef0475142cc7f537c8f4fd6d257c22d007de72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pygfnff-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pygfnff-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f38fdbe91ecce9e2e2b2ef059e228dac2b087e2c39ecf45cc228ab69e170aa3
MD5 1c8e9715f7a0a7a8cdea2108e4194f85
BLAKE2b-256 157c31cd3929a1e3e942ca9d30be057e1cdd71bee94fad1cc886b333c0c86b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp39-cp39-win_amd64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5125695f5ee65098b8eebad1aad0ae5888eb20b45dffcf584f2cbf5edb2f5d3b
MD5 53fa1316e308b9e4c2b9c9bbe1f8d440
BLAKE2b-256 00108bad065779403324d34aaa8712002b0c0a56a2e532b19a47c59a3c1e40c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d01e0e03ecb0fac8eba124cebf695dce8248bfb3540e0ad850335a93fc2a015d
MD5 5045dca1fb8da3efa49be780e2abf0a6
BLAKE2b-256 e60baa42dcfc075f1c2abe4f5421196d718e3e7333586b3bba25aaabfccd7cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7d6282b602c6e8b2118b906cb59d3ef750e23ca683aaca89d1d1f89295e14cd5
MD5 a03f224f634cc280eda6485fa89047f3
BLAKE2b-256 152ddeb9e7977e2c35ccc2c61d3bc708a0ee3f81dd4ce3865ef29a89e373d05b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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

File details

Details for the file pygfnff-0.0.2-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pygfnff-0.0.2-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 99161b2a8c28e2e30bbaac31cbbf192f3c25a44a4bbc74803fa688357e4dc2e5
MD5 f6872e75ca8f5617e966df355b13743a
BLAKE2b-256 37b87476dc9678c5d9dcd59ba159f6220d15c36439104907d0969772d978b9fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygfnff-0.0.2-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: wheel.yml on LiuGaoyong/PyGFNFF

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