Skip to main content

A unified, high-performance computer vision tracking library.

Project description

Trackforge

Crates.io PyPI docs.rs codecov CI Dependabot Updates Security audit MSRV License: MIT

[!IMPORTANT] This project is currently under active development. APIs and features are subject to change.

Trackforge is a unified, high-performance computer vision tracking library, implemented in Rust and exposed as a Python package. It provides state-of-the-art tracking algorithms like ByteTrack, optimized for speed and ease of use in both Rust and Python environments.

Features

  • 🚀 High Performance: Native Rust implementation for maximum speed and memory safety.
  • 🐍 Python Bindings: Seamless integration with the Python ecosystem using pyo3.
  • 🛠 Unified API: Consistent interface for tracking tasks across both languages.
  • 📸 ByteTrack: Robust multi-object tracking using Kalman filters and IoU matching.

Installation

Python

pip install trackforge

(Note: Released on PyPI soon. For now, build from source).

Rust

Add trackforge to your Cargo.toml:

[dependencies]
trackforge = "0.1.1" # Check crates.io for latest version

Usage

🐍 Python

import trackforge

# Initialize ByteTrack
# track_thresh: High confidence detection threshold (e.g., 0.5)
# track_buffer: Frames to keep lost tracks alive (e.g., 30)
# match_thresh: IoU matching threshold (e.g., 0.8)
# det_thresh: Initialization threshold (e.g., 0.6)
tracker = trackforge.ByteTrack(0.5, 30, 0.8, 0.6)

# Detections: List of (TLWH_Box, Score, ClassID)
detections = [
    ([100.0, 100.0, 50.0, 100.0], 0.9, 0),
    ([200.0, 200.0, 60.0, 120.0], 0.85, 0)
]

# Update tracker
tracks = tracker.update(detections)

for t in tracks:
    # t is (track_id, tlwh_box, score, class_id)
    print(f"ID: {t[0]}, Box: {t[1]}")

🦀 Rust

use trackforge::trackers::byte_track::ByteTrack;

fn main() -> anyhow::Result<()> {
    // Initialize ByteTrack
    let mut tracker = ByteTrack::new(0.5, 30, 0.8, 0.6);

    // Detections: Vec<([f32; 4], f32, i64)>
    let detections = vec![
        ([100.0, 100.0, 50.0, 100.0], 0.9, 0),
    ];

    // Update
    let tracks = tracker.update(detections);

    for t in tracks {
        println!("ID: {}, Box: {:?}", t.track_id, t.tlwh);
    }
    Ok(())
}

Development

This project uses maturin to manage the Rust/Python interop.

Prerequisites

  • Rust & Cargo
  • Python 3.8+
  • maturin: pip install maturin

Build

# Build Python bindings
maturin develop

# Run Rust tests
cargo test

Contributing

Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.

License

MIT

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

trackforge-0.1.4.tar.gz (30.7 kB view details)

Uploaded Source

