Skip to main content

High-performance molecular simulation toolkit with Python bindings

Project description

FBTK: Forblaze Toolkit

PyPI - Version

High-performance molecular analysis and building tools powered by Rust. Designed as a "Transparent Accelerator" for Python (ASE/RDKit) workflows with a smart, object-oriented interface.

Features

  • 🚀 High Performance: Core logic written in Rust with parallel processing (Rayon).
  • 🏗️ Intelligent Builder:
    • Optimized Initial Packing: Grid-based placement with uniform density.
    • Polymer Synthesis: Automatic chain generation with leaving atom support.
    • Built-in 3D Generation: 3D coordinate generation from SMILES handled by internal VSEPR + UFF engine.
    • Fast Structural Relaxation: O(N) Cell-list optimization with the FIRE algorithm.
  • 🔍 Advanced Analysis:
    • Parallel RDF, MSD, COM (Center of Mass), Angles, Dihedrals.
    • O(N) Neighbor List search.
  • 📏 Robust Physics: Correct handling of PBC, Triclinic cells, and Minimum Image Convention (MIC).

Installation

Python Library (Recommended)

pip install fbtk

Requirements: Python 3.8+ and NumPy.

Standalone CLI (No Python Required)

For non-Python environments, pre-compiled standalone binaries for Linux, Windows, and macOS are available on the GitHub Releases page.

  • Download the archive for your platform (e.g., fbtk-cli-v0.9.1-linux-x86_64.tar.gz).
  • Requirements: None. These are self-contained binaries.

Usage

1. System Building

Build and relax a complex molecular system with just a few lines of code.

import fbtk

# 1. Setup Builder
builder = fbtk.Builder(density=0.8)
builder.add_molecule_smiles("ethanol", count=50, smiles="CCO")

# 2. Build and Relax
system = builder.build()
system.relax(steps=500)

# 3. Export to ASE
atoms = system.to_ase()
atoms.write("system.xyz")

2. RDF Analysis

Fast analysis of large trajectories using smart selection queries.

from ase.io import read
import fbtk

# Load trajectory (ASE list of Atoms)
traj = read('simulation.lammpstrj', index=':')

# Compute RDF using a simple query string
r, g_r = fbtk.compute_rdf(traj, query="O-H", r_max=10.0)

3. Command Line Interface (CLI)

FBTK provides standalone CLI tools for batch processing.

fbtk-build: Build from Recipe

# Run building and relaxation from a YAML recipe
fbtk-build --recipe recipe.yaml --relax --output system.mol2

Example recipe.yaml:

system:
  density: 0.8
  cell_shape: [20.0, 20.0, 20.0]
components:
  - name: "ethanol"
    role: "molecule"
    input:
      smiles: "CCO"
    count: 50

fbtk-analyze: Analyze Trajectory

# Compute RDF for a LAMMPS trajectory
fbtk-analyze rdf --input traj.lammpstrj --query "type 1 with type 2"

Selection Query Syntax

FBTK supports intuitive strings to select atoms for analysis:

  • Element: "O", "H", "element C"
  • Pairs (RDF): "O-H", "C - C"
  • Index Range: "index 0:100" (start:end)
  • Residue: "resname STY"

Author

Forblaze Project
Website: https://forblaze-works.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 Distribution

fbtk-0.9.1.tar.gz (6.8 MB view details)

Uploaded Source

Built Distributions

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

fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fbtk-0.9.1-cp38-abi3-win_arm64.whl (838.9 kB view details)

Uploaded CPython 3.8+Windows ARM64

fbtk-0.9.1-cp38-abi3-win_amd64.whl (871.6 kB view details)

Uploaded CPython 3.8+Windows x86-64

fbtk-0.9.1-cp38-abi3-win32.whl (805.9 kB view details)

Uploaded CPython 3.8+Windows x86

fbtk-0.9.1-cp38-abi3-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

fbtk-0.9.1-cp38-abi3-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

fbtk-0.9.1-cp38-abi3-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

fbtk-0.9.1-cp38-abi3-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

fbtk-0.9.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

fbtk-0.9.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

fbtk-0.9.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

fbtk-0.9.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ i686

fbtk-0.9.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

fbtk-0.9.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

