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 Crates.io MSRV License: MIT GitHub stars GitHub forks Crates.io Downloads

[!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,DeepSORT 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

TODO — Multi-Object Tracking (MOT)

Core Trackers

  • SORT — Simple Online and Realtime Tracking
  • Norfair — Lightweight distance-based tracking

Appearance-Based (Re-ID)

  • DeepSORT — SORT + appearance embeddings
  • StrongSORT — Improved DeepSORT with stronger Re-ID
  • StrongSORT++ — StrongSORT with camera motion compensation

Detection-Driven Trackers

  • ByteTrack — High/low confidence detection association
  • BoT-SORT — ByteTrack + Re-ID + camera motion compensation

Joint Detection & Tracking

  • FairMOT — Unified detection and Re-ID network
  • CenterTrack — Motion-aware detection-based tracking

Transformer-Based Trackers

  • OC-SORT — Observation-centric SORT
  • TrackFormer — Transformer-based MOT
  • MOTR — End-to-end transformer tracking

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.9" # Check crates.io for latest version

Usage

🐍 Python

ByteTrack

import trackforge

# (tlwh, score, class_id)
detections = [([100.0, 100.0, 50.0, 100.0], 0.9, 0)]

tracker = trackforge.ByteTrack(0.5, 30, 0.8, 0.6)
tracks = tracker.update(detections)

for t in tracks:
    print(f"ID: {t[0]}, Box: {t[1]}")

DeepSORT

DeepSORT requires appearance embeddings (re-id features) alongside detection boxes.

import trackforge
import numpy as np

# detections: [(tlwh, score, class_id), ...]
detections = [([100.0, 100.0, 50.0, 100.0], 0.9, 0)]

# embeddings: List of feature vectors (float32 list) corresponding to detections
embeddings = [[0.1, 0.2, 0.3, ...]] # Example embedding vector

tracker = trackforge.DeepSort(max_age=30, n_init=3, max_iou_distance=0.7, max_cosine_distance=0.2, nn_budget=100)
tracks = tracker.update(detections, embeddings)

for t in tracks:
		# output adds confidence: (track_id, tlwh, confidence, class_id)
    print(f"ID: {t.track_id}, Box: {t.tlwh}")

See examples/python/deepsort_demo.py for a full example using ultralytics YOLO and torchvision ResNet.

🦀 Rust

ByteTrack

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(())
}

DeepSORT

See examples/deepsort_ort.rs for a full example integrating with ort (ONNX Runtime) for Re-ID and usls for detection.

// Minimal setup
use trackforge::trackers::deepsort::DeepSort;
use trackforge::traits::AppearanceExtractor;

struct MyExtractor;
impl AppearanceExtractor for MyExtractor {
    // Implement extract ...
}

