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.5" # 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.5.tar.gz (607.3 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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (264.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (287.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp314-cp314-win_amd64.whl (147.5 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (263.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (287.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (240.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

trackforge-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp313-cp313-win_amd64.whl (147.5 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (263.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (287.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (240.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trackforge-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

trackforge-0.1.5-cp312-cp312-win_amd64.whl (147.4 kB view details)

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (263.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (287.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (240.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (251.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

trackforge-0.1.5-cp311-cp311-win_amd64.whl (148.9 kB view details)

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (264.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (287.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (240.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trackforge-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

trackforge-0.1.5-cp310-cp310-win_amd64.whl (148.9 kB view details)

Uploaded CPython 3.10Windows x86-64

trackforge-0.1.5-cp310-cp310-win32.whl (147.0 kB view details)

Uploaded CPython 3.10Windows x86

trackforge-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (287.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (240.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

trackforge-0.1.5-cp39-cp39-win_amd64.whl (150.9 kB view details)

Uploaded CPython 3.9Windows x86-64

trackforge-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (290.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trackforge-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (290.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

trackforge-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.5.tar.gz
Algorithm Hash digest
SHA256 1b5a03db6899872ec3492354a3b38f1ca0aec5f2311d0eb3dd491b69d4327e9c
MD5 320532b8522fa8d803532685dbbc8800
BLAKE2b-256 e88fe3a9bf6ad893cb4b11d901499741da047c110b268b4177544087bdde27dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd0e733f9c1201f57f40b60e01c15a06c7bad7584138d1fe7677cbff0455e512
MD5 99afb063d365c97ec9d75a48e278ff22
BLAKE2b-256 2f969cdcb73aea90d78827ce0561d4864699cf03e7618d4bc26867d2d583c286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0206a45be598e917d6b84b073d1e70fdbe6bed7f8ae595077b98d410757edb8
MD5 4f303431c41d34a3870bfe6ed87c0169
BLAKE2b-256 17bbbfe09cb88ebef062429263563faa9c36107a7853c3a36fa4208bc2744151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cac0d065dbc3535c96c384cb434f8d6080ec1566b1a6eaa7ee210860266f4fd
MD5 da0f21308cf8454c4f489e4344d9837a
BLAKE2b-256 59116adfbb30dbb4c19104edef89a032d0896f0fccb3323eb597e6239fdea8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16161406a073b21b2ab4259f17dd9bae741cc59fa6ded4196d500d70f53d7e48
MD5 ebd7f1b2a520faa5a88f8ca186a7b2a8
BLAKE2b-256 9abfa26d8f8c8f65a3361ba2a99fea1ba644317e4f9b33d9c6d5f7adc7232374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5795944e326e04b6361e6dcf26eb6bcd27459c0bd48fdca930e262a3f856fac6
MD5 f745b44e4cfd6b92baa6f4df7dc38163
BLAKE2b-256 ee7c4ea117588e351ff34f2841362fcfc77da3ad101715e29982adf3fc4bd0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 726aead676dace5e983b332916c2459e11e0e8c5bb0670da608f877f9ff5a32a
MD5 fe42b8816b510ccf3c4e4ce03820cc46
BLAKE2b-256 05bad1e4e4ff6424376954fb1a4a856a1fc37d0c266f96f992eb08ceb3aa0655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81307d5d660dfe2fc03b369a1c1d0797086ffdb3b540d5565af749a220c5e9bb
MD5 7d2bd8587d530e2c2f0dfa5ee460964a
BLAKE2b-256 6ca00fe14ccac466abd0deddcea2947a1e51d13306cda61477414c74064e57e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1510ee2c250e8dcc2bb622849c13fe5d2cdafbb39464dcdecaf9ad752ea81c09
MD5 009786c36694073b03a8616338fda841
BLAKE2b-256 799c93f3c77cf13562276ab6d7162829dbd21483cd7179bfed3239a1e3940543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00efa54a6366a7f22c123a57348f81c3abf1472e793737154cb2d1410d31029c
MD5 71c5110d0b75e2565c147b8bc32893df
BLAKE2b-256 26dfc417fec2358ad17bc0fffdb68d43e0579bd862260618ebdd706e969bf411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8643c7dab2d63cc5d22244bde164409fa645220aae2ffd3beac7c1aacc1d2e23
MD5 bb904540b9f1387e2b771f5b39f9fdb8
BLAKE2b-256 cdced19f70a905557b4261c124e00be3ad8f896af7d9ca57afccbb594948ecce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c5fc1bcfdb76052bffb8b2ac6d66e4c74e1d2290bd341ab2852bb638697bfd14
MD5 cfa2c816f94b977e41c532fdcb62ed47
BLAKE2b-256 669ef3a5a8907510f0fc705844d7afa8bb0b9abb148982fd2cdad3f605016de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 261e4a6bd655e8d67b1492af79ddc58a4380537a09b0dce1aba9ed35b7bf7002
MD5 4ab6e14d32f4707fbcfe64e08be82ff6
BLAKE2b-256 fdad78ca33a243ab3ed9206d946bffeffec6ae34a325ea11da1e693e0b91e6ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 334bfa47486a5e299c6ac6f49407ee60d57b781c0ac6a34617e57584065695bb
MD5 d197fd56d69156ab975b106235097ea3
BLAKE2b-256 37951ccacc4c198b798c0874eae45e5f65241f8b4249ef7ca86f3b91df0a4fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49f50f06fc79fcf7bd0debc0b004295ff939be277efd1cc683cfa7593cd2f052
MD5 927f0741d8dd2f84294ceb9dabe67f82
BLAKE2b-256 1f8984097ff1bca64cccef22109c38fca1f71a286546c2a21aa93d57943837a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 030908b0f5c98699f9daaa7189e177646291ed12f3baa66766aad77fb112f012
MD5 3274ab1ad2450051a2e63e00b613189a
BLAKE2b-256 e5c59f36d94bb4c207f525bdd2143bb216895621377d37382b8ed3032a0061fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23303852e1c4b8249a8aaf8100f03fbb9075522cb9308d5f7c9ae596848927cb
MD5 38c00d626f5b6fdc0a87522803d4764c
BLAKE2b-256 2c80610b650f1924a6c303f9806376bde8513e9286c06ad183f7478e257fd231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8b565ec5c1dcdef92150bf3c18f14e42fe9ae797eb7e9f006dd784f0bed1add
MD5 e65da778b7f050036e6944fe5dd91c0c
BLAKE2b-256 0df8b6eee93706ab5834a70f08daa34c864d67943ddd9b08bb64de12dc32088f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e71ac8badf36a96612eb4396c807ae0a8f5918891eed2b24abd0e3a06e47142f
MD5 a60821ab36e6b1fecc09672652b6be14
BLAKE2b-256 e6dab4d8436497cb68bb9534b120e17f2cc3739f93ca5553996ea45cba4461ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f730aca95a8ad87178678944424de7bb08e7d88c5414dded58bd52113bdf17b
MD5 468c5c1e531f5df285b0217348bb8edc
BLAKE2b-256 33b290702412b0fb2e93be999f753fea73dba212ca46c1a1ccd952a7968de4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c8ef59b92b80391a5b961f4d887dba493e513ff88b98b98c6e77f099284a33a
MD5 e9f77a00ec9108e6cea5eeb0f343b3df
BLAKE2b-256 4c7bb9a41c3ee50555d5116fb84eade608660e469d5c6cc62fda62f59b009cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e6d0b077253e144421b5eb7bb6dd17d46144ca7bd84410079745b426182e5b7
MD5 a0642e9f6e739031b3421d6429136c61
BLAKE2b-256 fbbfb2896c94c4c1cf57344f023a7eb0218c579b00b264acf747bfe067607540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bfb9c395f750eb614160cf1febcaff38cd20c7ded07a1afbf3caac27fa23fe1
MD5 8ac7e082e8ab357ca1bf54e1d8a9f749
BLAKE2b-256 280ec47ba8b5f6bf23bcf3d0df8ad455f295f72120ee35fc0b99953894af444a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 456ce90f93a70d6371efd9d022749ed51ecb005d8b722cbbf0efdc8457496242
MD5 61c64b67e9715a98039fc34c8256400f
BLAKE2b-256 b108c2ca0bc27293942f44170f9e40246b2b6e85687c2052fd512656c922034e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8c8c586c033c93f21cbda8e38ae24ff585730bb794e2bf9ada1eb5dd0e097e4a
MD5 b5a0b2b61fb9ba44096b180f2907ddbb
BLAKE2b-256 0b143ff270b44fb686cd8365018631b1d1a714e9b4049836637594546f79f0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7f751ae0db1efbcba128df3a991d3f0c0dd6a377fbafbf73ca03481225eddb2
MD5 7118b8b373c1c2f8ea4ca14b8e96bdac
BLAKE2b-256 14cb9689dda1d3f8e4cc1e091d896eec0bb6ab2a5ff95b6a932cef1c400df8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ba7e255c6ec5c29e818315fd5c82c34763e4464c713b4c190a8b4c9d6a5765e
MD5 3de5d08286de6712d270f4732615a4a6
BLAKE2b-256 1a4cbcd13c4581df3fcc521cbdd5ea985c0bed79629a05c6774783af5af9fbba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ab82a30a5c508e418d2c85493cbfbf5b01ac5bc029c19dc1cb1303fb3be5334
MD5 32b10662d0f7df881a8c07d3b3e5b67c
BLAKE2b-256 74993e445fbdbdb35082698ec3ceb1ae44d10f31dd02ab35171c7d7fbebf9859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6522f2ab5b69fd96805045fc80ff9d34a5fa3905c52ca734be760054ed86aaa
MD5 93a817a690ff6814efdac4eb66f983ac
BLAKE2b-256 fc8a363ec6214d810ccd379273a1b20c95f97ba040ee55470cfd9cd6eaf578fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78a017cc648993911ef88c8d92f505472915e7feb449ec46047d643970a11e42
MD5 5017bf048d39fc792f193cec8759bd31
BLAKE2b-256 2708f502eb4b0698505dd6de17e2931a0e3628f83bc5c2994d49d56979d97ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8711306cbf2e11b1263d171cd8f942d7e1dd567262711b22b83f6890c1253b32
MD5 d907da9771f7f47b79514070c3d5c1bf
BLAKE2b-256 9c45476ab7881a22edd1850eb93efa377f473921f2701e637aacbee97da0fb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c107bb92384b3452bd361e272e270f59f7c03c12fe8d9330b52161266a5aae7
MD5 2a41ee4db3e26d44f4dc2961f22e6431
BLAKE2b-256 7bb6e980f534e856e8bf296c2e4cf392213043ef81976018fc0826829cc0aac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd4fd39d368d0d47d6c89baa5830f0e7eb3fd3777f95985db9ef9d9ca51a070b
MD5 390be01538b619e92c0906aa108eff83
BLAKE2b-256 f0aa9d9aa95a214e425efbb60018bcc8b5bb0678504896a33e183d2be732e1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 642b7b5025b7359220615d7910df39c50fadb1cfc34c9d080b02705879ac1ed2
MD5 9bae808012e1fdbd77b568a424e278ba
BLAKE2b-256 afc5ae863952c5f3e73073d7c9a14081b81678d1509a7e7faf50b7fc8bf316f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae32ff7e8acec5665307b321515f80370bfcdf2cf65525bd049f9468e301246a
MD5 1dfe1510990d6657876b3ef6aac27e1b
BLAKE2b-256 aec895c60f7e9394eafff199af6c961010ac86eebd8c534ccc0c76701d7d4d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4002c198ee46bbb15c28131937f265dc9d5da44317388c47b7c49f51e493d624
MD5 32b16fee0754219c4a9dcd04edaa3cf3
BLAKE2b-256 84d7ba8ab73bec02130e082f5a10b2bb3a83d0650a5d37d6cb1c231772394244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9326ec5f5fed0969deb7977bdb90d545a4cff0ae7e7336a9c84060cf9193061
MD5 7ccb65b743ac4ce138b43e838956947a
BLAKE2b-256 a2837d704c6bafe8bfee9e4507522b3918b8cc025c8eebbe17612618ae5af9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0feca312de0631b8cdec2966249a8c7b822b0d52382c89fb0aa2e39cf88c814e
MD5 7c9ee1f15da553cd8f7ee40858366230
BLAKE2b-256 9ec2fdab3ca9c4cdd061696b0215c8f7580eae5ec9192ed44e74dbfdfa4b7a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66bd3122cf540eded3e51d66f286cf4f60c717a4be3a70621308716efe15cf7e
MD5 4180cfc007ba91601c439fcad05a9827
BLAKE2b-256 82f7c1aa580fd70a86afa2c5cffe14d851cb4541b06201240794be08e817da01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd67750f283b6541b8f4e61684780aa4073c63d464ab0c933217c12a7a6f1f0b
MD5 ffe61af7a2e81224363d9bc5afb03405
BLAKE2b-256 34a8fcb1c0c95fc5fdd10d493ecc4f8b10afcda3bf6d0d0f58731a3876e89d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8885c5609cd15c5eb5abaff744c714edb74651735d968983c5275c2c8767f2db
MD5 bf099927d9560ac660442395c173737d
BLAKE2b-256 fc46cc39824e26b9e034a63ca7073d7c8b655306fe64a1823e9b68322a49d93a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c93750e7efd18b3309967a708a85c3c3cb513a5b25c498901a0822decd7bdd80
MD5 094d4f5abcdcf4184f4d37ed8fba9e8c
BLAKE2b-256 2e9ac775391725af50dbe6e25c7e680aeea66134afe2a20eb1b52deeab5b02f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cab7d5b23394eff33cf4ab381abd31f306933591f9d4c76519e8c8134b418e82
MD5 c5c45d61de936cfc80d169732bed99e4
BLAKE2b-256 eb81a42b68ba9dc4f796872b58af565904fd1c7911feabb25333b2f3b133c4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9097d3e3b88c624875f38d1f4c6a009f4622e58eb5a80cf63fbb07e070448ed0
MD5 3c871565803c52f60b6718ed1de30ee0
BLAKE2b-256 92cad32b575caa9d92c5003a411215d29e7223234c42303adef0c2fb799709bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90a8fd560de9f6c6c328e0d730fc82391f378ac13cb22f564f1ba72d43fe0a09
MD5 76563e5d5ed1ba1beb305707aa8970e8
BLAKE2b-256 052473764203727169d0a4b69f42b2991d7202c4efbce5faef2086413539ae13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcc46134426df2e0a421b3e1d7ecaa4e7d3f0bc662b9bfa4493a99217232c94c
MD5 0ee5e5b4125c1fb5c55fc89ad16d3e74
BLAKE2b-256 d48d7f534528298fd4b5b72c38da3e88fb4b959b6a85fad4bfeee8586fc60c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51e3ad49a715042846deb05ff403774b27d6676ab25d7d60f0580adeb1e99d33
MD5 a64ddc3bebba34a1eec08d5a36a8c9f2
BLAKE2b-256 7fecb0353967ad21bac08aa8e1d65f168d59aba68f179d4f5320b65486537d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fb64f2bfc69cb3ae8a9562c9f65364b63570c43b6351f79922e2baf9e44d3e2
MD5 f702d7cb7a77cb99abedcc1ba5dcc296
BLAKE2b-256 0da79816e48eb08a9377d6c2034aeff56a8ed4d408039be5b3455148ca1b3f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 851571e85c5fe3ca844b9dd315e27de4efd18ff6bef5087d24762e38e10f73d2
MD5 eb9641e7769d9c8646c1628fb97a1711
BLAKE2b-256 d610de45915f57533ee5fb9ffb072347db7dd2970ae6f65af5adc8dd9c793b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 873bd61cb7031c69d3fc1fd575bdec0e188fd67b72e0319580e5480c912b0eb7
MD5 ce681562624f323002520c6fbda31590
BLAKE2b-256 54c8523446c104bae28ba57037028464b856db9e30d25af704c58c7a70cac176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7933dfc63d83e94c2b70d6013187bd54b4d276334a3f034d5dcf68303696da73
MD5 82082b76e24eaa4e553b9e353534d5e1
BLAKE2b-256 5d7cd1fd16d2dd2e19c57b898dead5f0210974b98a8ed7a8636bf60e7c7e392e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee4c543bf6bde66d5b310814a4205e1a3a6260d4829d2735e855c9e0af6e1d15
MD5 b4205990e0003261aa71a3fdba2897fe
BLAKE2b-256 b3ae21b14a95dfd97f6637e282b76167f18b0e73c4a946a94285a03a2f21e53d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: trackforge-0.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 147.0 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1b899401c8e16dbf6de987355c6ba24a547d4f6bde220e1e624cfd49c5f5a49
MD5 609c7102662f42abab78ec61e414b662
BLAKE2b-256 21206a9f7d908e4d2bb7e2b463a0a03f168b3559eeef3a00d362977e0c47b222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d5fb8f22d03f3313da97fef1f20103edda93a9b62e6a7e9b06462e1daba88e
MD5 864e97961e43f26b1dffdcfb3ede2b66
BLAKE2b-256 ff82934fec1f123b39f951e4a8cde675b40c07eaf4c053632fd3ef955a0610c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67b7bd0eeada68b5be2169a2c18bbddec2aee40aaba7374d16c3e9e6431b915a
MD5 29b1100e1caec6a7126531d41e954205
BLAKE2b-256 9fbe15f464e243cc324e7d8cf6e1c8947d3bfd4bca0090a4d2bfc0b9bbdbcec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc6e052c1780714e31c7f27d5c2080d7a5176b75c9a4ad1815ffd07d0a7dc10d
MD5 43fe05c383809665ae7406937fbac25a
BLAKE2b-256 1d0df71ff19cfe628116f6715f0a7811d345e2a96fd88950eb6f8afba536d7ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c4572f2737f2daf0b2094b414f81aa3f93ec6cbf85db35a539529903ef2bd5d
MD5 1811fe2c2203c433395eff7cba2d7bf2
BLAKE2b-256 07f0b5d181ae3342dced9187b7b66ca73b2fbc43deb0d1ce0b0d3255a5d83696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7a0d66842184325690331e18e3bf8a100614d23d208a1d1283248cc08588ef9
MD5 04d259fc40478f29a81ce3779a4a2279
BLAKE2b-256 ee352acc64595f7dc941f84636235d20a86d5a781c1a12efa57ec3cf9d05f52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2530646016a57ce573cd3dfe5f955a87a61c1ba4f8c02e5d0bc84aa17a61fbe5
MD5 24651b53e0ccb6b1e7675c5c1500eddf
BLAKE2b-256 a0c7f39344c523c5ae6b812392961c8b090644d64ee8d9258bd72ff0c5422722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e75b7c8dc3427f3f31ccbb032f06a425a1387a8448c7093f34a457b136e3b267
MD5 56ad2e4c59512fc5c99bb8c3978b69c9
BLAKE2b-256 be5300e57a99fc9f25cfe4f55aacd67cc7bd4efe9006e03f31cb83d35f48d7e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19c4a8a06cae8eb96829867e06f9342752dbd86a34a4b8badaeee8d14cc8cb52
MD5 c6ed15f8bfb4d4a374174cc830790163
BLAKE2b-256 331c784868eca62e2866cb63f1561906408e52ecd49a93f2e3740397b28e0b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3eab9d7dfe165054e7e538ba728611b8d36acac0320e3592314d9ac934d6e45a
MD5 a15037e795532986a0bcb17ecabfb6af
BLAKE2b-256 b3edfaf88aef32f98f87c7bdfe9184b90a09bda1389c50b72b070a473995dbd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 292c76cb1306b28f9a46f4e39e81e6a621c53c623db3243d4989377f8da28479
MD5 8e8d3a82c666618956c97dc494dfdc77
BLAKE2b-256 0e05d0ea219db172d434815a5f17551c4c24ff459737ac30074cac327e9be6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a008b3a287e237a1b134fcc92fb9ab034ffe47d358aa2167a45a01ee0f2f257
MD5 5ad6dc2196f9535469f0c7b78e9a6dbf
BLAKE2b-256 3ef902ec0be4abe2f11b89f277ec803764cbca6191f0608d975fff508a894afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02c864e6b20515430ed0e3938ebb27a97a30aa6f20ea5b745c7d2039c4301d38
MD5 813e7df77161b0f07d25ccbef140e541
BLAKE2b-256 443f57f180fc9513f9f847a5a9f310177276e450bef7d2a510327cb5fd518d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 750152fc7466f680f441cf7d2d0c41131a7969dfdee223295d816f41b96c6f55
MD5 b26dfbf478d0e2a72be5d8b6a677e297
BLAKE2b-256 858db080f90e80d3af2525e276096b457b9e8a4900f8a91863e2fe0a4a6656b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e94a21eec8cdbffeb8043c79a3351cbd560697e0b4914ee428ea5b8b9a4b34c
MD5 df3382799a79d9b0567734a464ccd5be
BLAKE2b-256 d84b3bcef744b97a88cbd45e5fc01657d7f9c382cdd01a0aceb05cb34167b22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 168c39d3b5ba04d61090b48963742758f3746e0b9380afea77805ef14f84632b
MD5 d129ab3de981aaccb8b28b139d50f4f7
BLAKE2b-256 7ce8380b77885b4f9916b5cc15d5ac9b017cc419de20244ed56502f301058d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1ce374c13a64770d47bae4f434bfe8b5ff16c5bf49bbd3f0c631f8e70da1b92
MD5 1b5e415abc5fec6644b05f66db96c66f
BLAKE2b-256 ff5d38deab53186ce7fd707f95b70204596a228a3210ae7f3d0831478d57df87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e403d3de62631d992907a9955c4f8e6a49104aee5e3349c9cbca2ae87dbda489
MD5 e7225c578a3fa58de0126be9878c881a
BLAKE2b-256 d5ba1ab8b426da3e46eafb384c7b3f7de3b7e8579c94e6df16ef1c45a45c7c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07a486d8f90ea342260a9c3f3c60c94b9cc700dfed9dfe27d367090b938c58a2
MD5 f1a0fd716fc37df0a2c886e7921519d9
BLAKE2b-256 bc00caeff78ac2f599377c9c36c8aed63d0db1ee912444f89e3a401d156a8104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f31e8d005c917e368caddcd496c556e1ca895fcbd8ac74de41af2b2b1624b441
MD5 7e8e7a4d348d60eeb2059d80b865c55c
BLAKE2b-256 f9a3a945354ec3ef48becdcd1ce952ff8ae4162f53735aa93817ee9c70437f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e88504f64edd6a542a9078776136655041381424b8beb2f8be52b58a910100a4
MD5 12b329631149e49dc84e0aa0ffa92888
BLAKE2b-256 af6e2a1b58254360a16873503c1483396ce165433e31f7f0731eece7d7e81bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be5171a2249024d3a9a54be275139daac6670f04da93222532e7dfb4813fef58
MD5 6ea92c46ef4916153cd12ad3b8f9bcf9
BLAKE2b-256 d4da9dfaf6ce3c8b87fdd7f3bb7dbe26ba6583eaa5abce888edab684686cf598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2c2c96a015573352aef0b38816473dd041b6513bcebd5490b8e28cdaef63c7c
MD5 843d6a17eba5a8517c0bba432d5bf953
BLAKE2b-256 b83b54a58ae7ed69f4e469517c6a41be2cf2d1640ba68d924a7202ca638a8b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 686b3896949554424732b5bfac85e665e1c493a32662e6b215d0f2c3cb6d53f7
MD5 b2c04e55275a24e6eef02fe8492434b1
BLAKE2b-256 b9edad0fe901b9fb90ca82acd4171288c7b2264f2f166f3674a0ccadd337a99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbe5d2f2bdf71c73d24a627a06cf365fb14d621679770989abde0fd09051f043
MD5 2308967f26bdd0aad4c3432fb6e02275
BLAKE2b-256 5da4af8f6671de4996cb2292cf79ab53b8d6cef2a82b1eeac8f985def8906621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db389a151eb7314bf76fa933629caeeb670a6e932614146f12c0e6bdf17db0e2
MD5 e7d6b1e17254c836cff8b129d51e3511
BLAKE2b-256 a70383d723170a92ccb950a2befecca5203ddaf6eeb89ff9864121731de69aac

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