fbtk-0.9.1-cp38-abi3-macosx_11_0_arm64.whl (987.3 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

fbtk-0.9.1-cp38-abi3-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file fbtk-0.9.1.tar.gz.

File metadata

  • Download URL: fbtk-0.9.1.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1.tar.gz
Algorithm Hash digest
SHA256 89d35607d9c77bc7c4cf6a8a0cd0487cc45f311de1635e8126f727358edb7cfb
MD5 960e6e89e861ca67ad3ce07c62231599
BLAKE2b-256 48281a040a1738ebab5e968437cb8b81c6ef1b57699b643711fcd3ae05e3651c

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 068a02f217967e938224766348f14db37335eab68e5dbf6c1e3621efcc1c9585
MD5 d5ea3cdb438da7d76ac60c402098463e
BLAKE2b-256 95c64c4833d1e3edb0dbd2d8b3a9d1bf54f4987fc94af9558f09d75ab7e8ad33

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5210b71fe9c5089a05b17baae3a3ce1f080d916f5674e4f286318ace07922f9
MD5 f0099d27b9264d0a13f3b3631a7134f5
BLAKE2b-256 d9e9f2776928b75b3b29aa7272a7bdcaf9438778b14d782dcc7df47134205e67

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7b4f20214d251d10d10350cefbd8176541149af78aee590e5b3bc74adcce4ad
MD5 649a6fd5332ec74fa8272937bfac463f
BLAKE2b-256 82d8b7479e7190acc9973a2c3cf60b71d599fe9a65da10b47a1723ce3f2420b6

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b6f5cfaecf9ccb0249c0bb0cf6e557abfc0f5cc70ef632088fe95b961007b9f
MD5 514d1b198438de2f9148a92cf35b59ab
BLAKE2b-256 82d31618646d50d4025eb7878ca2991689d2fa58dbdcd1ed89c6e003c36e6bd9

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32bab4576b9139d1d773e9e7a2a67f817e9841d1c0284df2a60f4deb11a20f6a
MD5 04b5acb6b18dd48b25a0c1202218519b
BLAKE2b-256 e559d4cb06a5a14fb0a23b9cb696e757ad9fead1b9d4977b1d6960bd76ebf092

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aafc588ef499dd83a95bbd4a60836d9740bd43a3d26e66fd1c0d6d8de4d1a26
MD5 cc2116339580bd0eacc4c57367a4a907
BLAKE2b-256 5272119b6e7683060312bb8ef10758a72c11fabce33a836dd978653fb79c5bd4

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de9ff01305fc9181296efb8341677350bf4ec481530907f33aa1cd01a3288ff5
MD5 4015c21681f45750c2174a7526547496
BLAKE2b-256 f4dee9bf3a444b5f7158c215c5aeed196babcca28ddcb4b402bc8ee8a6c4fc61

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f62bdd53716543c71472ca1f20d04e877cedf018719f7f3dab47b4e24e131f7
MD5 ac7f92499e8ce2808656d40a1654c96d
BLAKE2b-256 4d096ac9f54bc22f580186d28bccbe3b0846139fd19428dc503f09146d3f05aa

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f99e6f5ddf2fc27ad61405659147daec3b74cd37d006cb8391fa672c80093467
MD5 e7c2aa55986daaf504ffe16c5b83f3a6
BLAKE2b-256 951592e4644d77ef732d176774695fb406025253473b37ebdc45074aa8793029

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f1349074e9295622272495a3ac35b05db1c0cf1235cbadc532ebe67862857f4
MD5 df8904b22e1eb5162d5a033ace35ae4b
BLAKE2b-256 f1de06df2c77b5cb264e5b852aace8ac96eab222c8c0935eef25d7a77b303861

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-win_arm64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-win_arm64.whl
  • Upload date:
  • Size: 838.9 kB
  • Tags: CPython 3.8+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 f88fe6d29941ce9098eadaf5adf2ce541744428a9627d21ca5ee1c18b76394b2
MD5 ef27a3fc724bb44e376f45dad8c27577
BLAKE2b-256 634074d466057795d1e036a140c5d42b91d06288c8f8cc042054cc8e65404efb

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 871.6 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 98323c3c9fc56969a440132ec5b531e1f56285b8a548a938f95db8a005b25456
MD5 ea9c3cf6457d0008b5f04c2aa5a807db
BLAKE2b-256 b644943cc53cff4ee54a34336f451c7306baa918ab719d24228b43be8cf7cfb8

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-win32.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 805.9 kB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 b8d9e647b7602529dff4639bef908d8c28d727212fe88aa3ba13e399525ae54a
MD5 35d33418fc85611a8afc8647a53bf564
BLAKE2b-256 953e4b0d43801ad14c2b5e9b5ebb7fa73a8fe400829c556b005bb76fd359b03a

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 223caaa3905229b16a910e004f2aa21e0e10e3be4b933bf9ebb8df21c92caf0f
MD5 f2db79adf0105d9d86678786b28dd697
BLAKE2b-256 809b6695eaab1034f48c1c8c220d4e56d74a20d363612f75801ccc87bffa3ea7

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8845818c6d461185fb2b11c9e8db9edad4aabece7977c3cd7dd820e8821356fd
MD5 3a2c1ae0a66afd107131b5892dffec37
BLAKE2b-256 1ca47a71007caaf3bc1d796a3bdbfadd728caf3d15d1e2cc650c503fbaa3c358

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b79ee866a29739d895f819f02131ed5bacad538710055b894a2a87d6bb76285c
MD5 e4f84b5d9a716c8038c144121d3c1d4a
BLAKE2b-256 f66f8e1d5884931bfd537f624482aaf4313c5aae78fc1f42c31a3f94a862e478

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6682fb594a13505a7a346ff0565ab00ea0c17ee4b7e79e60b179640ce8b603c
MD5 aef451ec51e0534e439c91fd7ce56e8d
BLAKE2b-256 a5f7c5f3314f34a76f1e957f7dd3c745a5e2c18763f9a3f2bd5a2700ccccd491

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1e36c605c7ee62519ec8a854ed248ff58d6f9e5bb19aedf6a336b71af2cb911
MD5 ad45ccc18e1e115497c02d43558e9ed0
BLAKE2b-256 6dc02061b2d81e95b6fd7e9584d844a85b3290eb20566b15b8f5e1fc8ebcd3c1

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf7974194d491ac58d85efb4d2358e5993aaa30a84e92714d5309332d79a2606
MD5 eb3b7fd12487d8d4df422c0a1d04258d
BLAKE2b-256 e2a884eeb2591f5e1f437979087e7b4e4584d37ffe6d251b6ad47600752a188a

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db92c2213556aa0f706c081f1d755588c7b92e2bfdc3c07ef84537087feb4d83
MD5 32a8a9f021da31cd6dec44ff4b2ddb4d
BLAKE2b-256 e9a3c0665cf3d83243ba70c6bf4e15ba1940a98a6f6198ed635da8a67cf9874f

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d4ef44dd5badfb0232a5e65b79850924ffef729bfbc33529071f5587015654e
MD5 9901d317e125235babbaa77f4d7bfd6a
BLAKE2b-256 b4dc8ed0efa412c37531800ad7e1bfb62f009fbd1a2978edf2740418e35273df

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9efd659d83c9def4127b9bc4d552ebb92327bbc8b6027a5c5830b74e312d33ef
MD5 2b9c662685e4a891cb717d19d38eb3fe
BLAKE2b-256 190d982e7afb486cea4d4d0772fbec0b3866efcc0168ad6b9ed962bcfceabdf5

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d19a062e8687f5fe04ec09819306616cb58fd6f4145949f8499661e3ef9b478
MD5 91b5a4c74c6ead6bb12822e134d6857c
BLAKE2b-256 f90ef766c318494428932ab9001ccd8acc6e50a8e8d2399c8f234719a7c3edf0

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 987.3 kB
  • Tags: CPython 3.8+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5410749c21995a121d9e0856ea55e6ffc68ab95a6213689dcec686aba433e64
MD5 4166ad852e00ed04a69177ce29d09159
BLAKE2b-256 4306d05db5c3a5e4e0da16e9112fc32b35353add19f97a72d38aa534f2316f65

See more details on using hashes here.

File details

Details for the file fbtk-0.9.1-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: fbtk-0.9.1-cp38-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fbtk-0.9.1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5268ede7f97b0b1b478691c069f3870c7a6756e6dcf1829cdc76a3d8d5fed0b2
MD5 42b611a6444f7f94ff7da78ac53f062d
BLAKE2b-256 9820d61f6a0644ed0b712765987f985ea581fa9e7f58d88381408f4d4888580e

See more details on using hashes here.

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