Skip to main content

A unified, high-performance computer vision tracking library.

Project description

Trackforge logo

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.

Roadmap

  • DeepSORT: Integration with Re-ID models.
  • SORT: Classic simple online and realtime tracking.
  • BoT-SORT: Improvement over ByteTrack with camera motion compensation.

GPU Support & Architecture

Trackforge transforms detections into tracks. It is designed to be the high-speed CPU "glue" in your pipeline.

  • Detectors (GPU): Your object detector (YOLOv8, Yolanas, etc.) runs on the GPU to produce bounding boxes.
  • Trackforge (CPU): Receives these boxes and associates them on the CPU. Algorithms like ByteTrack are extremely efficient (less than 1ms per frame) and do not typically strictly require GPU acceleration, avoiding complex device transfers for the association step.
  • Future: We may explore GPU-based association for massive-scale batch processing if data is already on-device.

Installation

Python

pip install trackforge

Rust

Add trackforge to your Cargo.toml:

[dependencies]
trackforge = "0.1.6" # 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.6.tar.gz (614.4 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.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (301.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (291.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp314-cp314-win_amd64.whl (158.6 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (301.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (252.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

trackforge-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (292.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp313-cp313-win_amd64.whl (158.6 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (301.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (252.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trackforge-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (264.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

trackforge-0.1.6-cp312-cp312-win_amd64.whl (158.5 kB view details)

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (301.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (252.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

trackforge-0.1.6-cp311-cp311-win_amd64.whl (159.9 kB view details)

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (301.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (251.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trackforge-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (264.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

trackforge-0.1.6-cp310-cp310-win_amd64.whl (159.9 kB view details)

Uploaded CPython 3.10Windows x86-64

trackforge-0.1.6-cp310-cp310-win32.whl (156.3 kB view details)

Uploaded CPython 3.10Windows x86

trackforge-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (301.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (252.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl (264.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

trackforge-0.1.6-cp39-cp39-win_amd64.whl (162.0 kB view details)

Uploaded CPython 3.9Windows x86-64

trackforge-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (320.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (303.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trackforge-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (303.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

trackforge-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.6.tar.gz
Algorithm Hash digest
SHA256 fbfb4c2c21eb18490106906e2df773169cc528fc7a04a36319f63ac473597147
MD5 1e0305e32655918e84547f5c20240cbf
BLAKE2b-256 454a00110d72694f0a201a193e293cb5bb44aafcb7f25cfd57529d37b29288f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bc540effc10d33e40589a709e0f90860667956d821c3c59efec3e5ce87ae223
MD5 e7d8aa3c3c2e796304652f13608ec487
BLAKE2b-256 03c9e98142ded42977bffb8a65029974d2438750c5ac3e4463729709d3f34769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97e5c473f2bbe005c0afb268f355b82cfe2187ab4f2bf2e5acdc893913166904
MD5 618830fd6eba05c38651e845492a28ea
BLAKE2b-256 cae5f83cbb8a91bbbf4e1d115e5112351d71e5f2cee6faaced8a61530fd7beb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 960938e2139690bd8017240d88bc743e66cb709178460fe4eb0efffe94e6d66d
MD5 f3e41e10cf95e29d270d39cf6885f0db
BLAKE2b-256 6195549f54fcb83c126f59afd466028fa8731854bbfd1585191be6466b7a2d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4c90343e3b820de307e815c55380c3ed715063a2b283c4fb9a630075acdf711
MD5 8fbf4060be495f6608f9a14e58c380dd
BLAKE2b-256 78cedf3ee10b5d3e8cf620ce8d0f40a059e9528a731f8f47a492ea18d9daf0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9a128cf6a36cc3a869d5d6119741b2e975390cea838552e03e707546e921c9c
MD5 431079f28dd0e494db9434cb17f4110f
BLAKE2b-256 8d45958f34413050f85bcfc793d7dc891f8594ac4f850e2003dc90b9f37a0505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75d6674258782bfeb1a6adbaf81f5701508332de63a252f15c624439964e3d8d
MD5 41fa0e36985f474ca1322f7cd897440b
BLAKE2b-256 fff49b327ed5c330eac51741d0320bbc2837023177cd29284d4c17feb551c9d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f284bb885f8a2939cb0ab843a47eac1f3825159543eaa6af3e4ddc18fa0cf6a7
MD5 eaf140dfcb78685b5b4ceb94c553d48b
BLAKE2b-256 a559fa78567804ae0f82927777cac54fc86dd6ed4d344866f31ccdc58a77f22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78cc9a00bcea494170ae0d31b34c9fd5619bf40fe14e8ff894a06cde10cf081a
MD5 cd21bb53592580a64fc0a0ccc8ed886b
BLAKE2b-256 76d5fc563ce933099986e8e934c941d1c40c50b5978b216ae7f2c7656dbe6476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a555aec3bfe1a3d308c1b473cc5c0914a2622e64f34d4f6a601f35e4c8ab7fa0
MD5 2b4dfcdc5266268f01bb8b2eae6b0d64
BLAKE2b-256 c904421c27db2e613d757293e95fa8bbe22d109166649eb215226d4cf77fcd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9107013ecf204f3077a2a211a6997be67acad4b73d8d55be364f95592fe778c8
MD5 a1ce451189ca3e366873ad3fd291b494
BLAKE2b-256 a23d94c58ecd34cb1a88e702c06a3c6c4f3fe8a76e10ef3edc80e335644e0567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b248fb72ccaccf1f5d86efd28f667abb5fe8b2f2af3f7adc063d19e62eae9d78
MD5 2efe1aa13bb745e6df6a51c28da502fb
BLAKE2b-256 155c8c14928cbf02ac7258aa376b395300b9e51c91e1c113e3952896a8bcde94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef7609eaec9b987eecb1bd01fb58081563a86156aa1c51a4dd5f2346f4c8cea9
MD5 23ce9db4c1877a0079d5386f7eb67af3
BLAKE2b-256 c2e2716f6453fda0d5b416f073026426f3075dcf599ad87052966cbe00e8ade0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 006c7647a70cb2a768385199da6bfa2c208edd0b101bdc27a55214aebabbaf36
MD5 3fc2455839ade9f824f391ce738862e3
BLAKE2b-256 3122b6afe7806608965b87fec0885c20c9921c23c1d758439c23b89b7fd0cc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 028dd4122c553e618aec7a84e6bb9696a875eb9334a42373260d0ac239577356
MD5 2b369a32ebe1e6a5dd25f34ecbf210b7
BLAKE2b-256 ce4593e8f3907ad7ff129f6ec4306a213bcadcda1d96fa2ea37bd412f83cf424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef888de127389b3e69db4380d933fdb0088f347f39c6a530de8dd66229ae998f
MD5 2d75c4aa85e73955dbf69cf036560c93
BLAKE2b-256 766e69ebb1ea3b58e6b723623e7edec51d4097fbc9412b5375e63d9cf2d2dc4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab58124b551132fa2d046bbafd96fb79551b33335d1d52c71ddb9f84da005ba3
MD5 02b6cbe0575d6a726d3d97c07939a841
BLAKE2b-256 21d343ab64644c4c889232db8a83e0dd94133475eadd6d44a3690da7f563ffb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83e98f2d167e795f352d24ec480efb543dae88327a324228472137f53e791cfc
MD5 48b7ce1c2714e757763d280cecd3cbde
BLAKE2b-256 560bc6c80b1f3adc47541bbff163652427241c113f8b47c4096027eff1f24e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4f038891f4d3dbec072d1c49032d4a0c336240a8768bbb65c9a4d434a2cdb3a
MD5 5e8366b66bcca7783032d6f9d0044a21
BLAKE2b-256 c2d6b4519a7339e96eaeec1ecf941c9fb3a6a76346083d9276e93051d37caec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 328bfc552727e1fe92986a3a386c218d7e58f25ccf06b4f010b7a3d5141794f0
MD5 b2edfccea21a35be574ba1ca441137fa
BLAKE2b-256 7c69a9271971855167c39d62154db0321c29d4df9bdb6e05fc3557a63ed00824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e30a59f03c2e480b5a1355bf771c639b6e71b69904c8562fd3d79678986b0721
MD5 16376a7c21f0b9c923df1ca9ab210c37
BLAKE2b-256 381a8d2ce8a9ae9e4551343a123cfa6f3a2e42afc782a24d116343c42fbf7640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fde3a554302c3860376fdd8e78ca3fab768b38f1bd2c23107c4d433509199d49
MD5 7319a871d6ceb25bc1f9bf5c5cbffb70
BLAKE2b-256 1d7d5735b951eb2e40064a0a83b9ee3272103226fb1e637f114ba3179b8b90ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cca00b7627ea5f01000a2e0f8ce3b9b4efd2bacbdd789dd359650a55ace6b269
MD5 3a3eccb8c76bd4cdb59f585065068098
BLAKE2b-256 c4c35501cc0486211cd091ae3f257e29d048fad0cb9d968b13209a57e00880a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42e636ac908e0319f7c09bd8d84c647cd69161570dd6da4d4269ef1037c2eba5
MD5 379cc76edc96e6823c6408f8f2ed4ef3
BLAKE2b-256 938be1fdd455119149bfad2103afedf61b713a357b5a89595ec3851bb8e6c423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3d12e0ab90040e681313b7eaf27e702915fc684d8d556bd619b11a4be74d8319
MD5 84ff5bb5467abb3b176ef189d6efe87a
BLAKE2b-256 8690853f1f8c1dfb6c42b5bb01ffac0641867858faf3c73654c64d841ef76b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81dd615df69119cff87c74bc8f7837f3a4f4bfde353a2b01e442f33ea0baa651
MD5 acdc6bf088b82cae80658ee0f0c1aad3
BLAKE2b-256 883e79b4d3d4c22f1c6936c44c21b1162a3600b11383d87d8f75f49136ba010d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4dfa4a85a264ad686214f6e3b8974a3f6c0eefe3ba591620f3c7fe3382ea039b
MD5 6d2bd23d4e6e020a0db315f4c668e01f
BLAKE2b-256 07bbedb73be189082f2a2e9245d4f5d1cbc2f40e0eeefc4ff87d592b98e85703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dde503b4d987f3d221b1b5aaabb6fa3a7297c502cf29345959bc96d3035441c2
MD5 fc0520d01f0ed7fcd9f01a025fa98d4a
BLAKE2b-256 631cdd470365f08d2821d90c42c9b6bba4fd64c69df3d26fb33ab101037b3f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d34ec926cf5d0548615ee612e7d912d2f5795c23d2551c9d3ed632b509dffc23
MD5 16488b978667180ffb571350b69ab839
BLAKE2b-256 cc79c345cb3148cb0dab3738866b7597d0b3e2425d173a56893a2e423736dbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bedfff3fbfab32791171312210a39fab898780c619c5151d0c671a72f2212d57
MD5 58c7deee9a67254615d3457a53c5cea5
BLAKE2b-256 a159be0eef17eb9f0941e296939cc245f7f8a81c40c59abcdcd4e27bd1070e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9b6b22a9ac51ce472dbe7aeb3d604e9b8b920caf5bf40d33134d847d7ea17ee
MD5 ba8dbd0572a94fb93231e5fe9a1e4ad5
BLAKE2b-256 10074e7f2ec3628d4d0993c65ca628cdb0dfae8737cb7945e5b94c5bc1ec7c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf1a7449da418fc30f0b1d93fbadd20c15810477d5c15210ec8125efd79f56ca
MD5 50f66eda160f97853dd26c534e7127a2
BLAKE2b-256 cfd66ed595e4bac1b5592fcb489ee4d8eb0981826382ba8410100885cc71b42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d143caa18da2408b4d30923ac9ce76b4172e172d49ebcfb6e3526a28a780f23d
MD5 5534b7601bffbb4824bd696fca8e53b8
BLAKE2b-256 7cbe8201918065777b2278ff07968bd3988597179b58a1be5283a0f52b4e2bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 94a73ea4c4bb49ccb9c208a25cfcca07c2b13df36baa9adcbeb77879aac3f88a
MD5 2c516a506bce755e69c16e0825e2fe7c
BLAKE2b-256 3081c474d2f38fdaba2643e398f6a0b7584a36688bd16282a019b7baa1745a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce175679d9e76b6d70eb18e62bdfdcc9f4fe879d80c2c5e3d0060f7bd8deb775
MD5 2ba81b7c397d39a41d5efb3f8b3ba00c
BLAKE2b-256 f90c83e3b0297c0176968453987343925e2cabfa4804e07e4c73310ffe353f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a82b98d6183d9e612795b9c1d688537c29e81966f531d416f617391231f72be0
MD5 182604798d474896597846e0376a16f6
BLAKE2b-256 bbaaade85d938dd9352fe037d759d6ebcffba45db4a1ee78b53bacf39392a46f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d312bc02d4583ac2c842ce9bacf280f2e526c53bda9d26cab1a702711cc4aa2
MD5 d225ebaa950a1d489a586ed06282153f
BLAKE2b-256 fdd52788a87c3b9b682f61073881b6b6178245f4e0c6ba977d7e2470d0ed1e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58bd1be4098c751fc31e2bafb8c0a89809c50753a7903787f9f37c2a95e4f0b2
MD5 48953d1671cb572244bd8ba9da5e8e8a
BLAKE2b-256 21599796989e6ac5ced79c0ddd6fd81abe861eec7c77330da466771035f177bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77102a47799771fb0fc2a1eafd1471b61c3c7bf63f6ad7b99d5c30d10a3072a4
MD5 f80616a9f3f23e6068e622c9bd2899a0
BLAKE2b-256 f49719f395aba463ed479c84058682295f56d1e69e40d20c84126e14454a6a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c00db8387da4d75a03b62fd444d52b041ac84cf44627abe6d404a17090f237a
MD5 3a9fd455094e17df1eba0dda3e69c33e
BLAKE2b-256 3370c97e4f6241b82ff8e2a3a6f2cfbe2abe2ceba113b3f6b1fa905f22a495c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438415c6fda23d7d45301858800cda65ef8039749a2114614101924c5f7dc055
MD5 e420ef313a309280a14ccad7f7d333ee
BLAKE2b-256 4e90541f5853bb8ffb6161133e41a1459da48db514c1384fd9ef5a373c1ec5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78ea93f684ef56dfe437029a56b1df704fb7b6c1a5bef056caea4cddfc5fad25
MD5 f5ae98d360096745323a2b1353aa7f49
BLAKE2b-256 73f72309b26979c26e399d61f5ad20c16f00b3578fee30e879cbe54397574c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ca8aff2bd1957fb5461f0fa99306a849037a9096d6114617e14ce394428dd3b
MD5 06d10d43e136ff0af980ecc78310eed3
BLAKE2b-256 5b6ff83f9b1bb67b8c8bc4ee641b3655840154ac2191a0503b6eff6b7e334818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d190b0406b0c7f36b4e269f4824388a701503b261b28054c48a79af84fefcb
MD5 2c5709ab81fb95635a848bc3c1b050c6
BLAKE2b-256 f6d4818926cabfae77f430f68299ae3441387db25dfe687831cbbbad59f714d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc0814092582d3cbeeee37c640ce97fcfac1e349050437502a934d29f568649a
MD5 1c75086c9444441965891b4e9ea09438
BLAKE2b-256 1985f193fa2b2e04e6e223f3df889ac71e89c15e3d7cd4abedb675e16b31c38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a563f61ba6c9ef1c612844ba63081e465b7ae8dd3aea3b8b4635b29eae4c412
MD5 f6fc5bc3f33f442decdd17e3e5995e16
BLAKE2b-256 f8133e5d5b4ae58e3218ef43103bee11f0e738fd0d7044d233f2b44d20769015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ffeff595d6114bec5c6ad07af870eab6c2e5ce8937519323519d5215352032f
MD5 9d0f32cf212295db69f2cecd72eceeea
BLAKE2b-256 01397b8b664353e07c13cc60ab69b9cef2be5a5fad509ee3726f786eee916587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39785ea0aee2a941a7c09de48e23179c9114a01be69a8ca68f4eefbd7abefcba
MD5 f07afdb9b865d963e867ff68193bdf19
BLAKE2b-256 afd4e2b2bcc2c1fb22561d612311759474490cf2bea4ff1ec6de4f13a1ea44ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3df53fdf68d61060fccf6cde3ddcb98d9b2b4384c9a0da0474c0a55500d25b70
MD5 74512c1291f6a60517f257512045cef5
BLAKE2b-256 12a490a70fcabac021276c9adbe7218d2cb25f001b0feffa0c936c4a6a55923a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 318f8022567df2486ca2d5f280f9cfae8dac8e162b3184fe4b866c4e29b80a21
MD5 96ff032c2d12096fc42ebdf93c968c1f
BLAKE2b-256 98eae7f635435da653ec219c38b18e94e421e9897acc92b08f24a73b8952f3d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9713c622900bbff93b85db2c8d3ce3bb8eac017583f6fdf66640667e290df96d
MD5 1c8953e8632475106185ac6c1f62d0ec
BLAKE2b-256 8f2252c89243c7e2822e0c42e8e08e6e5791cc4eac3f141d152387e77b29f03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6cdeb2efdb84dd674582b85d5a20655af1250881dbada318f2221dc47c13595
MD5 4a57d9b229547c68f7c5af4461f81b22
BLAKE2b-256 1a8d333a0a05fe331a934a0e3cec193debaf614d5b93ece5c13d513bc8f2de5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: trackforge-0.1.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 156.3 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d789ccad632fa6e099401d60baa4c1349c361090274c5c68b0e1c305f8a891be
MD5 5960aaf96d4af016f0979967303648c5
BLAKE2b-256 fd8cb4fabfedf9a37abedeb607b8248814221ce3784082cf8be151646a435fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a92e579ca355920aaa7bae4c774fcd7fd96e5bd034da0a1dfb0b508e977ec641
MD5 db16e9cbcf452bc037113e25201ce869
BLAKE2b-256 10bcd022465c5ebf4aeae27d7eeec707633c5e87bb2e9e0a7487d3dd1c14dd10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74c6c2f31f4f35a1c6d1bc858cf26d701675683eb0eab9dd232cda5a53d84903
MD5 99a8d81aa9127768fad6ce4ebf78d35c
BLAKE2b-256 46e304639b57d13ae09690e98f3e42f4d5f25d5f7df377b7fa87d5e43b6b5f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ebf4be5d37e915b5f8f1648c10cc05f214994044fb3c79c53767c318b5cdfa0
MD5 7b0b8d2d4c2ef70f96b0af7fa6fabf98
BLAKE2b-256 eeff4f04e416d8fd2c0fab8354ba493866f28fc9a6d89c42af26f52018ce9d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b50e0d577d741ca28f511fa42ab88eacace4449297e68d877d0184406df3cff6
MD5 18ec0dbd73e24393e8e355edd486c569
BLAKE2b-256 4458d734f7d131069bcee441eebe0fc81821ddf0be4fc904db75db875152b82d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5010861bc30a6db36f87342a03317531662dd10faa0223a4700aad64cd23bee7
MD5 5fc3049e4c35a2cdc6c4ec10ed138e39
BLAKE2b-256 32f4ca18d06cacf7911e21e5c2be4563ad60441d7c1fc65082745eeb2456a918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bfe83dce246e6454c385f425bd3e7f08d44f8b6163776105485d865e4fdf6d4
MD5 13f673dd3619eae9373cb55fe7ac2526
BLAKE2b-256 b617fae5761344fb321f50240865c42ed50e3c3bfc1c3ad84e5b6093537c0d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60caff15d1f6e712e74fc05ba937fce9bc293a6f1b967ae0c1b661bd87bd7d4d
MD5 634ba7ec40d2c5318e9255b30b51b957
BLAKE2b-256 03a1cbec4c767fd351cb9d690aa95fe863edb85ae7a5c2716616bc71de66935c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42f133bf08283a68ab59fa70fc8810207d487bbf0c7f8e1859a62f26d5a281c9
MD5 adfe75c13b488e3ad1ee2370cb9c83a6
BLAKE2b-256 9cbec6453c5ca0e292462ea53993b196c6b3e5914dbb9ba95d10840487ef2a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8015c81c9b6dc4168ff6a7869e994b5c157159c59d690666347db539b5f1b03
MD5 ada989a1b0ccf9ed1fb97db8a5d11581
BLAKE2b-256 15562ba19dbbafc8d11469e81123fae23565d37a5e69786684943f1b725c5946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 774e2a3ea1664a3560dcd66d02b047f3308b2da7613437fea028bcd39c209b03
MD5 068774a97ac8eaf17ce7deba524af808
BLAKE2b-256 db4e2232182c73deac292bd582063995b3811753de2c2c1116b6da1400ae4cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d197e034050685675e02834c9cde160177dafd0c88efb2a3996e2c4f952d003e
MD5 36d5853258c7c5717709dd012be448e0
BLAKE2b-256 5b671b49cfaa00c9585e71cb6a583e62ad69df4df7669efe0e9df4e0e0a29bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b35157dee8b1b33f975908af488cf233c0276040b05dfac8b986d1fff8da0e7
MD5 2e6cbee58680b83cf6596908b58ebfa3
BLAKE2b-256 484c0694d07abcd07a40c53f823f7dcdf8a9663e5835f0887311f275f212e072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c247ccd10c1177c08795d70fb3f81738ffbe20f05a2038c9b754ceb28c33713
MD5 b84f64c417c16912fc1d4a49fae21bf2
BLAKE2b-256 aebb093406916aa2c8d6a1f71ed006a4d43c8df4b5a8b8aa45a55beda946b8b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 018e5ba7d28328e45299aa1cbebaed3ce7c68c830eca6525cdc0d00e54a043e0
MD5 a15d4e57f6e8ded183255f3251355cf5
BLAKE2b-256 58badcf3604e1f08cd88c7df0af1e3ad7040fed19dbc78bcec780b03f607236b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99f3b63c54ce4a7c7b19c37a08743abc2d847b9a0cc5a11155c6fa18024d9425
MD5 d5126bf5d485c97cd3ac050e6f5b5b5d
BLAKE2b-256 818d28d6cd0f57f2e2bfdd4df3c6d1b35176bd15247d64ac39c45adf4e7f019d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a359b1dc8c8f335af8d741f06fd6bbf83b9520fd44a46d2e46462559a5ef461f
MD5 5b9c4789ef5db1f0b279bfb3f764892b
BLAKE2b-256 a5a10f4b25aad423373e8ad0d9a61704c8649392c04886637658946ce69c3cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74c7295c4fe3260b569345bbd3b9f72ca0339aaf49305e1eeacdb099baaa547b
MD5 b5ac549543a6343f3588bffbfd323736
BLAKE2b-256 0484ba35fb19654439323b51fe252747ec4d01d76bd934ad042b217cfa068ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5111109b4c8ec5875cd6a3d117e31c32128318cc5b2ad646e4b4701793f23748
MD5 4b6fd48c3c92b0f71be2ddd48507cd50
BLAKE2b-256 1c2b678959e50254c66b0d4624bb77ca4106e7ee2a6c32bd8f7bf02cb07b270c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cef12818b02a1af65a82b75aa69791152d10e9346647235fd272ce34099d7ba
MD5 8ecab9920b62c84b968a214497788b0d
BLAKE2b-256 9f38afefe81ce263984ed41d90abc8ac23b1dbad096805b64399c8bc63c2201c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca192c9bcca64ad025e0d9aae40c1e3f4342fb2533d0e646a882b4d90e99bad0
MD5 4d91733180d7084fbf3dea770f0ea840
BLAKE2b-256 b12ab2e0ddaef3dea7e852cc5548181c19e4e107ae10e6cd76ae18dac3fbc348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3809cea3c5a8416a29b5313784316e5ea90da2f1c91d988d1067852879d03b8
MD5 11400b532b5861ab230670be7df02740
BLAKE2b-256 32c556e4d5fb532ffd47962efe44808d8ce4504cf6be39fc75e7b10ad6b87220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c086d3336273134ac9745819e77314cce9105bdc683d47188534f48ce1057d8
MD5 949000902dedb40d65f92a4695003c5f
BLAKE2b-256 c4928ead288cb03d16de6d48e318b5217712a043cfee743a1feb55f6fcc5eb41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a99b02c8f18d0c137fc1c02c71215af2a381e8b19dfd8af8ebc613ef147ee401
MD5 2f79393fa1cff042428630dc6a3141e4
BLAKE2b-256 d772910fc41e9efd17145e4a25596c7f614026de5f0c72c6273eb657eef60761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fabce34035b4a012703b12f8b954cc302d7f452247e707c1e213f4f1e8502af4
MD5 daa3517bffecb5857a658f64840028ce
BLAKE2b-256 d1a3fe40b2a2b8568dc9d4a69e7c0510225f3f848add07d536dc5551a774c4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d59ac90c2f4ac0c95c54836b847d73a10453ae463a6bc1a127004caaaee94e2
MD5 e862d3a7679acceb0c74323ab2776c8c
BLAKE2b-256 f7e13b6bab9df4789a34b661adcef601fe1ebe6342590cb85994551075b2fb2c

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