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.7.tar.gz (645.7 kB view details)

Uploaded Source

Built Distributions

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

trackforge-0.1.7-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.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

trackforge-0.1.7-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.7-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.7-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.7-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.7-cp314-cp314-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.14Windows x86-64

trackforge-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

trackforge-0.1.7-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.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

trackforge-0.1.7-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.7-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.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (326.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

trackforge-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (275.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-cp313-cp313-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.13Windows x86-64

trackforge-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (275.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (275.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

trackforge-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

trackforge-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (327.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

trackforge-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (327.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

trackforge-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

trackforge-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-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.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

trackforge-0.1.7-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.7-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.7-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.7-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.7-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.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (349.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

trackforge-0.1.7-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.7-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.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for trackforge-0.1.7.tar.gz
Algorithm Hash digest
SHA256 ba77f7e8fe249eda7cd7ed583ed09999cf2ff20d448e861e230f3759fe8c7f01
MD5 099cd6ab968902373e36ed0f2e32c2ed
BLAKE2b-256 7d84c5305ff6e70672111b1790a1355e561c9a9d804c32c6352fca512f510d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f418a0035eb62c38b0fcceb80feba60b275f2bafc5aa59551455f969c48661c
MD5 8fdbc532bc3db35210c00c98fd7aca70
BLAKE2b-256 b4b54c448abaa107571cec6ff950c0ba344dc8d375c1fa98c9e41c4d93b02479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 566cbe4554e899d5507196bb2e59b44f3934882d03191fdfd5f9cf8c04e1fb7e
MD5 8bb2b4ac45827dcbc201bc82605534f1
BLAKE2b-256 62c1092349c325914fad4fb30accad7fcf404b4a874eb3a94467c98131c8d76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9745649593fe569899e106b0a7f64cb7ca0000848ade4df8c13131b0211b624a
MD5 080fe689dbb5c0fca21080913e9aeaff
BLAKE2b-256 5fdb43bc965c35d19e377aab4d29c6fd1f77086cc64d9e544ba54270cbaa4676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd49bcf79ec89e8e93a9fcaf449e693507b8bd09a138ec0eb45f4ab3b6f41c66
MD5 0c6f09acea2ca3375bc998dc6d8bc7af
BLAKE2b-256 b7aaf20175bcadd223a1d27a7b37c2c523566b1af194de021062f89d18253d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee5709c155db1e267ed697ff78c319b0442a1483214b4ccbd8109a585fef5471
MD5 4624fb610d839af049b5a2a242be3fa0
BLAKE2b-256 6edd9ce220b46a56d693b50b2f1f8e668182bfb9d1ab4f767cbb1dd0b101e4bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e46d7c39afa42bee33d3aa67e25d279661eb5d4725dce5bf2d95c267c1c6d3d
MD5 2248eb6cb4593c69b54f04692baa7d16
BLAKE2b-256 bd67a58188811b7b839cb4e980dd179c60c32c27eaaca424fefa37de737c5d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 671c7c08f02ca47933ad7abbd0554e59f98bbef69955a74d3198212de17e1415
MD5 a4db76fe5cbf494955b5b3e6e389339d
BLAKE2b-256 c91a89bef3ac0edacb82bcebfc9cc87d7adb4f7a307243f83617c5b39db3c7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3c7ea2dd3cca87a51e03c567993182779e34c8a37d25f85f0d7739e5ccbfca6
MD5 3a855cc4aa20be4693d4681400bd42c1
BLAKE2b-256 dbbdecd500b2e933e80f3a12161a528aa975473627997748a43d000afa354ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2651fbb8391b5da3bd7493edf501c8b81c97dce6c9ba1a2e3ded39cb74b6d9b5
MD5 5620a4b60c5b16fc3b7d0f8c4542e5a2
BLAKE2b-256 effd403fe81534002b284143fd0ca6d99197b034a774aacb277dfef48d3129ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58d4a8b68d976e1209f632007139ae1bd1b25536cd5947083a0bad1f6453e04a
MD5 76cfce045270509562758ec70ccae365
BLAKE2b-256 0e054a161fb52abc46d37e3385c8191aa9e5ec0c482cda31a4191bfceb809ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b551a0b03a0ed0101f928d8162fcea2050198206d4d0fbf8308f9d1779b54f31
MD5 f5291cdf4b4e8808e8edff00c1bbdf16
BLAKE2b-256 2891d2b2648a85ccd65bcbbc4efd8c0f62a6471d35b5035312afcc3e63742f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa3e33fec768836d9f0a60b4d6919ec673ea99e6a267da5c2a7b5dbfa3f0da3
MD5 b2a97e2f8b242567793e34a177046474
BLAKE2b-256 c2c6bc0350970c5af1f4040749d6feaceabe44e5d26c5fc0efb99c49ca2ac306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21de09add30381b67c32995c3869b0c16d03980eec239f8cd0e661469c2497b4
MD5 5113f008b1a7339bae6d3579340c5bd3
BLAKE2b-256 189e967a52ee94d7f4e9a3e8df011f211374d6fba0ba7eb20a9916e93e4c2017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b5f13c56e1ae29b530864a450dce6bb6c90eb7e5787da82e12708e960b88c17
MD5 193d38b275d86293e6ec4a5b3a9e0c70
BLAKE2b-256 cf7c8b72467eb8bbe6b23d14c09224012b86b86ccea5b6cc80d2171847010ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 062a64ad4a5f501213f7f8da33a549bc6eeeeece60f5894106ecd77f9260087e
MD5 d7ed019377636337274a6060c58d5960
BLAKE2b-256 b1d1d60ad858a753ad46f7609720ce1962ac7ec212d89abce2fde4efae889f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fd9a9360e07a6ce99ccc19a11389d27c9fe7d48a907e5ff32ede981245a2592
MD5 eba6e276194517ea2244a2a4b7a91275
BLAKE2b-256 e24374ad459f6ede5f35bd9a98533b9937cb7078051b032910176d30c95f9daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67aab10b7b706b925605768a148fc0a2c0d071d8daddd26cdda983e0c35d1d94
MD5 34258b7a7a6480c1c0b07796dfe4b1bd
BLAKE2b-256 332710b87a24a2a7bd93e33fd07b8e2603db065ae52afb701b3674bc1303511f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 539d166c7ceaaf7366364090a0beb75b322b0ea8e9843f6d97dae74b604aae23
MD5 03bef7b245e956a692f9218fe1967eb0
BLAKE2b-256 867af8b5c7b1db586703a7a047ec441d4726dbc173af53a825489ee15c017b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b43599f265c16a8b3da9969bcfc6d3d094215b7f67f46ad5f3bfda1ffcb79d48
MD5 2e07e65c3497792f643e206660049ddd
BLAKE2b-256 be3cfaa28fff1ed81c95504ae0ec9a068094674597c7d5146c55350f00702ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 254057e2329de87873bbd351b0864839362025b8900488211423a851238c67be
MD5 9fa70a39079d7b2022bd888fc8379fd6
BLAKE2b-256 eed1e8c50b43ff045f48a5a21232ca88591e1548164db6ebba61162fa64e9648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d9a248357b1f389c8774db033dbe90a3add5b3800c7625af42c806b38e3c764
MD5 72f15d4c10eec9af7cf40cce04a67dbe
BLAKE2b-256 260d3fb36e014c5754f43cc5d90c634ee77f5b989195e7cbbbbef67aba80537d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfbb6170579fda1fd617d21d958136b743da6ba818fa2ce474839d4561857cb2
MD5 3952d063fddc0a3de9998f53d4f0a470
BLAKE2b-256 76556db9a229d71f071687a2fbdd276073fa9e31bfe9f53df8f8a1f92d8dbc2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67fe8402059f191775da4026fcf6746ae2381986159373573271e79ac837cd3a
MD5 1c9f548c1065c53636f441d1f73762e4
BLAKE2b-256 350b0ac7fdbe2e1bc51fbc99ea1f061de1e371719021adfa42951ce31e42034f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a84ddc10db1c37af33f5dbd43d84f94a2aeb96a9708b0d50513ee4214347d36
MD5 c7095cfd3736acde3bc89683ebbc4e64
BLAKE2b-256 250712f015ca149b61c1b5a5c56648cc4caa197af935808380b4441e24278a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71e892a7206deb6a1993e255faecd49c68ee9d2b7f6eb27dbc9661aca626b3f3
MD5 7cc507b36846ff5004e4f9212ca64b0a
BLAKE2b-256 67c93e965dd5bd8127058c9e5b2917bed2759dc061cfdb4ff86ee27947549e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40dd024ec3aa9745f3d8c5d0d59facd718b8bd22d852558fbc0cf9d2bb6deb22
MD5 63c37f97f033611a1e51b1b9b9b3c603
BLAKE2b-256 b2d7715c0294dc3a2174321a64f0d7348223d3c82f1cdd22373e8f88f6c40a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 093cb342ef03a8725ee01afa3dca9f3523737ec458c7ed8b1bc370566200d98c
MD5 21ed6e72fdad158d1e70250ea78a5d12
BLAKE2b-256 202cd4718b4f67facb2b8e934aa599fbf280813faecda40608751b17e6b222e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11cec7e43d12c1ceedcd1ddc5208809be0fae7e79bbb1d4fb978805deb870098
MD5 7dbdc4396240c23fa5759b3b61dda245
BLAKE2b-256 82935283548c8be1fe5369acbadb17150a57dc224ef86f861bed2dfb60d3b3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd489c5c719a225bbd042eb0654e297a4414e50a6879ad2ca21492c3b8403d7e
MD5 d088e1d24b6f9296ec240a5ed43ecefd
BLAKE2b-256 d04aea46c6081ea35fec4dd81b99acc58fa422ac6178523cd89a775eb1e12530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 720916e90bd0f9d96f35692cd95e0f50dad691ee7492aecf7dc0ddb1bad492b6
MD5 16730e1e3d4b48e79454012b66ad713f
BLAKE2b-256 79e5ff8293cdc3c91c0217fe70065d0e57162efb4ea755e213db60f9683d8a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f959606272618eb7e228b85c030cfd8a82ebf86463ab2dab7056ee15aaeea5a
MD5 385e1ef5462847b5b8b7514346f3b8ed
BLAKE2b-256 319e30510b210171e676e4e0c65b39f40517aab48e3455058a277aa8b4904a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cd6d7079fd2659561b091629e0c7178b519c5dfcaf81f1dcfac466b7f2cede8
MD5 da317e778f5f10072f480f10fb61aa3a
BLAKE2b-256 fa22411a169c782118554b8666187eabe0e1e973a297b5b28e5facb6b155f502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cca34df84d337b3e5bef97ae102467f844f88eb81fbbeee468b517187f0eb36f
MD5 538318bb67f7265da75ce1805e6519c0
BLAKE2b-256 e024232e8fbb49b87f6a3fc7e61988913787f7872be62b95693b17776e85a4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca67e34a84babe17f5ee60c9b7e811846e1c07d53a9e78546ecbc912d018f11c
MD5 a7ca96134325b02524a4de6307900da6
BLAKE2b-256 5b6fd9018b5f3597ce1cd17c78f8a234fad66baa81ddadc953cc8b49099eecfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 880d86c1426d1914d37723e7b4db1ffc2dce9fe9c17f0f500526203ea464f5f0
MD5 319c89526e1657c195aabeec8d40bd3a
BLAKE2b-256 0d749c4c4d0baf9d1f388e095bf43cafce4a281d8ed8b08a084d888dc683e5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e6267283175d7b461c2b024df42199be708f0ac97245d976a4677950661fe81
MD5 f17f865b39209fb84aec7e5bf46355d8
BLAKE2b-256 4821c3c13175b2ae1754086efc46d2e8c918d2508e71f0f07355b4c615eb9824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81484f0a0327d8bce04f57a2f89b1d368613a703fff82fcb14ff3452a32b792c
MD5 26140884138a86b7c12570424aae44b1
BLAKE2b-256 a84722412f34ac2514d64da7679c68e88966d2c5cad1cf23cdee5903bed88bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04fc9970f8cf3f41edbb9fa0adf35e35e41be3864812adaaf4fe31fc6a31a6d4
MD5 45f13f359f75fda7a9ff49054b688f25
BLAKE2b-256 20a112ab2583ec92241b250787931adc764736fff75ed29df7bf992f31b48d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 503afc78e4e7beb3c99d032db179309844c25565c2fc43c87535e4c2ab6ead3b
MD5 e8ecf900774d9b139965de99dbb16484
BLAKE2b-256 15eafbd3e49a4301ca6c495e31fc03b81c3d9cee38f8537abd14d313426cfb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8ac40d7a30d6d2843f1087ed271dcf46f407d5de16f9acc5c97d419284bd0c5
MD5 19d0e8c63b06ad58471b0e84c9ac6c83
BLAKE2b-256 7be7b0e0470b1979b5757f377861611ad1f65ddf44c9af5fdf388ef4b9f3d8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ebb676969d1681e355598fee0cc3676c0fae95dab078009d938532379d48662
MD5 572eff8731910cf5873499ee2dcf39e7
BLAKE2b-256 61a20c0d17fcb37c2ea2b40a973cad3383cf2c51fefba4b092c8670792228b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b9dec41d021760a93892af6a3dd5a277ceb82e38ea39416bb7b15b7b0903142
MD5 dede7999735c86a58fffa4e5aaf54b80
BLAKE2b-256 48fa08aadecae5582ac809612fb065e568610ee56347de8ee47a5618048ebc5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0680c08b8aaad822b5ce7c2d0d64ca1a36066aa8845a4d02317ece97afdb8c0d
MD5 b6e3ef38ea85c4f43bda8aabb51d3bca
BLAKE2b-256 99397f3f4386ecb2298210ae0bfa1567dfb27a094202cea4cd20b2089cd56afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db0c182813f8a0f87c49dbf9061ff608ebadadd82a3b558e297bd1a58300e251
MD5 995afcdcbdb03d9a6826c2c52c47e235
BLAKE2b-256 a5b36fc8a044afe6b2232419b9e50e85de504384c5cc2a66d476b87f48d55558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01a18f7f58b2367d354a1ddf2ff78f46328ab43b7eee11109f755d80bb446f44
MD5 251ca927aeb23fccfb0cb97819154c31
BLAKE2b-256 032dcf980b3b8865254623413bd8727370ca988806aab2df9a2a0d097cc1fe68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da90c655287938f0bf46bfe1bef559e51712bbbec32050aca1b7dc32a7e8b78b
MD5 21a789227bf34687385a2930adee4093
BLAKE2b-256 9f6959967eed52765b95fef49308c3b0312cf1e748ea8aeef9e5ad266e72375f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abecbea6021bb99b5929f60ae2c6eb09b3e22699e49292454cfaadfbd69beab9
MD5 93d736be3e0a8dd4f6bd6ae8b52dcdd7
BLAKE2b-256 bec77b5f11cc60b0bf6f7603d8e7d69a7bd123c0da5d6bc58794292bd265f9b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56ca4c0d209d9af0b0c4089bb0bf88bd3b9018d6a7ad00bbf3dc89e71e0c14d5
MD5 44ee92ffe82bce1a42f2a4cdf1a7d2fa
BLAKE2b-256 ec1df96feb93c02863f42b7aba9cb97322a3e268c3df364ae86c40a61fbf3cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b00506f09aad91ce5571701ed58d729e0037ef262f6ebe586e65b2cfd9c9cdb
MD5 994cc7002e92cdebac3011e79fa9435d
BLAKE2b-256 74fa6dd1d75977441bce61b2cb1f6fff27dff35a4d6774e4aacb230675f8bbb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31fceb177cc15fe3aa61dae5dcd56a0669f53e2deaff93dbb8c50e6e99346a81
MD5 4ea4ad064a1623c4a2a52553af808a0e
BLAKE2b-256 db99646709a024c45bfb6999347b2c6560cd24bff4d0c95f063cdb92c87a4864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d28a35f5a64a21819d34230da2533dd70932a87803c40a0b892525f23c4d3b64
MD5 6ffd0ad53da58579230e6a7393e4d654
BLAKE2b-256 ac15aecb0a8de8892f9474d6c34d55c613113321b556d413e75ab20a12950c5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: trackforge-0.1.7-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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 379d1b581b979ce54ecd4581ca34d5fd1a4f2838c804fcae2c2f21441fe50c75
MD5 da8a87f0bc30877444796c21bd5afb23
BLAKE2b-256 32b07f347062deb38cf9bfed2a32c18aaebb140a0e47ca4cab6fcfcfc4f70964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfc0602f225ce48d115c6fc4349749bedfe68e94e7ee114021d2bcc19183008f
MD5 bee56452ea606798ad4d9f43c4820002
BLAKE2b-256 1e597e9b8729077a922a9008f61a758a305bb10a1b9dcc7e77e088f858bd96ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f59c9d4e9e1b924955657f86e25ffd638425590dedb4ec5d47b563f01b65e7d
MD5 f61023f96ecd819b64da7493ed7e7da7
BLAKE2b-256 f652626912b30edcb8512e8eda9b3628402d98a32349d3cc759b0b7a45d9e91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0a1ceccea5b2f229b5419be83f51d065fc5e0c947699821736d9d5d8e37ffc9
MD5 34d4bf1ef83ebdb0fe6b5e8ddb5d8460
BLAKE2b-256 523096b9526c50f7a3b012106e3b5d4e71c31e5e65a1faff74e5823c15270ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8fb8c369e6d9e452a08f825a59b4004323440daff893e933f9c3d160a5ac220
MD5 7195f8b7d356d5e4d86a62277a53a867
BLAKE2b-256 5f1e0304e1ce3c685d70bf04b33128767d6739c375245eb10d1f2f9df0c173e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81d5e3825b524484e1aa46254eb774c23f53d4d08cd5293bc7167ad61447a60d
MD5 526b7e04c855ab853050106730564c97
BLAKE2b-256 bc7c07dc744743a3ab458c830a013c665c63845df8012dfbe5d641ca663a2546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74f8337d8c106ff21f22aa5dc057b625184696023c38f40748819801f81c738c
MD5 9034b8fcf146c687331107c617034a4f
BLAKE2b-256 df9a07a09091d0ae6998d6129f05d270fa3c72048008fb58e1f5b76316bb45ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b94646477aaadfcd99776894b9038aa64fbff7d9f91a396f868aa432cff5812
MD5 7b4419f48a12d170f2c3f78299fd41bf
BLAKE2b-256 96296e096b914a1e0795958d8b663a76c9f2322bc5545cbdb46b7a4ce84ead08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd5d1bf01f902ebd382e1c4d61a8e3155f56f99005dc8b64d28a1c7b5e732642
MD5 2f170afaa9a8a7a8b6cd544a366d625d
BLAKE2b-256 6611e047dad8a85aa2a16d4acfdb18f54ef3e78f11cf509edc298d195fb8177f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 217530a1919e7fab3b2a3900588158537b821445f66b4f67e6166ac59a25762c
MD5 ce8b9341950b273aff5788a512dc7aec
BLAKE2b-256 c4f521713f823368a6d26339b7c15d8636a90e93659cbdb3460e820adcd17eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c556c04d3a96465ce1fa902677a361017b684be342359b8f10d27d6eed53d24
MD5 9bdd15071c7a8fbbd355fbb17f41edcf
BLAKE2b-256 5a4b550153d61237e825a6193a7c737ac767bf578fe7b7f19cc2f93c6d762423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82fd90ac8fb5862a05426442a2f4cf2c3a9dd0d4ee0af0aa23a4d5732a84dfce
MD5 08aecd575ec855852217af6acee00a89
BLAKE2b-256 e1f9dc1b0e43f2101d4eef95790ed18b10fba51dac6b9e2e50c3269d6010cf7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bec937d7eb2ae197742592135c54616a7d3a9b58c3f3a2d8ff24b805bcc7bc4
MD5 d80b646b1fd2d1f9c59c92db889800ac
BLAKE2b-256 39bd5a5ce1827b6a404edee2492985d4a5603e61cc9f520ff1da783ff63a6582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13c5c46dd0e7820d69ed1e9d304a069a77e3279f64866560cda6e025c0b0264c
MD5 3a6ffb0c860db3f6d535a706d6074d46
BLAKE2b-256 d9840704829eddd0a7e7219f2fc312a6b78f9b27903046011cf931101e59859a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3379e8266debab28d2e040ad4572a2670f03339200a14f8f02b7f82c4b975fde
MD5 a15e893376990542e4e25b412a7b0cd8
BLAKE2b-256 4c70059a13dc3d8342789ae9db6a3b6c149dc2b88331389c829c279a26eaa054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5b5fdf53916b03fd8259a43f104d50a68332fb96bc105fd3b85ff47d0ea7f22
MD5 9afb4fff65f40d8083a0b30416b55205
BLAKE2b-256 1c1666f3213f341936812dc926623719efd8b955fd9a011bbb69f2bdd0795253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a744b1f28563dbf02f6b089a770b10d76ce3c8888b0731b2531cfeef864ec2d0
MD5 d3a76dc7b298754699d946fa0ce275da
BLAKE2b-256 b71acf55555bc983906c956dd79ee00d7a1eed0d122d9dc4a8b0a1b3871fd91c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97b00046aa40c550a821175bf350ada09c0f2321a1a423d5eceac98cbb081aa0
MD5 67a952002ee692d4db62f3387641c760
BLAKE2b-256 b0835ecd2de28af2e6d4e5f2b5809e051119cc09b0d1b0433b6bc7b097a1976f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83387687f180e7e1765a90143a3bb9196d51e2fef5a4fdf5aa3d11246a3d2257
MD5 5991af706299834d6a91a0013b02faba
BLAKE2b-256 d4bd2ba7e76728d660a93320f4a451fdd93d0b8b65cdf3dd8be9d0331f8aa0c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a68af344113c67234ba7f8302d10d08a4f919717cc2e9735c0e7daaeed7a068c
MD5 49891c636825414bbd37ceff4f2c210b
BLAKE2b-256 5a3a15d1fffc54b30f00a0cdcfae30316834aca7c18a22f891e6425147581e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de4c5ac06a4ce85901366a03699ee7707d781473bc39d38f392af6328737be16
MD5 c0b792664808a0f1b2fc63f2a5f9cdcc
BLAKE2b-256 1da69e8d1b1b9bb8cb67f9f2e4eb7d82485ba8070e07de5489da6089e674f2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40a7dd8c2fa78af274055114b9351c74725d757c3fe29fe336a6dc58f79a385d
MD5 d822c0593894d96c0f6190c3761d699c
BLAKE2b-256 9e1a9f894563517bb6df652b2153321bd5f85b62994fa020a288ac3aed0918cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bd3df722703ed45ec9d094eb733dd2764814c7bf185e0c84b96ba542976b1d2
MD5 c84de18bb2a1d27bc1177e8ce1f0db05
BLAKE2b-256 39387b27bffec372e7880f82785778fdc6d889e8e443944d8d845041308bc519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ceff951a6bf9b9604cdcb0b04f4dbd8c5560f96e4445d45a26f65154305777f
MD5 e0408c7651c9c1d8f20a0dd7f67888f6
BLAKE2b-256 a53e9df191f5a7c5ff7ebd934f47cf1836413e9a9c2078140693bdd586d4aaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa27a96bda1b3a2a63993f05e43292201b7bb19fd528f03224cb4e95d011a19e
MD5 e751d147a0838fe7a542c9c5efa2a52b
BLAKE2b-256 f604342530d2619f7d09135d33c4ef17ad4372e1280f066f7585ab1a2c52f0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for trackforge-0.1.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da77b40262daea46a815494d3d1cf88cc239d5666da7d6e85a4b9e307a59705b
MD5 ac236a4e26e7c34fff55264fea0de312
BLAKE2b-256 3f3253e53661f16107affb94d8b3d4995f9561586f7a15fa230a83623ad4af2c

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