let extractor = MyExtractor;
let mut tracker = DeepSort::new(extractor, ...);

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.9.tar.gz (646.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.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (352.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (340.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp314-cp314-win_amd64.whl (198.5 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (352.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (339.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (286.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

trackforge-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl (301.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp313-cp313-win_amd64.whl (198.6 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (339.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (286.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trackforge-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl (301.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

trackforge-0.1.9-cp312-cp312-win_amd64.whl (198.7 kB view details)

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (352.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (339.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (286.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (301.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

trackforge-0.1.9-cp311-cp311-win_amd64.whl (200.4 kB view details)

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (314.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (339.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (287.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trackforge-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

trackforge-0.1.9-cp310-cp310-win_amd64.whl (200.5 kB view details)

Uploaded CPython 3.10Windows x86-64

trackforge-0.1.9-cp310-cp310-win32.whl (192.5 kB view details)

Uploaded CPython 3.10Windows x86

trackforge-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (352.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (311.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (339.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp310-cp310-macosx_11_0_arm64.whl (287.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl (303.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

trackforge-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (359.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (342.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (359.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trackforge-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (343.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

trackforge-0.1.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (359.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.9-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.9.tar.gz
Algorithm Hash digest
SHA256 49c7ea2cb1f07553b72e9b88e7b0840a8533757e5fc7b4bf7ec3e04b99fee217
MD5 c1687daa71019de6dee077ba399a9bfc
BLAKE2b-256 270b6348b438c14aa5dac7dd5a069c7ffa24ec6b8d06c21cfbe5925da3d682ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e896fb98f9222b5b687e2df805f6061c33d9cc7b6883aa7d1b944da45dcca8af
MD5 7a710dae20de3fff03f855cb70a5fd6f
BLAKE2b-256 ee0b71e0526a1d09d195617344ffbd4a64d9dd3976758c45504eeaf54c76d6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9860aa9f0d0de8ff2454fab366fccd44604487466a98a4f19c12ce52cbf788f0
MD5 7b2ceeb34fb1268ab40c0c3dd8a2a5d2
BLAKE2b-256 86efffa92a31d97038f7c5cf6b8509fb074b2eb3822a8e98fb902c46a6687ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6ab8fbf768ea8917e954b1c7bf0cdbbfba69c5ac246610a7df3457b4ce498c5
MD5 382ae7a6767bba16a6565d4306186e5a
BLAKE2b-256 90bdad4cacef122feecb095803f1239d4b4300bd18279af393763abe719b0435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a825c1a815b945bac5a1d4b60c65ca94e72c0c46760861df23aee3c095e55857
MD5 5f997280434941e32decbef7e600d127
BLAKE2b-256 a7f7a1828f9b94a69a92446bcebc1faa647b146ca7ccdcec88405f8919547951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9630b3f41ec90f1ed6d65ba056888393cef73d369556063e1b9f4ac130e2ef9d
MD5 14f68f7a16ff82a23167090c5fd4edf9
BLAKE2b-256 43abf931af037af74db399300bd743b70294296e9d1e2998ab9037f4aff9c01b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7599d106fda26939420609b5477afd63b88e0f88dc7602ac99ba698d86da559b
MD5 43e070393334dbc66b08269a7901e6fc
BLAKE2b-256 9dd9ec0c802c90d8cb12f0a65619c923005793da82bef9c3f4302883f5005d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18382f0597fb64291f22e9b49ace221a6853a2a1a479372a73a99f5386d1ac0b
MD5 8f47c3a0f921661db6bbeddb94d272ae
BLAKE2b-256 75d935947757c7fd4ace71562a07a736ef5167190c2d642365db8c1f5ea86e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ea7e16692e5b4e2fcf559955f91af2b8d9be2adb55ed6c66bf82916ad233d1f
MD5 efcdcf61f8bdad20657f293411790dfd
BLAKE2b-256 4ffc6e9d7998e24569ab38d5ea853007d3721075e34ca348c5c4afce9a8d5633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa7b1dee20ecbb22372d9eb12959fc058e86a013e380385bd68a4cd5141059b7
MD5 84195ba2b4bbc7872ee38edc7a067e42
BLAKE2b-256 fbeb97d1a27d412607743b8f4c46c6335282a340b5094f2f4b11008ae8f88993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0511530c8180812aff99c6c6d80744885547e7e5535b17ced2e3f542e2e8d85
MD5 e41c0e59e49a06c7b58188ea2aae1b0c
BLAKE2b-256 7703b24bb142e81d248673a5c46bb2a52f64c128e3c3e9f707e7a8c0d8087b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1bcda7f1d589d6236b7592156b410828a2cc7fda6bd7e20eaf974b856b071523
MD5 ebecc157d6231b3917fa8845f3f1396b
BLAKE2b-256 e5e36b1faffae9f59de45b1adb5510b61a73bb647d97a2a39fc6f457b013754a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f4d1b9187a2f503408214d3d8658416d48409b4be699b7a38b3122b2876dfc7
MD5 72ba1a986f95e8f4de6184b851422bca
BLAKE2b-256 2aafe2e1266695971e8eff4a2dd10132ae6778584908f0f79034d8c99ecbbc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a870870d51fc0351f8fad7991ecb575c7488131243d65b2e1cb85e6137ca8c9f
MD5 88e6ff29e9bee1969d646748a37e8bd5
BLAKE2b-256 92e89759f94bcd8fa98278f2633840712e35eaff960d73fc8f59487db384cb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83affe477624f81296b9cdcfb8625d9556dc924462dc0e10af343b8e318af912
MD5 7482630550c5b4824e20dcfca9fdafbd
BLAKE2b-256 a81cdecc93327d8016ef96f677bcaddb75ffa48cf745bf1262244153f85859d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4abde5ef4090303a49599a1118f7f38d711e0954a575211ef5df872644c52fb1
MD5 5505bb0fd4be9a32b5d2531942adaa17
BLAKE2b-256 3d1019b31e386f4073a394aea351cd09f4e8b35b8474692cb1bf8c0fa7fc3c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4969fbc3e43cb8e5b75e01e9e61cbfa88a4e1a72b980df020eade156006c3783
MD5 721c27e173f65fed8a9558515a853646
BLAKE2b-256 19777a68ff37e6a0b1e1f8f06e02d0ef64413b3932c938a688f722fa5059837e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9acf1e6593d8656f0abe4dba826dbe824f95b64b2e9072f73fe7b4efdfe46c31
MD5 73b0797869c4378ec7e358e31909d48d
BLAKE2b-256 ae6217afe3ef0a5fceb8b3cb4bdbfebe3e5cbd7a984fc62eb6476e26d0b2dc89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8951326243cdebb1d0f56605cea239ccdaf457767e73e2bd660e9b425962ece
MD5 f5319b2e06346c62e23761cd25a68c57
BLAKE2b-256 91718ce2d7e6f6d7638668dd51fd16c7144d184ba2d573a04dbbb9fe356ee42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 060e87f1e5e59ead5acb93e337a0f8386ae3d67a74611c4e11d56149c33dbb10
MD5 4e0769d652c1ffb89fccda4b0763c218
BLAKE2b-256 d4dec9ee99849f49e9fb6aac04c87213edcdceb9eef79044c316660ff1153625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8839f3acd16b1d15e3cb5f50b43b50f5dc9913754946dcaf53933192a5039516
MD5 0a9ccf4237a1195ec3dfec9fbc857784
BLAKE2b-256 f46543b3a72d5f6c3abf1d3234c0113ff35fb77c7666f35cf54d9dece96efb16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 691f164357e7314466a5acfd774adf63a003ab09332cffc5f006e5a2122bf70b
MD5 f962eb3e422f7b033ea936c80eab3d1d
BLAKE2b-256 7f14d466e50ae5ae0edcdd52cb032fde55aef8de2b3e75c2a70b4c1948c9149e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1387a50885ac2a47e821ddb692fbbc9435b00f483d6b90a3e3a9bd95f562f25f
MD5 063ec470cbb1837d74bc94675cada9bb
BLAKE2b-256 ad53df2fe693c6d220d0af1717a412bdb6788488ff059631d61775aa6d8f845b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aacf9a86731c40b88703f4cb869608d91c180954d8da0d52fbab56b7e984d3a1
MD5 9b2b0e62efce855dd48475a09a161645
BLAKE2b-256 1dfb0b665432e5127c1c899c0cb4d8e93bc9054fd8e6a398388259eb19ceb649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 38fe03617245e70b83b416d5f8bfb4333bb3526cab067683e4781ad16ec038ba
MD5 e797d205a040a0a843e113646e3df6e4
BLAKE2b-256 3518df24875203fec6c9b63d889dee4cedfdb0084e708821da5a3151f17d64b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b900d0d75a756a2df86fcd851ebd3f7d114632d1e1f42822f1832a78d25a2cc5
MD5 82874e53e0d3199b7b093950467c4578
BLAKE2b-256 26d6f809e81892a0f8d7a5f34d11e47a9ac3a41b85fcb9390fda9ff087ed1321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48e02df1c33b3da2326f689318e496da080e8abf5de66b9e9d9fceef75324505
MD5 f9caec0ca2b2f3f69eaa45338d43ed59
BLAKE2b-256 105dc6aae622dd33baf4b09f399413ec0ea955920d43e84a09a5c327d504dc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fdb88c4c4e681e6d2cc9ab225df6773cfcd1ee049f8a51b40dce9c3dfde0a58
MD5 ee2df381bf4ecbe998f228a1f7245b51
BLAKE2b-256 ae378ce937879b5e04b3a0e58eedfcae8d220c037d424a26647eb351a36fd8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd44620bb4f6c1bc5a4b72fc7fba675b8128c6a5a688b199eaac7365beec73a3
MD5 2d8d226b9aae40a44f38dcbcf9bb59c3
BLAKE2b-256 1dac3409622959df2bc329b7e26d9de479b12910058b03c1ac6087734c3b71cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3015dc425a07edfb809bc45884466ef1e20887bbd99e45ce12f8ede8aafe60e
MD5 4721eed671c932f373df8e6c70580008
BLAKE2b-256 29504d031b7f21088ef6d578ae1de681dda5ce00550c1bb7da1cc0541de62a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e665d22862b53b3ebaa722c0b0b62510083570c0042f21538a303967222a768
MD5 067fa33b8c1721f91eaf42be0f3a40e5
BLAKE2b-256 40299cb2c12fc30391459514c09df07adb67299730866e3827c8281ebe39ed19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25ea36ad32d8dea8cec1f304fed76e72439bfa21c2cb59b8ea1c4af9eb4c5ad7
MD5 7bfdbe85f7ef03dc2b442830175f2e8b
BLAKE2b-256 5d84420dfbb835e31b6e739b60f54d2679fc26d393a52a18f540b90369ab2783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0885337fa01bbf6dd191394a4716f1888cfeb164a3a2f734807c01dacf4e51c
MD5 743173352ee8bfae57703a8c62e5f9fe
BLAKE2b-256 c073400dcfd713f24a173945b4c9b61dbf5d2f48333a920c54702d7982b021ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d47252a85d929a10051b3c859e6322b643c10792a2e58a1ad5c5a873b9c1c112
MD5 f8c398ba334f375df64c6c75b159bddc
BLAKE2b-256 564ef680308f5d65dfcfbf9f13863f71cc11d782c587b180c7540284dd5f4475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb3040db22b40f3e19128dfd6ea270e7c5b5c035fbe71bfbaeb337d5f57499ef
MD5 d697bfeaeded1b6ac4b93ee76e0aa937
BLAKE2b-256 dfe8716648fa9da272d2ec5b316d47cd7ed2ce3e78105d8e3699a5309c2e7e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fed5e71ede1c0c36e75ae8e68240c6b83d3cd8d49be27b6bf93e4744bb19046
MD5 6835c52c43a6b2d27bfd9cb2b98e97e7
BLAKE2b-256 2dabc3a98b480e3a4aa2e8edfadaefe450ce88bb44e770488c0339491f4cbb8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53b68fffafc89d7d59104a7caf0e6f3727ea90e226511b1338a48831d1eafbb1
MD5 91c494c8835e5a942243a42b2c62828e
BLAKE2b-256 76a160033c11062db50143c62bb41aa486d900ab02856d7e55eeb6d48bf6c35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67b241bcb7c0e00c4753ce25f3d2e6ab9290307fb35487958c3b9462d4a42518
MD5 c3449cb942b5bcf0201b7de56fa364ce
BLAKE2b-256 6bdbe9993de853bb96583c8e82649cdf4303926acb1143ae58644a7ed1ec2771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a9d0a47f64ab6f20d346d5e65b89b2cbd3dba3ac2ceec6c8e8dbc5370e88a62
MD5 fe8097d2268299e0e71ceaa329ee6de0
BLAKE2b-256 8eea773c30fb6dc330eb8cbc63bf86142ba42db290cbdba813f2a2d97a02cb6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33994a12a70973c44012da70ecaf3f7d69386c42b26503c54fea7ad8bb8e96af
MD5 b4b86e13e7d1c16b8dbc1500eb70fb95
BLAKE2b-256 0e9b0844498be54045654d2d18503ba57055384f1642c7c3403c5b59c35f0480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7373a04beff10fdc8f26835fbf084e7078d7eec1c4067e32872a30eeb8bb33db
MD5 f55fec067e2010a6f598b3fc9a433455
BLAKE2b-256 d681f4bfb79ef6b7326eefcced1d7cce34e000ae6309f858fe67c0866ffce1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d92a261392a47f4bfedc0cba70d8ae00b3cf37f3e7bd75e35bd2be1f004e823
MD5 8dc59062f581acc39e3d0b5a87d0cc7f
BLAKE2b-256 5b88df28c34b9dfd0b70ba8e8b568ba6ff2de22ba98687bd48bb212cf5629c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63208c6d5a2715dbfd41e6690876aeaceed5f0b171a1de44f7fe44ced081a486
MD5 5c02cbce4231874784f423933a2410e2
BLAKE2b-256 d3ed4f4bc17ebc662ed9435b2c66c380256ed0c2f0e0e64f47e92c3850b6eba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 beb2376918ce3c351f74424c586a5ac4fd65b6beb6e96b673b8a047f596ee74e
MD5 09faa1fd39242843dd4f0070e7fb032d
BLAKE2b-256 8c65c59fab7b504e17012a915a266a31f1a36efb38e618b2f94d9981428f639b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fdb78d4ef59e29d2532b0172f24f39e9ef6cd16a2be2a43eafffa4ca17c88a2
MD5 8e491daa3a475350b3850cb1244346ba
BLAKE2b-256 8792eddd01138f269fc23d36f5fa198c07754c09dfee5a7ba9c2476c73bafc19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4951a7734524943fbc5c7e18cbfde4d731ad1a4e36b9a043623d3efd7100ba9
MD5 5a99581d1372422859708eee6dbb1c49
BLAKE2b-256 d10bdb7981b206fda953450e052cabcf03dda9eae40fb5e88a2e1b6046c202c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8640fa59e892346d9e943d41710bfb3ffc088a35d55fbe2c8990421fa2af01f2
MD5 663bbaa3d9057c754abc098a3473304f
BLAKE2b-256 862af83905142571b2302fa7ab0f8f836078a1a5571cb66db868e19cd7dcca26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d82d5ad766814c548b0074db7b04fe2850d678136eff64c3abd26692ee60e773
MD5 dfc87e708fa8a46af8fb48942df9caac
BLAKE2b-256 61377e5ca8b8efaca35e9f999cd9ab2cb79131e8bd704b8f32427ca2789633b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a80ce4d7ac50fcedef9de0ed323d4d0a858778315cec866179a6ee4d41d09101
MD5 28a28e425ff18b0c7827687d80124c88
BLAKE2b-256 1a313b1383fa49f7c9cd8bb151f16a012b1e58b84ae88b6b70536bc0cc40c904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8324a7d0d821bf08fb6006e6f761faffd52498e75c5febce05804ed3c78cb36
MD5 794c4e83d7154f1438508df08a7fb5a5
BLAKE2b-256 748dc031d3713670446cf93d9d0d8354f80a05704b27e824caf99db0dd8a56e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62b8a00283b7cccfcf2579b2f093014ba0e613e8e6bc3fea6ce04994f9b474d4
MD5 ee779aa5bd968462beb760b8f032a00a
BLAKE2b-256 ec8c2ba958aec6c2dde3937e47e698990ca879f87cbb2614d44e6c3cf4ef7388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f83b460c48081ed5beac35a12804eee95166b70b74462a43195f7936c9d5e265
MD5 62de39911f8eefebb43e0c2821ad93c1
BLAKE2b-256 65acc3683d5d38bc55d9f7ce546e9c6bfbd5a6d0a2f0a669ffd5bbe406abe453

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00b9a0230282675a0b600986f9aeeb72f26940e75429ee6e0a644cede9a48152
MD5 9f8b6f353b24ad8db804807c1427ebbc
BLAKE2b-256 03a78517e71e08955d86ca5c74cdc7b7386b76d4f51402c7b3df9ee1dfe98874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ff20c4cde3986a80f20917bf8dd7c342a3ac36ff8fd3dc7bed22d0b14a2daa
MD5 9cfc7950ad8025ae51552b8370ca478a
BLAKE2b-256 aa503e0c59849bc63c203199d53e007c5d6f4e8584ed349d5ebd461b2fa4b975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cef1ba1a9a1ceb49748ef964d5ee165e4613afcff6d1887d65f1d3ba7e05554
MD5 ac5af52b0b1922a2e8bf807b928172b5
BLAKE2b-256 3b65df6186a56a3a5a416ea080074788327b5685b3c03a86e5073305515521f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68941d71d947944e6aff01490bd9027e8588fd351fac196887cbbaf5897fe751
MD5 43f4cc0bd1815e10a31835291c5d422d
BLAKE2b-256 138400621cc89d757629bb619c292127e81586741e8c9d06811160d59a686e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afd8ff3b87436bfd452ccbf90a965b350812aff091eadd8779160ddff2177b2d
MD5 7199b9390c4b6c16ac91db5d48e6e799
BLAKE2b-256 c2b2606447f4f0df1d0ecd0a3eee8eb5b56aa4c977793de9652351dd4f99b887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2014b4f33ef4b52fa4407465475630957f1d0bc5ebe4702920e41d0887227e3
MD5 099392aa192d2b48b3196a3b91bef22f
BLAKE2b-256 756d7831b4494b284224f64e1e50e227635a614df247d7b787c77e29e507b0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4a6855d7cc75559dcaa2bb40da0145c865b5876c15fa87cdf6fe588851d5f76
MD5 2551b8a62c76a07d1f0b8989aa821a0c
BLAKE2b-256 802feab0196b4ef2bc965c1edaea429868e1864749b979c82aa0b457441dd013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 836d19c4bf342d11e353cd649dddb77212bf3f8e6d8587fd4c0a1d0ed6b6cbbe
MD5 172909b08f88a90197a163ce621a4cc0
BLAKE2b-256 de2be2d4cbbe6b8042f739b82acd73e6a1f2563cf6822c04717c7302409e9a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 974181ed914dacf07f851af35171d86ca3c3260bd6733a9d3e0c53ceea44af7b
MD5 2eb39db27ffb92b341022385b6826801
BLAKE2b-256 d32350b09988660155d88505341812fff169cead44fa28018af793bdc9a2d3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77fcc6d00f4a9fbc94de9b829741585d82669889c23b1076e3beb84fd0b8f29a
MD5 ff11cfebe1ed0305c84223b30ecbf662
BLAKE2b-256 20b98e10d520e46ecea0ae122a10fd71959b4eb5b243556a03fd7c6abe97418a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58382e51e1decc099e14f4b74be7939bf93503b9c7374cd5ca63692cd781fa4e
MD5 a452ea3e6b4a9bf7c62eb9924fab6739
BLAKE2b-256 499b2a8c7e4f677780013c5b82b58c02df8e1f9c5bd30c1ac978107586cb403f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 863a7226639142fdea9132d4158c0d65be6dbcebe3cf31812b14e0510c990dcd
MD5 6eee6d9bc777368eb2619fd5c531be46
BLAKE2b-256 946b393702f2f12abdd3ea41a256e660a2257074fc1071067cfbc5e7cd68e3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ff34b4a0194053a18cddcff01005e64e88f30418bbfc064904efee049064655
MD5 a9c935f82538bb76a83e3ea529454071
BLAKE2b-256 0bcec8b5a83a669849290d36f97b182291cf8b434f273878fc5aa02168c404b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8ba2d22a775b3163ef0ed8844264ef68ec9e4f0ba49e763572f929a9b269645
MD5 ceaae59771f5b33cc20d66891be6b732
BLAKE2b-256 b600f37a8c5099ea513ce91fe62184485cc4b176f5857f6b997c21404487fbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73d29837cccebcddc5556ff516cb1f582c9e077271773167638f0f0cbee7e306
MD5 8a18e501dbd9768709425aaaf63a2bfb
BLAKE2b-256 015fb6fd7d3f60cd9270aff1286bf3067dce201b2d24ecb2ca89c6e664692594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcb5ac78f76de672af3ce437344f65ff880017717dc4430103c4c3dcc0ac2d5c
MD5 2bf9ceeb98091dee8c94ed563209a967
BLAKE2b-256 0b79c11c990ee6d4561680a2f4b94f12f1f3d56640c7d2623aa1f6f628173100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cb10a6f192fa5d47cfdc77f8ab2ac0ae22a12a95d0180a38b8c30e4ffd59871
MD5 755e22bb84916aa3de70faa9586da04b
BLAKE2b-256 d69eb863754aca3ddcaa6e1b74e09bc38129f43d57bba0087c754e43016d5b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c7e6760b3eee4209dd6071e992435536abdf3ca3a9ccb62bc83c88b548f2771
MD5 14a01ab1e1eaad2798e197063ef2c762
BLAKE2b-256 f512053ca7269fac7bd4d9f6861b9f2507f7942a9d12cce90b84c1af2636c77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3601830e7c12b590c37f3ac0e89fb954c18a40d7223b23686669c5e18df3483
MD5 3e048c4bb70e90bceb16dc3bbf33bfaf
BLAKE2b-256 8d8aed4cd3fc3c449a9bed15f82554205b8d083b7783ee2c7813b61f0565a9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e19b4259f357e7254bf8616f284b0651200db6ee8b7259c7be54359f9dea325e
MD5 b4f2e73b7152d3461bf6115b01ab1ca8
BLAKE2b-256 f9d31f707366586b8d2dc2f884d0f400d4382bfdf2c30ec977bb8815a8419a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff12edee8caaa76f126fbfe54db75dd25f517d291075f6de7018ef41020bc9a9
MD5 52ee11f9b761975e84003526acf760ee
BLAKE2b-256 bed7add1bab766a55729db402bc2dcdb54ddcb6678b8cfe68f70fd484c18e37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef2d25148ff887a3a1edd969866657caf26ba15a2a89dc76f3b74a2f744384f8
MD5 944c0242775f9a76cb8c68d59a2d0f6c
BLAKE2b-256 bb9474c7a2bcddcb327f1f9610127f5f6bf06ef70cf3e78294f1a885015ebef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1406cf4fcb600f3cb33ad4f342135cbc783027a3a15f3a2fdf7e9ae139a1cca0
MD5 fa52f7bd7d7f184957cec33e0a577b9b
BLAKE2b-256 42b5b030c461c7cb37d3e42f5f18c63c554056510673db4c1143e78d25dde415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f35448915a112ba839507e5fccf1de8afd946391fe9c713479aa798212409abc
MD5 e45f8aa3c46581ceef3c43bf9a7cf0c9
BLAKE2b-256 a9541cffda4f3fd7cd678027f8b0524bb2037c22f3ef996525b9cd5b5d50bf1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87ee16350886963b62fca61da9a37f7910dba47895824d7a01e0c773efd4417a
MD5 5750ed5467302e69154e4d8545f42481
BLAKE2b-256 d874e8ba746205169ac8c91ca8a34648536a80af2a88316c9aceac7a90b3e754

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