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, 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.6" # 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.8.tar.gz (645.8 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.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (326.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (314.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp314-cp314-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (347.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (326.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp314-cp314-macosx_11_0_arm64.whl (275.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

trackforge-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl (290.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (314.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp313-cp313-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (348.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (326.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (275.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

trackforge-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

trackforge-0.1.8-cp312-cp312-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (347.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (326.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (275.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (290.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

trackforge-0.1.8-cp311-cp311-win_amd64.whl (186.7 kB view details)

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (347.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (343.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (327.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (274.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

trackforge-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

trackforge-0.1.8-cp310-cp310-win_amd64.whl (186.8 kB view details)

Uploaded CPython 3.10Windows x86-64

trackforge-0.1.8-cp310-cp310-win32.whl (179.2 kB view details)

Uploaded CPython 3.10Windows x86

trackforge-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (347.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (343.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (327.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp310-cp310-macosx_11_0_arm64.whl (274.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl (290.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

trackforge-0.1.8-cp39-cp39-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.9Windows x86-64

trackforge-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (344.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (299.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (329.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (345.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

trackforge-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (329.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

trackforge-0.1.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (345.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

trackforge-0.1.8-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

trackforge-0.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.8.tar.gz
Algorithm Hash digest
SHA256 4e3f7608b5745cef48a0abd445a35a85a82a3cf050dfd96423570745db228313
MD5 1ec0fb5b582e0860e6a8c92f70568282
BLAKE2b-256 6e4dda2a07ba252a4a74faa7df91c437d5c4d209a47db1827a11c4aaee85c20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b736bbf1c48e56aa43db1903bcdfed9911e1ac177729450e067382bd08721e49
MD5 1f8929f803aebc72930f8a4a469590c9
BLAKE2b-256 7c8c4988177a75f1cfa412ef826f1f352eff61269e05da0f2220719d1bdcf56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e450413fa9886cf3bb0693a95e65c0fd72821552851509fe2599a3227deb7e00
MD5 2a9856a9ad825beb7d013413be88fd22
BLAKE2b-256 d4b1f5173b4518a353c07a096ba9d09c47b05c5465c7425b5dc842282a60ecfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49dd0690ce5016a56651a1c94a0314596f94528f9b67e324e8477d7d6d43ef92
MD5 13a367ec7429badaea646d7f253a1ef9
BLAKE2b-256 d9cd103a029e2320cdd58334eea4fbfcd8d42cfeeee24dffe9640d8a685a1f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b13516810dce36e35182e5c333a146b43c9c5594617e5aae0414e42d755d6e79
MD5 a79cdfe773c378d4bd634411c18c5284
BLAKE2b-256 e1b246d053d11109903cbef3f0e2454484307b0f8eab46cfb56df66a1236ed05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fabfe24744250d21732dc944228dc8d9b46e674ab307487463cb567aa2d0dadf
MD5 9d44af6b78270e7e4e976936cf6cd5e1
BLAKE2b-256 67e0aa5323be1444f0cbf12719658cc7b471aaf02afc0f3554dcb84d8ec59c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4abe69667505777ab8199344a5784b839bbce73493e0a3a9d80243c57e1f0e1d
MD5 e7ac336f0b9f541d9dde9f15b8748542
BLAKE2b-256 9f8454387c8e3c821b8a6ac1cc3600d45ef62121c7f657263fecd4ace3a15a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8489f1bd4d163ebceb75d2f252fd3d49d7c03a8b7c593aba3646331e41bfd50b
MD5 f591406f5ee8e861d39be5721f4787b3
BLAKE2b-256 2da6062e7e65dd88916d8bd77b0e47a096303465a64e659ad866297ea248f845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdfb8af71811499d29de9750bb30f45a2b2d7dcc81d540d5dd4453f4dab649e4
MD5 36641c0fbf6377fdab5bd5dec980ac5c
BLAKE2b-256 6f5346ce5186d10484524a3408ee55aa49fd3996576d0fea4b79534825ff10b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30a43262c1a917ec7412d4333bf15ecf0570531ae15ee3852a5427df8b1bfd96
MD5 1bbb26db177483c6cce3449d42138c93
BLAKE2b-256 02179ecd04bbc52c5c0ce8a12c2f91539845200aa6aff045e39966fac8200d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3335a5886c179eca593fd7bbc4cc36aa66fa022de4d6665b446178b100d62182
MD5 bc6fbeaed970f5d9166203d49a05889c
BLAKE2b-256 336da2d740e772ad664016349b24da69f050c4726116fdd7f99a3a8d7ea21b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dab047caed80a1b0654feb15f304188bd571fdc03f7a5a25997fe573a0cdb458
MD5 dd7ee895396a8436a52062bc1d4d2422
BLAKE2b-256 fab3f18b97b0ec5ac89b6d37b119a2b20b9137d3173bc83962d2ab6c9cb19a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47021791844b64179b487236f07628d36951ab8c3b5e3511fd17d21b2c060174
MD5 2b9ad0764c0f0eb79f9430ca74cb7f96
BLAKE2b-256 fa2befac2d2f924fd0112a3a233e1c1b45e498b3f62381efd2499a6c3cd61902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74ef515aad642e6257fd295671763f53161d312c3386dc108341c805680bba9c
MD5 090d57e2ac02e31c67701ddc393b17d4
BLAKE2b-256 c26f11d3237aba0b1c5bd5cda0c904512934661a2510516bc66374737e407f78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52b2498dec88e07cc8844bef370f2206d12c58add637750f33c920d9545573f9
MD5 3937924a9a58d447de9ffef0d0639dc6
BLAKE2b-256 c05264b411256eab2cc4e47f590f0ea29a517106debe86b4c3ae5681338817a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03b982bd72eff2dc30cac262024a209925673789edb91c42cfab6315dd540f63
MD5 067205722fab10b20b53fedecfa66acd
BLAKE2b-256 b8a8a911f531402f8029510837a05c6dc9897377e039b95f67adf9bfc95c715f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 485cf2cda6b2bcfb9daf4a85a7219c35c9422656d6d6efdc05e694079cecf54d
MD5 e2c37a09a9754a240828337b69b5a7c2
BLAKE2b-256 7a65b5eff26bd602dc3cd500744681984e2961282e2f9eac5818926dfdebeffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 efdb114252221aa2d01176bf1c2d3cba0cfe0746a39f333c0ca180ffa7b12c0a
MD5 bb42e3231f24c724111d3bb09e2a0088
BLAKE2b-256 5dc8100eb096305da243e9cfa312ce593bd492f1da50f0bb5353e3b5dc144149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13712389392fe0c7b8ad450cde890dc0967c8178f293e2b4ddf462cec376a1cd
MD5 933e9565fe19fb623f4f6ff75e5b8f54
BLAKE2b-256 5c73cc9be8c6df667ef2391e4abde8cd559cfcbca675e20207721e0604cfc192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f60cee8e762f6d8876566e21a798b5a9bd18b2cd3768722eb464dfad06e8427
MD5 d1b11f8923a9795e6bc44c11030ac029
BLAKE2b-256 207681eaab9e10450c6b7274299ce481e731e05ab08540d20b5c27c2d442eb30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3eb6f58254e4f78bcb727b53788a193ff7b830d31603b1f841837a41e19be169
MD5 03668d276dfd562569761ba1d6b4a72e
BLAKE2b-256 8b2d7c03a0157b26ac8652100036c9a19074946a7f94c8ea699ffafcc4b3895a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6d9376f9a8a9ebe0ad521cf012bc69f37d5f1446ddf5201c5806729f667aa7e
MD5 30f97f30bb71cdef3cefa2fe00fb4ded
BLAKE2b-256 d50b0105164bad764942f7944c99c3c98596ab1a73e00cd1b5ddc44c498e907b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f31e273f9e3587d16dd8cce5a90d9b72c37424b7b1bf38517bae4a5045b6bbe0
MD5 42fe3df689aca269ab4ae5fe662a0e7d
BLAKE2b-256 17c796c13abbbb176e8ca6e808e05e8de0a1ac4c943ad720dbab84e5437abeee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d08302170cb1bc55959edd88257b2f36a2a0a69bd06ce06bef311d3724fe4479
MD5 12d4034d9ae4c87c92da3912762574b6
BLAKE2b-256 361269adafc0c842ca5b53ab82a81945bb7936556ea436e3ae79268fdc3f9806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc874df04ecb5c972441ebf32dcaaa0dc1099df26f143fdf61887c8f25b74871
MD5 5463dc415dd557d3f76ce2312a61ad86
BLAKE2b-256 4ef8682f3fcf3d5cf9acfe45a673b5c6f1bc72f02c02b758c25bc5caa8e3feef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb14331f93357e680deab42468b0e05c2d7732b47a923233e7d644316b3276b7
MD5 df099839a534bd5c57a8345d41e5ebbc
BLAKE2b-256 d4970525bd84f6f0479eab4750e39b100febdc7da7d89666d38f46221e2bb947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf10d03b0dee1ad982320dc394ee3244d3cd61b039235e16d4bd77e8320c41d2
MD5 4f41d145d18de73c3d3332dc356c30f0
BLAKE2b-256 561385da34a06962482bcb7b39930cbe4cdccf32c2d66b1a1e38f1104c1b61e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0de0618572105d0514314394dad0479e0840cf7170ea76ce22486f60df41c2cf
MD5 46c7eb7a00890bb15db7093a3af5881c
BLAKE2b-256 81e9c8e36b391d01fe48392e0509239536ec97f4f7986f5d67168f3bec6cfe11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f69340b60e60ea5805a445a34a40c970dfbd3fad6507649c43fcb25aa66012c9
MD5 9a36cd944d047b2ce05311bb045b2112
BLAKE2b-256 80f801283c21d2fed996af7f20cc8d6c44a8a25b70f81547c67f94fdd4c5f68b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffe2f6ecd0248d4c18176265ae1bea36fcb5d7db326cd14cdeac435dde07bc58
MD5 567afdd22a47a82636d29069d8c47b9d
BLAKE2b-256 0dfae6b86f2071940490e1d5a3d46b26ec4f23e797791fafc4022c0aa9a6d1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8170b74501488d391088b2f871fadadfcd50a13c9d60d4ead6d15572e7c78cf8
MD5 f473b3f2ee73cdc4a4ad0fa6ba65faf3
BLAKE2b-256 a661f178190dc848a1a42291c56b4f15cd6b282464ecac8cf6900399e64e6cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbc9ce8bd3a5dc3b1ab0deb2d2d20d140dd566ae9b22375e5f3b3693ce2f3c07
MD5 03bae653ac2f8241d52685e7f1610712
BLAKE2b-256 59c5d0ae392e79e07303b31296453518686ac58d4f77de2968430228a7ddb11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01b50d66b73d12bd25ddc2ebe51b5f2caa940a8ce4ae9c4e5461b2ecff0d2805
MD5 33540c6e461de0804a139917f4e650b1
BLAKE2b-256 fa13927042da152c2e9e5251f254658c259f349320d7482f27a428aebd3148dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 30b97c05cc3933d26ee96e5b72eae246371e34d048c2d6d80d7b4a33f7825dd7
MD5 5ade437ee15aa629fa777baec7d16b69
BLAKE2b-256 2f4ea4d9aa49b7d8e121afd31de61f819ade42ad9a7ac8a2f68841e0610c9810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bbe55c328a005de0d812f78df1cc904b7001dd03e3079e5a2de0ddfab2f9340
MD5 1e8cbf66842686f0e78ab605aee8d897
BLAKE2b-256 85c462ca5a3c11499404d1c2952856d394568536f866f1a459ae4268b216cdc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a15d5294aa1a898304f3b8fd2a5f29de031c2cbc74d46069f9baa14a6a910ddb
MD5 be7e69a1acac87e7a6246cefac635a73
BLAKE2b-256 9e70cb63d20b8778bbdfd4889889210ea8c1afb47d25086f9dc9990c38cfbdb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2491f01fb5bb89d60c040ed4ff9d0a528c858cd4123da5b094b46ebb0d8200d6
MD5 c382bcaca2635b7aed7d61c9d85999df
BLAKE2b-256 3f4c27ce5a3957d528a01c957e865ecfbd1a82c45bba1c4a1e02f231dde382ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92c862a3edf20aa23f7129cd0c9330da81558e92f53ee20b23b50ca130af5ba3
MD5 cb06860e307852e19fde0e12cd9093d0
BLAKE2b-256 e626bcd430685522ab6ce63dc53c82dffb4d4850ed3fe8220d91f37980dbf9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93f5179750c1a09f014c3a30f0185105fbc17f3474c8586370181706836bcd62
MD5 8bf4aee84ae8299ac24ab27c1ae7ff6a
BLAKE2b-256 abc99a3061325676ef371a154d47a5c79d22e6d80bd9df0401e66da1adec4658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 209e9b224059bb69ab2fff2f3e2c621dfb9e0aec3136422e48c2b733a07fa16d
MD5 7cee983d580ddc2164f488a8f20173b4
BLAKE2b-256 8a014795edf6af2e21c8f0ff6723cbc42c37cf4f6361ce0b6b156b4bd20ef8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77130d441205e4c8ceaa66927b937dbe65788e2f275f412d97dd766a73d3f2bd
MD5 15443d13680de304d07f68c39244a490
BLAKE2b-256 884f10e4b18f6ceae5f30ce81d22d2306269f65ad19bd4afafe44f97f8723272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04f021126ae3f768b868a4b23bea27f8a7a1896bc126ec950d2277a42811ac77
MD5 fb18d2d887e932211fb07b6fdb760ef7
BLAKE2b-256 7f8633db5171a5530ded85b346a7f852287e7710041f397ba8d459cffef3d22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 978ebdc3affdc12f183d2af27c828cf9734b25816088c0b7b2724f2dfc49403f
MD5 e05d4545da35c463b26b53b719b85ec6
BLAKE2b-256 6011b118cf7ad241af833d7bd579438c3d62b39fd5c5843d38e17e698b40aeb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8985eda5af539b38830b93b663a041f6d6bc860d19bd8e18488ac426245cf18c
MD5 dbad94de4124dbd71282b48770b7ec40
BLAKE2b-256 ba012f966d3e0af3fd8dbf5f6c3c5956e12e8b5fca1abc240d27b02211d61937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdd8e059ece5b5df6515648452636bb90af91f519e68f6fb99ac3cc7f460439d
MD5 0b6c29a637a6f457aee749f0cff7e1d8
BLAKE2b-256 5518836dd743a5473fc71325e3b9cef6d847586dc6a6b48efaa53ece8979e8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c48e057604a3caddd1d8aa18055de6b3354db92a107f328ca19a1e7cb5027d61
MD5 c4cfd159fefff22769df142404738450
BLAKE2b-256 0d0de250a9b40a627172aa9a5c9ed15c9850138fa017313988ad429bc6486c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 add4cdea55f7ddf1ce13acf2c43924c9c8f0359da0b2fd17656c179bfefc774b
MD5 a9fa933b8c8da4fbcdb288230ad2ff81
BLAKE2b-256 c5856e72f69f3154c1233cf5d75fd5d0ae9e6622a25f973dda006f0bcd3a8720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8be06a40c9519e35c5f14a743bc9c8219a594f58c4c511c3e4ac939d1932d42e
MD5 caaef073cd69ffd4d7a80cbf22f70aaf
BLAKE2b-256 74fa3994f9a1cac9baae85ca57df4c2aa43c48af8b7aeb5ab21c918558b294ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03efd5cfd5883d3d3cc2254e301535d1abc2fdfb373aed82abe621d49ef14902
MD5 625e553287da3922e6e6edf0b6b8275f
BLAKE2b-256 a6154c5d5082ed9b8dacb442f9b1d5c560f682dbdf4edc9a46cf53879450c994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5b4f795e60422424b16e2c78dbe003a88f26bbf4b2a4e034140c8e4f33f307b
MD5 9f9f2d9b2a647ca9c3867062aef249d1
BLAKE2b-256 592fd30f2fdbfe4e2837401d22df99b65f70ff9107ff57aafc97a7334760d3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca68beee8940c941f274a4215c91d844b82ba7832fc6c2039cca0d96c92a5873
MD5 0770b2c733d7f5e7f825ad985c915bd8
BLAKE2b-256 9411021eb71fb8241bb41d35efbc645abe649cda4cfc195288b9823367d553aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c86e31ad69d608edfa5d6a02ff3c44ff8a7835fb18f7bb7bd6b9c0b50354d46
MD5 35434728fe299cc126298b12657a7727
BLAKE2b-256 621277e460f1232fea7710eb2519b47c2f0c0e79121923f24ac7e02bba74eca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: trackforge-0.1.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 179.2 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ebddcce982f70f717fbd2911a3770d968d31e943c5d956901dd5414b744c5b98
MD5 a88add29e0a6924146e4c972c7883a6f
BLAKE2b-256 8ce6dd9b0394529bc75a396ad4dc9a80292a777ea764d53b1659a4e968eb87fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6da656d05db138f2832b1efda302cd58cd697f56191f020597c1e849340ddcf2
MD5 93a9e39dbd50e650285f566e07168237
BLAKE2b-256 f1f0c51cc528db3fb094185c97f2b01836da9e24f9aafb0c90799d39e366f635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 422e2c5e009b0fbd7562fe1e6ca01586444b2df37ca44c3f5bb2465592db903e
MD5 305291b46de04843bca4c608a665f7d8
BLAKE2b-256 917b306e1df2bd2a1b02fd3c1748b1eeaa0dc6fef8de4b0291ac81ed97760f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 140d4d1c8af45410ade76fa14528e982d26beca6b00a7e9e97c3a440b65933ea
MD5 c840cba0a329bb34f9fbe4d11459b6e5
BLAKE2b-256 b4fd2b1a35525d227a3847693e54a87dbf3781b81beddc7853955500ea83167f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2d8e7fa34255f1704995acd75191ec79f89430cfe74068d60529083f911e4c7
MD5 b98d08de92dfbc5e75bc4972fb61fa8b
BLAKE2b-256 3b775e84bca7a4f4b94497aac88b372b38487d1cfc4f1f16e7f791bcd21b0700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bc82a3a876584e079288616005f4cf95c57c645e9fa4cf10186a0f964593b45
MD5 d20eb5cb9d11c6906d94035c636c5d54
BLAKE2b-256 01f8068b04237f9759aacb9ad8b9a8d00bca4d1b2a97ebcdd36994f0f60a2e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41842a8c621bc51ba41d4bb254046c4d1c38a3cf52f6d7d411600f0033776212
MD5 fa36873881ea48a65f326c100624588f
BLAKE2b-256 611fa461402db18d9f9ad68665090c97648d8180e5cb8fd258384d215e32b00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f84b5056494d3ad6e2d3e24e3941a90870f2d4bc774629567e38919e40524857
MD5 7f736097b1f0c24a8e51e5d5e3e61432
BLAKE2b-256 ed8206e7ae86148178f007c305878684af61c8742464c6378c8bc1cc43cdb845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53456e097226da9b69de789460d319d8cc030addf4e009e7a9468b83821a03b3
MD5 39f00b8f1bbbb8b6a9090c53a74631cf
BLAKE2b-256 12156dd1791a1ea863cce1fcc2eb72250e0222501411e10d6db6e244f030c299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b4aad73970bdaa8ef9d2367396e3719a6658f19c175b09d951476641940352a
MD5 0caf9b2e6b61950a03c5b9cd08052f58
BLAKE2b-256 c3fbe6defd585318f213e6b5d4b10e2beb8012e4b5342454ce06e5e4745d491b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7edf8dbc818e00e0a964832b10a931109b4ab4928107ab54ce792253eec38840
MD5 bec651eaae2961ff948b03f57c0bc1d5
BLAKE2b-256 4ecbf338df7849c597ff2090e997e9a5f19873d3350c9ee4e778feef0b6ead17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b919d04c60560f188d7bb69c0f34eea58c221b17bad8a9113b3e9ea269318b6
MD5 ac416d3c0ce7c929b7714b67be5be805
BLAKE2b-256 981f493ff9a97a119505d28539803cfc93c05724b5cf3ee4894dee284b6973ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47d2773ec416e8ced1078d09b518dbd2e68932360380a0ed8e76dde58576b67c
MD5 3f72fe99ac7ca6a190a29c27b8edfd90
BLAKE2b-256 a121e1c31f01e32b9a7b0a4dd13ca7a9999e4f69feb555c8427e21d02f60d202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30cb003e4c5789d32a6fc859b9b142aab315c39de633f4f453c9e587861ea2e9
MD5 5e94bf96b8f19824a8f942056f3bc755
BLAKE2b-256 677a9cdbdc4e16dec2526b96883270a71e4e3d99583cba4eed30b78d336ea29f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e29ceb1a0c9bebedfa447c9310081f094b7a6a3343e5c5f67ce9fa81056d0eae
MD5 03cb7f48896bf053edb6035e8573371a
BLAKE2b-256 964a81adc1826868d63cfb72a38d6e93cb16b2cc114374e378d48752d89e1c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4888b68b203a1d5c04a362757eeabf7eaa9e4e1375aee67b4bb0e9ba5d15b5d
MD5 62d5e9e6fe1a66658b8b4abd31f44b3e
BLAKE2b-256 271e124444a008244a14ff165cd645b92dcde2ad70bad8d137649e6a397a4278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa5de9b7cb58f5cd85c23960f166a70030dec685ac3bb6810ac9a4af62017bf
MD5 89f723fd6df701ae8e4c558c906e913f
BLAKE2b-256 7fea0df6ed3134871ec08d8c2d867e8a8f2b3373d078f68cea0f7ca28c616d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b2a788eb8626ec58d3ea8b57daf9c4f598974481d7a3ddd9eb3da9c2acf4288
MD5 b276e3c6cf9257772d6c8ae77c68323e
BLAKE2b-256 2034a244e3b02f5df583ecf7c301e83181aeda06d6e0f3842b7cb42532abd872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 893632a1f48c0435d9dc9dd022254249b60401048ba2be3d89f640db49bb8356
MD5 50d8705a27135d83c0fc9804951b0cba
BLAKE2b-256 304465c86c01689f2e5ac03efa5a72aff3c94c16b5a08aa71afa70578af9007a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea2ee100b524c6e6700b793aa9ef99715f580ce817dac013bccf7871810cdcb3
MD5 b125d24982eef512fcbce701db3ff58c
BLAKE2b-256 754bee6f8d06c9f42f6e738879346ec89abad60bd9f25859de7a798ab1f98edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fc945de4b7b72a33fb1d37f465944f6b4e5d49b2052f4eb5ebd1baeab8dab74
MD5 7ae827382adf14255de597d88c825dc7
BLAKE2b-256 b78841f3406f32edb907d0b96db40e595bd6c4295859624e4bd9ba6ea4342747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 18669fc8fe3fcf676b140be5714fc7e424fe5c64f3d0d31e525e5f886029c508
MD5 95ea72d879b27e3e723b936e40dd4ddd
BLAKE2b-256 46fcc74a9a1be4aeea77c32a97b93522a311a2a8aea7136399085548cf88f528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbcc4b661696135dadcf6750aac3935058a0ea831e009a611656287ebe0cc612
MD5 aad9fa3d3aaaff925ffce827ffe81eb6
BLAKE2b-256 bb2bc817c3e3f72920ea15416d337a91cb0aeed6062917b4a2de5b70be0aff9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef07dff8089e854b90d34f240a8cf0a60b3cd2da64b1187813a0e728e04333e0
MD5 58eee72d1aa9bcfc5d58209549357935
BLAKE2b-256 d343744b9b8282ff8d27f839f33810f80110ea15b550dd149a6204eccb828911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd41f9dd10376023af222049b7b97345b8143110e30812319f7ca7fbfb795914
MD5 91d7cc9a6a0cf517cc57a36326e0f957
BLAKE2b-256 3aa23f1fd8b5a2eea6dde3d2cafc312ce20a1e563428ae9f80c54747199b4080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14bc98ed9f8541ac67c60cfe52ea68a194117d0f7e116104cf888b53d9c0dc57
MD5 de3d3fbbfc463c5bf8b283c06c2a6b7d
BLAKE2b-256 867574fcfb592216bf9eee1d20a8a5907dc1c9e0d97a11661abb8ba2291f99c2

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