Built Distributions

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

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (325.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp314-cp314-win_amd64.whl (153.6 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (436.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (322.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (263.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

trackforge-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl (268.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp313-cp313-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (321.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (262.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trackforge-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (268.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

trackforge-0.1.4-cp312-cp312-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (322.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (262.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (268.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

trackforge-0.1.4-cp311-cp311-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (325.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (264.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trackforge-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (269.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

trackforge-0.1.4-cp310-cp310-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.10Windows x86-64

trackforge-0.1.4-cp310-cp310-win32.whl (151.5 kB view details)

Uploaded CPython 3.10Windows x86

trackforge-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (325.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (264.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

trackforge-0.1.4-cp39-cp39-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.9Windows x86-64

trackforge-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (442.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (327.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trackforge-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (327.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

trackforge-0.1.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (442.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file trackforge-0.1.4.tar.gz.

File metadata

  • Download URL: trackforge-0.1.4.tar.gz
  • Upload date:
  • Size: 30.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for trackforge-0.1.4.tar.gz
Algorithm Hash digest
SHA256 bb3a30a4ada752a91aeb1ca1d46cb6f838f8f0310cc7381435e21ed3d992dbfc
MD5 08cd00d0507a7ba6e6db4cd4ea7a1b26
BLAKE2b-256 93c221679b872bbc088f681752f71a76df777af6af4aa9ea7df63bb2373f532d

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d1e1ed435406048a5835fa2d1889339270a7b37bce8e134baa0167a9ee78d6
MD5 6f0e15c2bd658316ff4fd41ffda922f3
BLAKE2b-256 5887ef8de0b932560310c69235d1bfad5bc5c679d836e47de468ff7ca0448beb

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1db46327cc9975589859e21617acb05e93569e662ddc7f15941070dc46ae9504
MD5 db6ac009d15cb9d9865877a23c8935bf
BLAKE2b-256 f7aa14911d23213fc3de04d6ccdb233a2dbe155117b0bbcc70548f015adbd509

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa8fbc5875d8fc054d9cb32b559da6455f0aab7fbed8dc7fba648373bf9a3aeb
MD5 e608f11dbd38f3196b005e779c2c5433
BLAKE2b-256 341a9a35198e8288ca66134ab9956a78ec6f60f08aabb2eabb1ecb392a09b3be

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a283830024e1c207bff10dfe6835a2fed7f943cde64531c7b7addea17fdef448
MD5 177d60cd37f6d555bb4574b6c4f9f95a
BLAKE2b-256 b8daa4b6837c23dc855ff1a82b1916458e79a971a47343de041db7d3415c1ff5

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d74aa0d0b62e5decc4203945cfa404baffdd6f8e78857f57878798fb44295bbf
MD5 9e96f1bca18dc87c6c27f23a55db73bf
BLAKE2b-256 8c78128dade8054e42a27a18f674b0a55ca79f1b48ca17d236198fc3fe926622

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f69dee1dc17d695fd70bfdfbb9993d38b0fb7181c87d37773d8e170f8bbc6e7
MD5 0c9c9a251aa17b3fd3d83890163b446a
BLAKE2b-256 481fc4d95c4c430f87de95a1b51426f6554d268c9ae20e25aaa424f4125c63cc

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0a586923cf88c1f2883a964659e351d8c5e1caf28d70ebc8a3f964016ad987f
MD5 300b8552fd37a80345a37b7024f62adf
BLAKE2b-256 6df4272ce16d420014be019b63cb848bb6d3b327631f6b79497cc66715188201

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebadbf3c13cf94122c7c2f15fb23d9d5fa2f329c47a84eee9d71c3534c81ab95
MD5 3e2b83152a36edda4c4f44060b6088c2
BLAKE2b-256 4b736019123b11f00e795241c2a5d2e303f8631c878a05ed6ec372059da2f1c5

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6205aff4beed84d16d6f2adb02f77c22b1dacd2425e97af7cf65dffc7ef49de8
MD5 277c40fd798df427263410fe08c634fb
BLAKE2b-256 f7d6a8f07ca37d05978404fd6d2d4009bf62154c60405dde9e12b6d2d0e8c644

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c18d3c0936ea86964eebeb422a84addedde3fc460b5e5fe3526e4b33a92d4784
MD5 eb9f359ad4305a50d0355b9c75562134
BLAKE2b-256 1686943d4c865235f4778f6b19a31bc2d5a2bed467b40104c328d88f2d1b4de3

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9292e0152556712a3c691952154d3c537a00c551414cf5f02f56bef6f69177e8
MD5 32f135c876a45b3528938d4e1c9433ef
BLAKE2b-256 b3958ca9962acfc30e337527a69312710207d87b06e3f135365d8e474b00e373

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9aa59a256523d7ac0de97d1820fedf8a09b9ec1a3778395857dec005a2ada1a
MD5 148f10e316627b222aa9efd47d53eaac
BLAKE2b-256 9cc675c0388e18cae77a303cb6f5ae89c790ae69558f094d37b6283f5f1b7606

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b3a1ebeb4844ef2512237eab899c4aaefcb52a92f473e14707a035dc9fb9841
MD5 f040de4592afca6fb83e914620abf705
BLAKE2b-256 12a1e587220a2f378295969f3c7e7793e58661713ae3f9aadf657b98faf13e61

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58176c16a3597ab070ec185c1f0897b4fa900465babd99de0c592fd78755e976
MD5 6bfa8cff0e222a150bf247a705acd351
BLAKE2b-256 e3f0ce0f5f71e6520e1f202fe0b10daf81185cfbef85dfb4a5cf3368b94a3592

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb84954ae3cb0fcc4de2a169e4c7273d9feade1c3d32d755b643ecbc216c3df1
MD5 27d0b4482b2ce507b0db303b2abe860a
BLAKE2b-256 1cf799484d01532ade17d08bf1ffb3f6558fd297c68b3f758dfa68756180662c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62559724f26402f11d9db8785bbd913f9b612257b10d4b035513b1f4da9dd0db
MD5 e9cefb7977985c778a7a5059126184d3
BLAKE2b-256 146f5d7b39c2c380a01e07537e3a4851a49f8a7bb7938f04f60a681b329025cd

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4995415aa509eeb85dcf76b80a046f1c9e92c8ec1f0bbf58ac6bbbfa44ecdec2
MD5 8939b907e60c6472ab3932909e7578eb
BLAKE2b-256 64ca4afdfcfd12a236723f92736109f5733a6834a008e0a384421844961d9b56

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5cee142b0513e05b5ac4cd4c4f0d357b9832b48848bd832478b71c4a79b1e04
MD5 d28968d53a576ff53c681d7a1a8d7600
BLAKE2b-256 2d1f136a7ac0ab377b30e70d166f9aa17153d0b3459a3034102eabd62b32e8ac

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b4dfa052bf9022b5fe9b63a98687c224bf1066c151c7ad23b66c22388e3a533
MD5 c63797d31b159ddc490258af3eb5ab3b
BLAKE2b-256 fd095d5463696e560ff4aef02b88edf86dda09cd35c681a199fc68603d98f1f0

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf22020f268d25e60e9835851e5030763a4f42bad5c70f76d853ab4b3e1a0a60
MD5 dfdbaeb0eb537d95ec1339d8b20c6c7a
BLAKE2b-256 b914295efab292ada66ce0d5250f9707ab17eddf5658c8c9b075c74b5072037e

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20120733ada9b33268dd24ddf7064d96a1faa615f57aa49c6fb5bad5c1e3882b
MD5 b61321838e371c1737a64c3623690f89
BLAKE2b-256 4ceac47c4d9b62d4d2c59afc689a530ff1033b06277c6169b195ad1c1181b2b9

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b92b582dd024f357e49ac8ef919ae578dd8be03e9fdc67616094a6e597864c55
MD5 5757149b43ca9d4cbcb97b7fa1cab77b
BLAKE2b-256 93592b53bd44959810578caa47f1ff6242fcad011e6924759e1752f01b3d3895

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 689d230be742c4fb727cc2c44c59ab9a3a9967914c160a19ac43480a28621b03
MD5 13900f2a24f7f03fc720dec1973c4df5
BLAKE2b-256 e6b2a935b93ed60a04416e8e4c0d1d26b479400f65dcfa7556f798ef2dd5effe

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f1a1bcdbcbfb166ba49af7de6c422c14605dae88b462db369f9958e6636da6e
MD5 87a9f9c550ca19aedf68aad421f2b6aa
BLAKE2b-256 6d70272b28af5c15b9cba66fd9e4bd74291755d748bfc44b634c041ff333a33c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2f28754b32579ab426c2bb2fdefed5f3eb4df84704ff7251653e3f7bb27f5f2
MD5 bf3b7194869c3638a9a15332aa19c299
BLAKE2b-256 e23651a8b9a4413dc47be9def35851c4d17836e06307195ec3dd2737a8811bc9

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecb6a61e1ef77579cd4c6612262d5ba028b153cdab568667d9f09c32db930a48
MD5 10d3adb2fe55a9f0342acfe722cdc811
BLAKE2b-256 38387413692a9e203f1871c41c64915c7578cf47997539ab97a7a125856bdc85

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c07e7b7d9779ae73302378c8e73eb284293f29c3f978714c9934fe522afe8052
MD5 c1c239080fb1275092b1a965cef1255d
BLAKE2b-256 18d7c0e4018bd5b1b6118aae7cfb4342db7886d8783ac9eeb4c6a140bd495210

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e4ade13217a8f275ff1ea83b7d2cf6d844e4e69b3ef8e8f1222d16006f29e20
MD5 6f214ca3796bca35e0f85e09706a419f
BLAKE2b-256 fe7ca6d9eb9e3bd6f434eeb9cd89410ef6be1c2c630d603fa6e2c48de53dfec6

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 580c1cddde1658204124aac5fa9ebe152de070494d85ecf2942501bc72375e5e
MD5 e612f878a4a96505da93d5e11f91c835
BLAKE2b-256 0f40cd4d776423dcad960bd45395f2038e77c04fcf95ed359f2ce4322a71d678

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6ce45fba07470571f82f7d9de746eba0d427523ec787e8c9cc45787d41b4f25
MD5 82ce822bc5fe139129e53f99f7a2c274
BLAKE2b-256 97a2cced818cd2ae53f056188b472f01abd316bd17e9cd211470d18073107c9c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8fcccccb729aa9dbcdd65720e76c223104bcdc700c1bacc41d5562ed6c048d
MD5 dc3ea807d0d22fc015fff74b8a518de4
BLAKE2b-256 3bfc855dee28c11b50190644db5fd5aa7a7e49d0162cc9598b08b6deb952fb2f

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbdc779ac82e0d8e0b19450d1bef4aef865bb842765d6ce497c7bda06888ae48
MD5 462c50f643102f93e0547cbaf4b83c57
BLAKE2b-256 45c9e98cc6db5491c5b40e4f47b8d29136ba7500828f83582817c9a0796dcf5c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 049e6c04ec2fc9f7b53652d1199f70ce6c3d88c0045ed1f5914bea55da7eca06
MD5 06a6bb46db99696f65414a953cc3dc93
BLAKE2b-256 e90d07c09ff35c4f624b6351c56e39bfaba2752447af937e09b844ade6052919

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab93c35003ede56997929025aa212ed3d5dfcd1d681e134cabb84edcc3e829cc
MD5 4a65d284465b05ce41a90a6f086e349a
BLAKE2b-256 93d504230dc00be5acc59b96b04ed9803b713d335847431de734251cfacf6951

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbcd4d69f635aa5523ae603139168ddc2eeb3e6ddbf8d8b1c917900206f983c2
MD5 848a7ec744e04a7f859b040f1fed2748
BLAKE2b-256 3a23abe883b86aebddbef27a61b2fa7e6dacfe8e49334cc6396df95767875ebb

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c82eb7f800539f0a4bfb4a75bc21c67df1a1f814e4a5d26c195c64dbd0e2eee4
MD5 bfdee94feb159163126137f9fc04821a
BLAKE2b-256 5f6b6eb086f39e14b603b87f31ff5c5964b217169ffaff10cba585e87fa920e2

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 412ed3843d17e8568e4a5e88d7d1ef91bc331a78f8ae79491cdb9b68a8973624
MD5 23048d3e6bc8f425472b6b5a1a1bb710
BLAKE2b-256 c997b250a4e96724241e328eec17175f0fcb888c92ab3db52caccc9a0766f0c7

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ce38f3be4574c65c02264e32c8889d556fdabff4fa77320dcaaeb746e1d618d
MD5 65c622d52ea4bcba47ae3a598ca62cb9
BLAKE2b-256 d5e756a090c22045fadcd74c292b05e1f571182617c123ead3861830469dd5de

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef32a813775533b079f6fae98d187fe4797838a859a88f49bb12d8855360bf70
MD5 d356cbc7a150d51bdbf01f2a5f4453a8
BLAKE2b-256 6ac3de30795ba1c70cf0f10e27700756cba67097b74b3a24fbfa6984a10bb44d

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0830e1e1b167773443a7687f7762bd15e23eb188f0f5726ad2a46aa26b45742
MD5 84e02a9ad7e1c05436b571dd45034a26
BLAKE2b-256 923eb60e43fcc8447133a2649d39566d75f7b1ddbfe95e23ca06781ca08f9d7c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db8a0c91aa889d997915431d3553e6212a28f35a0f1b7db3057eed91a2c52910
MD5 acec6dcf7025e2590257ea3a7501653b
BLAKE2b-256 d43c5c725ad965836133190bd04fca0b4f24b52c2b1bd97a2299b1848ad20662

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 19693a998af996a285a69ea1c45632ce72b7468bb6d00ecc4cbc30bd6524675f
MD5 db85bf72b70f8dad1c2e8b5055abb461
BLAKE2b-256 bc1da9a8116e1e39ef12d4ba9ac9f3a33a8d976303b01085e571194cbeb8bc1e

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78e11e0f24137672377f5e9bc9a8c4d55ea874de87d8881ed85d58121dba21c4
MD5 2ae4fc022e108b865e83a541552b8b89
BLAKE2b-256 e437bd25bb0e7c87ee3c0202eb54e3b67460d85f1dc20b5e2d673700a36d4f6e

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c614de88e53f75182aca0ad6446f06509aea0e0833300b313e97f60237397368
MD5 4f56068773942dfca7683dc0e3df4c07
BLAKE2b-256 201926d0f2e5ab3feea87759cf29e6bb47d6684dc6609601aa7ce4a2f98b5d12

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f5da42389560236fdd3c4c3da88abaeb78910d0cf307c7201fc2dae92117094
MD5 9ccf605b596acb09202e977e6c9d6cb6
BLAKE2b-256 6b725b957369e2525beb15fa8054ff2d331ec0ec7592d7d7b68b1958365d9604

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ec911b69d5e94d7a0a805093338fe4c8cce1cac454e9b1c05bc05d400feb56f
MD5 83a6a3f18aeed29ccc4163c913e5dc55
BLAKE2b-256 032ca029612f6b4cdeeb3474b2cef5b3fcf69900c0e6261fcea652a095b5d6e1

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37da2b8b84e67f6219512fe214341b9be1ed2a1d4f6adf7d8cdbfe30b2514a47
MD5 29a5dd394507ef88e434198a78576721
BLAKE2b-256 3a95dc356e3ff46adbc8530a016c29599d4e10e456ff57492bdfa23aa474105a

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 86c5633f50a5ba746742e2420a92a92d17daccff47c7da09dd82b00617c47517
MD5 14417a247e1168127098315e925d61a9
BLAKE2b-256 a20d6d92092a5ae6d1ea342645f3b965858ec30633bf906e1fbeb46c0bd112a3

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa30b9211da21c675b1ae800284e07e3ca55d725a4ee635d815d9c53ee5b91c
MD5 d91e770f5796bd57273bcd196bc075bd
BLAKE2b-256 76d66af21ae0ead577909776815d721a476a301d136a55470f4a9528a7148bd2

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba93daf09184616bea2d673d23708b2f4477dbcfe0dbd56959d997b112af1a90
MD5 97ffd6dbdba241cd7c69c41b86914063
BLAKE2b-256 700fbc53aa0e7293a9f7bd07d066ca08ae7009a6981606e8525bd6b1523347c4

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 942f99c0562998d3c513ecb5e5fd7bd5693b2c0fc22abc34e3fed90ff109a5bc
MD5 d8f2850270816073d99a3f2e3c2fba41
BLAKE2b-256 bfd3add7d574c93456f64c5f2a5299b4f2b891ac91079573a41950e0239ff450

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: trackforge-0.1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 151.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7dae6da4977728331debd667f562b8c0c4fcab8a4a9bb0ee5510e082cd827fd9
MD5 6e1bc0da1f474e71d1dfc43fcae4a345
BLAKE2b-256 4f520091bd4dd1482673297f56ab50ddae1c5d9465ba97184f811e076b266805

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 627f30dc0ad1a49687b8649d7b67545545b60135223794212d64f05159b9e7ae
MD5 c28b31acd2a559f187b781f9c5d047a6
BLAKE2b-256 d1da02f1ea3118da707fef65fa0a9505dd4627a4ae291cb152042df0d9b62464

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 252dc8007628960b3713f260a22c238f95ec1eab7621520e6af028672228a1a9
MD5 cfc52208ffacbedb2ae243e7bc1d6e59
BLAKE2b-256 6902e06e4783fbb2bf81ff96f86ebf94fbc5a378ff397a6eb70445e30c66fc3b

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb6d46f204beb9285a1a1208e1e74a4793d7f71e95337c593117ac916d4f40df
MD5 946ff3b7aec3c1ff488b4b18353ce33a
BLAKE2b-256 f1189ce2c324e1a0e9f09b8671020980734e524818371789bf7483351af8df84

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 344f37911a28be5dcdfe6e93d4ad16d3f15cdd1e1d8c5130f578a81ea2801efe
MD5 8ff2a6eb850ad3b95bc31606a37abc13
BLAKE2b-256 6d624687412453d89257e94d5c3a8f23e287f427100add3c1a5715d0fd6ae32c

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d3fb2b055c609e96037fb43e3cf2f6ae17911386a3109c80b32017765eb95a3
MD5 57e290c4b0fd96ff4c43c8652f36f5e2
BLAKE2b-256 3a4d5083351e2faca3555d5068fbdf0a866af3944710161e034d096077755a3a

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5851ce7a6b3bdd56511d211662b753a7c31d4c0e413a97dd512067da20637ba5
MD5 7ec22583e7db320cbded62deba25ac90
BLAKE2b-256 0f5aefb1d79066d0e398899b13bbfd136e7a113132e295fd4894da0d18b54405

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be07969a72cc15f5d62c465538c6fc268b3accaeec488436dc6a7001da241ccb
MD5 f952c414d6f9603e3cf85b7b1d689ed0
BLAKE2b-256 06fd31452664d3080b225ee7e1d41e79b4ab5b4c67ff10cfd8d5fcb966b0689f

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e41ff1fb29286016a5855039f61c37e1b0cc57a3d5af3534d35e78da51a0648e
MD5 f176624066a23a0d6912572a7a3af535
BLAKE2b-256 aedcbc74512b3549a73de6f7ef161dc6bc9da01f70a52134ced41a5213c042ac

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7aa8527db89f583e9f0f545b8c1652a15cf6b51cd166897f9055670e3bb97a74
MD5 fa66cd226e3022735f41e9a439661475
BLAKE2b-256 9fefaa0aa1dc750a191c24d6a54d6a6386abd02a168f42c1df2686072596e4b0

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c93f4a10d45814bc7f6b1f8a121995f2525255335882b968550bb82cd98b358f
MD5 0c431784210b93cbbc89d9d266b8061e
BLAKE2b-256 3e6125141d128a7b4215cc722677686345ef80373d02c48ea7ee31abcdd11893

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c69c3a85d6096a14beeff06f336c3323f9073515d5dd0e30dbf2f39c22d698f0
MD5 543851568242e2d024eacb7b679e71ad
BLAKE2b-256 ef4cd75dce570cd0ed727ce06af1fb30208a0e5107fdb27d3f6256b5c9b52a71

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 898f1b077def5cb41de23f1b9c2a7372596c1a27851b7f5fade3a22da1e06518
MD5 1dfd8cea2f21b393f51eae62cd622263
BLAKE2b-256 f959863a30eada3105e62d3ff2b2b46a84488976900254d249e16f40d3ced660

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f77a95264b53a9c1b2cccda3ab43eaf406a35531d11eccc59f196ba3c7b58fc3
MD5 a1ed94ee9c811e65aa6e7506b8c3f81d
BLAKE2b-256 135b8396cd83725e7a21e5f861100cbd665dff96d47b89387985ff5080f4ea5e

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5ecf1eafeca6ae57ab2db9b9d2296d6fc2744d9ed0b90c3390431a9d2d7b942
MD5 e16c3121b972478e28e26ff3e81199cd
BLAKE2b-256 31b618588989f7bcaa8dfcc3402d991f1ca1fa1cd2d1a72c5ad7919c666e9cd4

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 087962f0e43ed0b6df34fb8dd97eec4bc556a4bfbf22f209544b83407c8bf4e0
MD5 63e391de4d88034008de5fab09d288a7
BLAKE2b-256 91403b150d9e75bee6fffc35a30c7e8995b3a9be9b1c5cc1f1af9f72532f6195

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 905e662120970e4afea3acdba58dee8291bf8bc1994079398ab282942265adc5
MD5 21392d85e95c64dede81805dda001532
BLAKE2b-256 b4d12a9b0f36c2404548da8215f94fc24128c438df7c376d72233174a2d74f5a

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11a12510a238e9dab358b8e23fc9e2df87490e06c454f5b61c084c61bbd835fc
MD5 557d4ecd8531bfbd836294fc6dcca4c6
BLAKE2b-256 6e48adb201e33549103951841baf410aa977bd2120ba4999042ab21fb3d7ba2f

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f4a7fba597b84ac37764801a3e93b684acd3eb2960b91b73b09c5d929590ddc
MD5 c31dedf61f7549d5bfb283131ea94120
BLAKE2b-256 05c86a21f8d58ca66a50529d1002282aa2f6acfee8f95e9ef7628fba52151b69

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 136b1c1a98168180e5a7610dfe3639e23cde3dd721615443dae3689d21496e30
MD5 1d7009de3e1101aa931e93d29fc7e2c0
BLAKE2b-256 51da93feb4954c043ad3f02b5e33ef08cc3fcd8aa66533cd73f6f3a43a32af43

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a002d0455e405c43d77568c9b232b1443be4b5ff91cd8adb955d8895fd8835
MD5 b5e26ff57ccf32d8218d0a270ca2f2c9
BLAKE2b-256 fbdd4b41c18f1bfb01425043dc2c9ca2f107df1da6b17e856d024de3ae38c9bd

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 404929617d8da9e55497a816b28c3a6b3c7a4b9bdf81eab13e3a2bdcabb34758
MD5 0b0d4aaaaa1261536e2fc727c896c47d
BLAKE2b-256 f1231e523332e34a7d573547d8451a5100ad5e73fcfd5d2c2ece6dfaf1a0634e

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e452f9c85ccb70ca10d256c8d8b13b8b3f55c4a63086021201e2adec92775d3
MD5 5f228d5365f338e13cc0c1ade9c16a41
BLAKE2b-256 609fa3b66ba2efc2f6f943a1d5244cbdb4f9454362701e050ae44cc3f9b9faf7

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f63efec6093b79df78348592ccb042c42dcfb60a8c13749001f0f554f62c1aeb
MD5 7274a2aa33cb753bfc868e331662b9db
BLAKE2b-256 d506d7eac1e694cbb5dbf23d7abb5acd2c204629da4642be130692cae40906e4

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fcddc98b72698b373e121d4a986192ee714045b45c34536ecbc6858b3b6276e8
MD5 d30d36420c6014af2d7a1de7d3abc1d6
BLAKE2b-256 97101aa97394c44c70d175bb527db08f7c90ab647886a1e18c69e0168aa5bda1

See more details on using hashes here.

File details

Details for the file trackforge-0.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for trackforge-0.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec2ff010e303528a4cf1b151011ff5f8477183ed21e3a489b7ef162f997e29b4
MD5 56f221866cff05be87910ba1998ddb72
BLAKE2b-256 4dedb40f9570e5c9880b76f9605d3c71bd53dfbc7b6c033aa7508c1f46985d97

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