A unified, high-performance computer vision tracking library.
Project description
Trackforge is a unified, high-performance computer vision tracking library implemented in Rust with Python bindings. It provides real-time multi-object tracking algorithms, optimized for speed and designed as the CPU "glue" between GPU-based object detectors and your tracking pipeline.
Supported Trackers
| Tracker | Type | Appearance (Re-ID) |
|---|---|---|
| ByteTrack | IoU + confidence association | No |
| DeepSORT | IoU + cosine distance | Yes (pluggable) |
| OC-SORT | IoU + velocity direction (OCM) | No |
| SORT | IoU + Kalman filter | No |
Features
- 🚀 Native Rust Core Blazingly fast tracking (< 1ms/frame for ByteTrack) with full memory safety
- 🐍 Python Bindings First-class
pip install trackforgesupport via PyO3 - 🎯 Multi-Algorithm ByteTrack, OC-SORT, DeepSORT, and SORT with a unified API
- 🔌 Pluggable Re-ID DeepSORT's appearance extractor is a trait; plug in any feature model
- 📐 Generic Kalman Filter Configurable position/velocity weighting, gating distance computation
[!IMPORTANT] Under active development. APIs and features are subject to change. MSRV: Rust 1.89.
Installation
Python
pip install trackforge
Rust
Add to your Cargo.toml:
[dependencies]
trackforge = "0.3.0"
To build the Python bindings from source (e.g. via maturin develop), enable the python feature:
[dependencies]
trackforge = { version = "0.3.0", features = ["python"] }
Quick Start
Python - ByteTrack
from trackforge import BYTETRACK
tracker = BYTETRACK(track_thresh=0.5, track_buffer=30, match_thresh=0.8, det_thresh=0.6)
# Format: ([x, y, w, h], confidence, class_id)
detections = [
([100.0, 100.0, 50.0, 100.0], 0.9, 0),
([200.0, 200.0, 60.0, 120.0], 0.85, 0),
]
tracks = tracker.update(detections)
for track_id, tlwh, score, class_id in tracks:
print(f"ID: {track_id}, Box: {tlwh}")
Python - DeepSORT
from trackforge import DEEPSORT
tracker = DEEPSORT(
max_age=30,
n_init=3,
max_iou_distance=0.7,
max_cosine_distance=0.2,
nn_budget=100,
)
detections = [([100.0, 100.0, 50.0, 100.0], 0.9, 0)]
embeddings = [[0.1, 0.2, 0.3, ...]] # appearance feature vectors
tracks = tracker.update(detections, embeddings)
for track_id, tlwh, score, class_id in tracks:
print(f"ID: {track_id}, Box: {tlwh}, Score: {score}")
Python - OC-SORT
from trackforge import OCSORT
tracker = OCSORT(
max_age=30,
min_hits=3,
iou_threshold=0.3,
delta_t=3,
inertia=0.2,
)
detections = [
([100.0, 100.0, 50.0, 100.0], 0.9, 0),
([200.0, 200.0, 60.0, 120.0], 0.85, 0),
]
tracks = tracker.update(detections)
for track_id, tlwh, score, class_id in tracks:
print(f"ID: {track_id}, Box: {tlwh}")
Rust - ByteTrack
use trackforge::trackers::byte_track::ByteTrack;
let mut tracker = ByteTrack::new(0.5, 30, 0.8, 0.6);
// Format: ([x, y, w, h], confidence, class_id)
let detections = vec![
([100.0, 100.0, 50.0, 100.0], 0.9, 0),
([200.0, 200.0, 60.0, 120.0], 0.85, 0),
];
let tracks = tracker.update(detections);
for t in tracks {
println!("ID: {}, Box: {:?}", t.track_id, t.tlwh);
}
Rust - DeepSORT
use trackforge::trackers::deepsort::DeepSort;
// `extractor` implements the AppearanceExtractor trait (plug in any Re-ID model).
let mut tracker = DeepSort::new(extractor, 30, 3, 0.7, 0.2, 100);
let detections = vec![(BoundingBox::new(100.0, 100.0, 50.0, 100.0), 0.9, 0)];
let tracks = tracker.update(&image, detections)?;
for t in tracks {
println!("ID: {}, Box: {:?}", t.track_id, t.to_tlwh());
}
Rust - OC-SORT
use trackforge::trackers::ocsort::OcSort;
let mut tracker = OcSort::new(30, 3, 0.3, 3, 0.2);
let detections = vec![
([100.0, 100.0, 50.0, 100.0], 0.9, 0),
([200.0, 200.0, 60.0, 120.0], 0.85, 0),
];
let tracks = tracker.update(detections);
for t in tracks {
println!("ID: {}, Box: {:?}", t.track_id, t.tlwh);
}
Rust - SORT
use trackforge::trackers::sort::Sort;
let mut tracker = Sort::new(1, 3, 0.3);
let detections = vec![([100.0, 100.0, 50.0, 100.0], 0.9, 0)];
let tracks = tracker.update(detections);
for t in tracks {
println!("ID: {}, Box: {:?}", t.track_id, t.tlwh);
}
Examples
Runnable demos live under examples/, with both a Python and a Rust entry per tracker.
| Tracker | Python | Rust |
|---|---|---|
| ByteTrack | byte_track_demo.py (YOLO11) |
byte_track_demo.rs |
| DeepSORT | deepsort_demo.py (YOLO + ResNet18) |
deepsort_simple.rs, deepsort_ort.rs (ONNX) |
| OC-SORT | ocsort_demo.py |
— |
| SORT | sort_yolo_demo.py (YOLO), sort_rtdetr_demo.py (RT-DETR) |
— |
| All four | tracker_comparison.py side-by-side benchmark |
— |
# Python
python examples/python/byte_track_demo.py
# Rust
cargo run --example byte_track_demo
cargo run --example deepsort_simple
cargo run --example deepsort_ort --features advanced_examples
The Python demos use the usual detector stacks: ultralytics (YOLO), transformers + torch
(RT-DETR), and torch + torchvision (ResNet Re-ID); install what a given demo imports. The
deepsort_ort Rust demo needs the advanced_examples feature (ONNX Runtime + OpenCV).
API Reference
Parameters
Each tracker's parameters and defaults (identical across Python and Rust) are documented on the Parameters page.
Development
Prerequisites
- Rust 1.89+ (MSRV)
- Python 3.8+ and
maturinfor the bindings prekfor git hooks (optional but recommended)
Setup
git clone https://github.com/onuralpszr/trackforge.git
cd trackforge
# Rust core
cargo build
cargo test
# Python bindings (build into the active virtualenv)
maturin develop
Checks
These mirror CI, run them before opening a PR:
cargo fmt --all -- --check # formatting
cargo clippy --all-targets -- -D warnings # lint, warnings are errors
cargo test # unit, integration, and doc tests
cargo llvm-cov --summary-only # coverage (cargo install cargo-llvm-cov)
prek run --all-files # all pre-commit hooks at once
Feature flags
pythonbuilds the PyO3 bindings.advanced_examplesenables the ONNX/OpenCV-backed examples (deepsort_ort), which need ONNX Runtime and OpenCV on the system.
cargo test --features python
cargo run --example deepsort_ort --features advanced_examples
Run a Python example
# After `maturin develop`:
python examples/python/deepsort_demo.py --video your_video.mp4
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
- For major changes, open an issue first to discuss what you would like to change.
- PRs should pass CI:
cargo fmt,cargo clippy -- -D warnings,cargo test. - Use Commitizen for commit messages:
cz commit.
Roadmap
Planned trackers and milestones live on the Roadmap page.
License
Distributed under the MIT License. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trackforge-0.3.0.tar.gz.
File metadata
- Download URL: trackforge-0.3.0.tar.gz
- Upload date:
- Size: 67.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c3fc46402dc087b706a9b1cef099d100cfb63f9fe013203150aa66a2caff8b8
|
|
| MD5 |
b01ccec726916d3fe1d3f93b4544b35b
|
|
| BLAKE2b-256 |
a8ffea53122c36f74783ea70dd2b7e1de6deca66f2eb4139a0845adb4d328d88
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df5dfa0aefb413eaac7a53e3b7e116d4429279562df400d23c49cf46168793cc
|
|
| MD5 |
9b833b8fc0d58a5314af60e03420e4bc
|
|
| BLAKE2b-256 |
47f0bf802d0258313a46b916fee108d8996f59f4d89369e544c73732840b5639
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56d68e7a3f40917d76ce52eb9d5e9c18d542536081fe34c0df6f2ba9945c8b3c
|
|
| MD5 |
c44b21393bac1262f6a5740fe477cc7e
|
|
| BLAKE2b-256 |
2833e25c636b45302bbd1d953a828bcdc22f691db5321f1945e00df6ccccb396
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 350.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8ce6abfaf91e993202e75df5fefae483e7aa6b660b5538166b03ab321bcb1cc
|
|
| MD5 |
d8b75a745aee65a416c3d4712b0a29c4
|
|
| BLAKE2b-256 |
e90a286132a6773c19d534b05932680337ce766eac55a9d7a71f87133e946b8d
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cc3261e0a37572ea02afe9b0d2f6e1b22f757fc1176f512094924c218b15825
|
|
| MD5 |
acd37f3753c1f780d704d778fd45a2b0
|
|
| BLAKE2b-256 |
37d89f475bd7afc57cfae8c5feba68a28c2cde1abab1420593b0e5adf57f2832
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ac11690f86fabc7ee0330377cd4acc41d64a9017a3ee7c6f71ca4712c32a792
|
|
| MD5 |
594b9dd920d4d44862dd2fe6d07eef98
|
|
| BLAKE2b-256 |
44b0c45230205f1bf152908aeba784ee020d01b38d71570e1757b951d4d7ab9f
|
File details
Details for the file trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 336.9 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c285760fb5191a08ee64c20e1aef6c6afb07ba8060929bfaa09e7c8b4c7b5b74
|
|
| MD5 |
79c33bae44c593675a4fa12ad3356d6e
|
|
| BLAKE2b-256 |
f046bc30b4ee271d8ff1c4b817cfb0376eaf2e627fa5e31854c4defb76d38835
|
File details
Details for the file trackforge-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.0 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e5a8f7d432a7e1e9f8654adfc25f5fe70997b8efdf7cbbd9d8f31ba6ee674d6
|
|
| MD5 |
bf16120440d16a880662c2efa6ee66d5
|
|
| BLAKE2b-256 |
5e87801e9a836ccffe94051e4cf18bae07af93603016dc77ec34d0554e79bf50
|
File details
Details for the file trackforge-0.3.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 335.8 kB
- Tags: CPython 3.15, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbdce6d386b24a7526ad325cad3cf744956a88c0669942b35686a6c8681e138b
|
|
| MD5 |
8693df4904682d8b80402d362bacd753
|
|
| BLAKE2b-256 |
9adf1b97dc4e0440f7de1983213722bfd1fab04c378b144e2d990dcd84a8f0b4
|
File details
Details for the file trackforge-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 342.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47be4b79b37e9cf4353651fcf14a85796c5a6d67617b5b5d03eb53856db8968
|
|
| MD5 |
b23796ec6537528a3cead1388ec2f3c7
|
|
| BLAKE2b-256 |
9771d7a21898960ff47a9c9edbb32a4caefc10e84080de440b2a8bb81ff82a51
|
File details
Details for the file trackforge-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 349.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
270668d2b50f7c72a308cb268c2798649ded1d8410f1bc826ddbd43125e8784e
|
|
| MD5 |
603bbaf33f0fae56a2c277d2804ac523
|
|
| BLAKE2b-256 |
fba6707489fd2b298a79d85a6706a3d55d83d61b7cbf014a0ff99cc0234a420f
|
File details
Details for the file trackforge-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 323.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
407665855fb9b59db62096a3b0e2bd5abc564f97c7653c696ac32d25abc2aa81
|
|
| MD5 |
55bc8c5967f8367b59b9d780f0769bf3
|
|
| BLAKE2b-256 |
9ff5938fbc04c5f9728dba3bcc381689520ba77a394ea0f896cd9d1e4630f01c
|
File details
Details for the file trackforge-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 308.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a89e4d90bad71784e07e9b9ace4462c3fceaf3ead5012ca921085fbb343a4a8
|
|
| MD5 |
e3c706adb60407c3b81bbd4b6a8b7f07
|
|
| BLAKE2b-256 |
63a9a6fee955c5111799389f15c85bf04c05af5d1fac7e606a3ec4f16828d2bb
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 199.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91d812ce96037a50c4f1e45f7a14bf0271b5adcc8a159d3e2044317e577d74b4
|
|
| MD5 |
6b0767ec32304b20a02e491407eb78d2
|
|
| BLAKE2b-256 |
394fdd949b868e7d97479496d6574c857ef53cb71766f56413777751e0de20d5
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a2ae828b4718a1dc6231f2dde30db707aa7b0875d35e384d3b140d3154c5eeb
|
|
| MD5 |
7cbd91990c3322c777280838e1d48ae5
|
|
| BLAKE2b-256 |
7e4882dbe07cfcdac4bc3d8ab93040b807f928ba3c7201cd953786f266400d55
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5860cdc8b35e005e67b398202d6f995106f98bb1986c53290fc2bb48b06207e7
|
|
| MD5 |
c4ce67ede75eebdeb372211ee5494fe6
|
|
| BLAKE2b-256 |
b8272d19d600b39c926f49badc8f7327c2f29e2ae497fb6a3a6b4fa31b7e154c
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 349.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55bb93f73216a6c70c424acf07e09593f2881a12dab1a0f120c999bd3098cc05
|
|
| MD5 |
8762e27759aea93ceca3116790bb36bb
|
|
| BLAKE2b-256 |
59ce59da9d5f8dbe65d6562c8a6387fff79c5ef6558af6f3b32d9ae1569d0f58
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69eea14e337cd44699421171617d578c337d3445f44ebf37e187698fbf4ee522
|
|
| MD5 |
b14e9030d61ca89d02b5cc8393366c24
|
|
| BLAKE2b-256 |
6c5be2cf01070c69fce91e4a2b1e141fb6bd4d7e87e562f80ab6ccfad9e1e92f
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
569b6485b47c2d6e960505f17c96aa098f16f21b33d7b6d37f19e211686682e3
|
|
| MD5 |
3cfe1543598ec00b82389e6575d1656c
|
|
| BLAKE2b-256 |
db48ce21554363f65553c1450c3cd3f9fa2488f4fe08ce036d7b2fee2e07b33e
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 335.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cd253f21bbe2f9e8e0db54966c2391b19b2db3ab50d6c2ee4d704481231f40a
|
|
| MD5 |
0458e3234506854c3b0809f351256521
|
|
| BLAKE2b-256 |
da9b8faeff44f1fc9183009b07788bd03646e673a7d15aeac28d5f8c27f7eb56
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 286.2 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecfcfa7e561ce18a8ef8e932c39a758f9710a82daca7c47bb3f060e593c1bb5d
|
|
| MD5 |
cf93d93da4d73734703954595a5e6281
|
|
| BLAKE2b-256 |
762719fa06d8fbe5355edb80848d4fb3a25cf63af736f81269a20d8f8c4d6d8f
|
File details
Details for the file trackforge-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.2 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cd28a4741fb8b51099bff87cf6544eafd8748ff37317d10929578f9d59cbabd
|
|
| MD5 |
6384e36e8872d6fa9d7f8a5b24f3b19f
|
|
| BLAKE2b-256 |
d5b2163edd10aed1b1cc6291c750f8d4d3c0eebbb2462a3dbf02b305c48d7699
|
File details
Details for the file trackforge-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea401db76804f05f0d1c211f3ec3d0fd05137df994830935e2f1064e1c9be784
|
|
| MD5 |
3a226b0fdf5ac967149da2286d0f1fdf
|
|
| BLAKE2b-256 |
f643ddb5fd6d1648bcfbcef2b3b5c53cd77f2ee438a35cfdfcf380a537e33f18
|
File details
Details for the file trackforge-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 349.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41481b5e1bdb143b0bb5a4af47c03911f792afffff64f6837868d8457a9d270f
|
|
| MD5 |
7e87e9f3b6a067f782aa139e710bc5f2
|
|
| BLAKE2b-256 |
97cf779cd4e2e0b19947c87cb2d7c5dce7ff3c6e19064e96b224c6d9c012cf87
|
File details
Details for the file trackforge-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 323.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95f8e75c435a65097b0a6c49a02c8b1a046b2e77400a8e7f4b7beeaa19dffa84
|
|
| MD5 |
1329f961e9599fc56e67f61b3cd1cb63
|
|
| BLAKE2b-256 |
398d9580c67fd642ceedd83d4ab32d3f065f36f3aef74ab1a6efab754be45d1c
|
File details
Details for the file trackforge-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 308.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0670183ae5e10192b797f8d5948ca75537e5c135595c677deb93e254bc38cd75
|
|
| MD5 |
6d35690c169076cf7144c936353e723d
|
|
| BLAKE2b-256 |
cd2280b746b174c44d2c5bcbc0546c5464a10df17bb67486895a40074eb2c853
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 199.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a14cd181073fbd93ca045f65d1f365a2dd6dc7929018c940fd0390ce55b19009
|
|
| MD5 |
c8d74b4d39e10d620b23a34e63b6bd8b
|
|
| BLAKE2b-256 |
e4fb2a0c169f4db8f40073c4ae72f6159f11a12fae9fe5defe297db8354e133b
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67ff58ddb3e4374bf2b596629040f196a9b01e59cba3513d8ecf06659fe91fd2
|
|
| MD5 |
1786b3ded6523035d168f439da878473
|
|
| BLAKE2b-256 |
2ef33fe9261a5c108bff4ce8b63cf4339fa66959a7e21553b54cd8be910199e1
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34775d5055356ce1b798168ba9af113e9a31c3e2b4dda8cdf6a12748810ef92e
|
|
| MD5 |
b8c54b106155371eee9c1c8083fd502a
|
|
| BLAKE2b-256 |
08f0620e0d88ee6725fd5be368ac55b77901b7b2975d2f931ed222eddcea3525
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 350.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e38da8112ca9d1ec49d4ca8a776ccb27607d3e91ff4d9542bd59ac375d5eff1
|
|
| MD5 |
7a359a733b99ba2c3b9af9344694ccbc
|
|
| BLAKE2b-256 |
a90d159c0a7b143bff1df8446b99b6e77f0ce5c94d4b6c42b4865bcccd6f17e1
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12b8f44724a3b9f143df350f38f36582a58ec5c4e49d6d80a97e533f2d1d3ab5
|
|
| MD5 |
a9f91138a7c8a3c0d560500f202695ca
|
|
| BLAKE2b-256 |
f7d1830c7d7216357fe24dc3d7a456cfef430634b63806c80ddad84ceb1b1d88
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fe9b51869ca8a59d79c4bc5cae1ca5e7fa811980b070ec63f08b3d751909707
|
|
| MD5 |
3026215dc06c514775fba08ec93d63cb
|
|
| BLAKE2b-256 |
2ab60406454d3e37d8d5629eeb68ed9f957d6f4f8a605ae485c34c51b67cc761
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 336.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5334d97eec9fb1c3d2cd55182786e4500682e0c363d673a8fbb6adeb09aa0fd3
|
|
| MD5 |
411f0bc711278793641155cda071e125
|
|
| BLAKE2b-256 |
a66872bd66a806325d04e3f8ccdf0775768a8c39060f12712a7c703420278471
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 286.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d8ea1366fe0133d071a2a24b60e025feee834ff35ec26dbbe8c189912e170fe
|
|
| MD5 |
d0b84d9f42032a4e15183b4e53144bc5
|
|
| BLAKE2b-256 |
043da049fe4f9145c184fc7b337e6947ed055f32171863d5e4f93515a8aacaf1
|
File details
Details for the file trackforge-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b64f39285b8e42c71f3d2e8156f20a69d9a76b4e6cbe95d1988df365f4469a9
|
|
| MD5 |
46e948e0bd0ec9ae8bd15fb07dc4f29b
|
|
| BLAKE2b-256 |
4df4f4764f08f0d1e850c8cb33c4bfe790b4a638926d63e47d55fc4a21b1d184
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 199.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ca20313c36b86cdf7e3e65ef5c0eab22caf44aefbedff66eef4125aca344ceb
|
|
| MD5 |
de3e5c58a082da189bb8fdf71e0045a5
|
|
| BLAKE2b-256 |
d333c2609fc304fe400723ab64d3fecdd72ddded4f5c28d8c73affae5159b896
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c413e1fef2a9bff7747153f100b14085239542609f678ffb378767142a4a17a
|
|
| MD5 |
d579521bb560d34e38f681c08193b109
|
|
| BLAKE2b-256 |
b86cb4ba603235dc4ebdfdbcfff18f90048652118d2c1eecabc3bfd81c090106
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc506d89cb2c005d1b2a4a31c1a9756c90f2a1884c1654a321fd94c107227448
|
|
| MD5 |
d74da7a4bc1d1178a11d729b37d8260b
|
|
| BLAKE2b-256 |
c5e0856d6bcc131f3ef12ce59d0fa353600ef6ff2f695028898bf4a0fbb5d7b6
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 349.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e603b986ba4b654dbb57a1940617a3e08e985d3616ea1d82a1114ce2f1d849d
|
|
| MD5 |
41694a80e638ae20f043e757dfe3bab3
|
|
| BLAKE2b-256 |
023de4557951394fc96a925abf19139be5f4edde4c0fb95e6ff394997aaf1a52
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b71f81e68ebc2fe612e2acbdb18a83f791e6f4a6d7f3a724c813c08a9a99e6e1
|
|
| MD5 |
796cf63bb92f57ac53472c109ddbbce8
|
|
| BLAKE2b-256 |
3bb775a7891fb0f26970f4f0e0565cc93ef03cd48131fe1af8d9e0d9ccea2b6f
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d07296b65c6fc9d30caab076be64d0a5b303556a9771ca54ceac96f7928675
|
|
| MD5 |
655fbc1a01424dc26c33a34b16164fff
|
|
| BLAKE2b-256 |
c55143499a5711f25e8d7b36ca6aaa1634bfd0cd6614ba755096d351f18e844e
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 336.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3bb5cd9eea92ccd2adf353158a42fa5a9f6f2811145cb02cff68c7eb524d1e
|
|
| MD5 |
d6dbcbb9423ab67981080391536ac63f
|
|
| BLAKE2b-256 |
128a6b3d01e66d4691e9088c162ecdb531a66536381d9c5ee18f8ce92b9befc7
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 286.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
529828ad316ef509f1d8d5934175b17e7f008c3927adc17e8ef72327b01f6b30
|
|
| MD5 |
cd4fffcf6cf4b132413591f15196dc64
|
|
| BLAKE2b-256 |
5127881585a8adbad3ce81184df4283d0782a5175f6ba2b1abbe8082795f9347
|
File details
Details for the file trackforge-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6c769e702e45276a1289df6e0e6a6d958473102d5ea911e4179f17125755cd5
|
|
| MD5 |
5e0f8a48e5335b23f23938cd9861b2ea
|
|
| BLAKE2b-256 |
305ed7c8225a060d5ca4430fed607993acd64aa0da247af5bf1507db8e0c5c0b
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 200.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57bf43062c6ec7e89e324817a5c3af171207336d2e8539919917dedf8d509df4
|
|
| MD5 |
10e8dfe025128da4d26e9986bbdaa34a
|
|
| BLAKE2b-256 |
905ba58b87bfa4437f306a29e09befe4437ac6547a1b9cfc9251600112ca12a9
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 311.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8058d7c2b0966c9ad73ea6c5e69e5f1d6728aace0475e85f0de026cd8a3ba13e
|
|
| MD5 |
bd69c4cc7d1812e55cae01ecc2a8a323
|
|
| BLAKE2b-256 |
270d862045624ec947292d7ff6ead1861b10c689e632ea6b5dff3006798a1dd1
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efae8c04296a71832316e63408c341247f89075081bd11cdadb13b7875f1d11e
|
|
| MD5 |
81ffd06578091fed1acf1c727b8c971e
|
|
| BLAKE2b-256 |
d50db99d2569ffe226771c40978fd53d3e223f840347339e4f8e1969177332ff
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 350.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f6b5cd6c6b69a9daab16e6715624837edd78ef55f5a1e6200e830963d75cb66
|
|
| MD5 |
2d6a656236fb2a7c2c3563d3b5ab9e53
|
|
| BLAKE2b-256 |
7a475a290323ddc3b1fa25612ba132c1289c63b7ba0e9457246a5bfac7218428
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d987211ace27526d2b9567eb87d45285b73957071187fdb2bc7027e49e07dc01
|
|
| MD5 |
9b8e6638bb7845232e2c7fe1b1cd0446
|
|
| BLAKE2b-256 |
cea92dfb7e1118ce2a1f4529e2ceb3f3cfdd9f4fdf052fce0f24717ddd4ad699
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ce5078f634fd48096c9e540793ed7c6d5c0a7254f213624a019c5da1e43550a
|
|
| MD5 |
3f64d633d9d857f04f9921ef1977204f
|
|
| BLAKE2b-256 |
c0dd7b64376006ae40131248caa46fd2635edd5cfd129ba4fcf82b1313dcad68
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 336.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
139a8b4f897f39dd7ef5940eb41bfa648b7f0ea24504dc0d2541592ee29b0cff
|
|
| MD5 |
ff42e838708249a2dcc859896cf6add9
|
|
| BLAKE2b-256 |
bb151deb488bcf0cc90462fae8123450dc10881d1a7d068b9369cf680a012113
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 286.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38344077e193b7befd4f1a536e9029dd9e81c7f95e5580bd009a1830eab2587c
|
|
| MD5 |
48587b9cee73a4e55f4b3d9e2d851fe5
|
|
| BLAKE2b-256 |
cfadaab98423875c601deefb279c09fbccf41f69174985cf2b4225689a0742e3
|
File details
Details for the file trackforge-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 300.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97d4f967c3689713f53e3e3a3656e73596996fcb993dc04d3e799eb38c9e9323
|
|
| MD5 |
56f6bc2af891b9c51a85c30484e93543
|
|
| BLAKE2b-256 |
c52b43211dcb8c36e6f324ce3aac4e4df4a6f0edd5f194042b69dd146d48f542
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 200.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff7ee312bd1fe9947244468a535b6b7c701c43918886f1c4dbb8ee4267738593
|
|
| MD5 |
50d25ae8ffc4f908268c474133ffe481
|
|
| BLAKE2b-256 |
0da50d9da940b47af0d963e59dfcb1b7b318730ff2a9be13896d4887bd9acaba
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 192.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddf36aa69d21d4cb690bc112c604998caaa674030021720b4d2bb1897081f15f
|
|
| MD5 |
89c87e78cf91dcc9c9f7ec9b0aff6529
|
|
| BLAKE2b-256 |
29fa7f44f3ec3345e1a6fb33dab30ebeeb1bffc1df410ef3832414ddb08c1d15
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 312.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e909d487eeb42c7e187562d0a4f94808881fd3ed6ba142497ef18029076fd6ae
|
|
| MD5 |
8011a2e469f021b41b405d4f8b257c52
|
|
| BLAKE2b-256 |
200e208813d4f446d4811d6b65c3c10a3f66d87859083aaba70af7921ac965e4
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 343.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8280bf8b4c5b87ecbeb4681b684d727583fbb065a82773a3b0d346253fa33a2b
|
|
| MD5 |
e0ba95c6c970b44e289a5060362ead2f
|
|
| BLAKE2b-256 |
5c70e13bf5f354ce59a8cca4ed4d100a532dc5de59ef8f1081a64f6baab7bc01
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 350.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d801e8b3dbfb23639ca4dc7e15d72dafc079cc88b81962aa742df86612979e9
|
|
| MD5 |
ee7e17ba8be8155d398c8b721da2cb25
|
|
| BLAKE2b-256 |
6f9204d400cf72028dd6f75c3e02ddc0c288a216ae1b0a78b3de03a9ce0a7747
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 324.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c92b1ff22f7456fd7db5b905346aea5d908e02ce3b3c78db17a0f7a77acd02f0
|
|
| MD5 |
40d0299aee36ddc0ea4ee2ed80a2c74c
|
|
| BLAKE2b-256 |
9985b047c787da345ff9921f660a4ab80e21b94ac72ea222fd6d1f834b87ddc5
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 309.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faceb9bedbd104d1d40d2a4ed28a3609b7297b4a5ea115624e89c3f434a771df
|
|
| MD5 |
09f375364265bd25db1122f34125a72a
|
|
| BLAKE2b-256 |
ca364ee84b8493b793472b2bce63d9cd827ed769767cab1ab8facb246a93093f
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 336.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7487779cab284b4315caee99c6f9c1f0e959b04fd4bf3d78639cb9a2e5aece7
|
|
| MD5 |
d6afbf275ab1fb4fc8ef43e4737314df
|
|
| BLAKE2b-256 |
4a1575a0d584a884cd93ed5588498d41c38addcaced9785196acd169f8dedad7
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 286.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64e7b67f5713e32333ae1f9ec26dd7065a453e77a40d9efbbe17a27b8df3b3ff
|
|
| MD5 |
7727320408f81a434952983ed563bd8c
|
|
| BLAKE2b-256 |
627b739d3341e2eaadbfb68d0e073e29b976bc0bcc70bfac094d08d9708ccc60
|
File details
Details for the file trackforge-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 301.1 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51a36245398cdb2b2228e47880c7537977c4bf69a2c3cfa5e7bd391125351840
|
|
| MD5 |
96e269197625261bd66b8a88d4ad6413
|
|
| BLAKE2b-256 |
527b05a1464c41e10da163b12314be0d4a2b8ea4d91d674cf812f83fcc90275c
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 314.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f31b1ad96f9b4dff5e66b3add0396410536b26d1885576cc50b9b19eb20647b
|
|
| MD5 |
8a2efb75a3ed507e48fc5c2256512289
|
|
| BLAKE2b-256 |
18fac023e03c713e40ba793a21d4a496e2dee8690a5a14aecf8fc3a90d2bd0a1
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 346.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b1786fa8e7874946c43586e432ebba16309f6b3a12904f3aa04b8ff9113a436
|
|
| MD5 |
2a38548b56d99adde54aad3989ae06d8
|
|
| BLAKE2b-256 |
87557bbed6d2bce5cb9450456a592044a9250f1de3d34c5b8aff9b054d03f880
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 353.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81c3f9ff82ffd9b7866544734eab744c836b15c96efe6fa4c7c17dfa6c821f5a
|
|
| MD5 |
60814b5b426a00c1eea4995efd1b902c
|
|
| BLAKE2b-256 |
41bb8faa77addc0b2b2b412c1d30a988eeaaa429e2c5ed0343ce2ad5c94d7a08
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 326.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
030ffc762f4c28d8c3c1cce2794d2756abb22aad1b0fafad23d1c6b081e6b929
|
|
| MD5 |
1dbf0ac11ff3001c81a8689d0752e71c
|
|
| BLAKE2b-256 |
0d2612a1ce6b90db01ea2fe76ba3073cff42610ef962413389c08ad813257726
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 311.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23549ff780dd20dd36931aa2b5b436deea1f28271fc44b3ba67943b0a3081889
|
|
| MD5 |
43f4c9458bf5c11bda9647b26111a683
|
|
| BLAKE2b-256 |
51a572aa3b6f224dea7417179748ba65e08b215daa414d1fee9f1a767ba47d9f
|
File details
Details for the file trackforge-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 339.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d34e7b9c16b9bfc0f31a49d3d19ef1659a0ab45faf1714caab1b670cd9dfed89
|
|
| MD5 |
5f734f06dce9ee624d97350694c7c10d
|
|
| BLAKE2b-256 |
d5402ad0341be1205841c4b660b4385277d3f9def17a618fd267bdc7e7e13cb7
|
File details
Details for the file trackforge-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 346.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a8148d8491969e950db1629798b5312addf67e56b044abf7a66c0bd0b891dea
|
|
| MD5 |
51abc999d40126811a7a1e2f09a35d6d
|
|
| BLAKE2b-256 |
1d45b846cb17d6a263a727193aa4285cd80a839263fc789e3177e406a9b818d4
|
File details
Details for the file trackforge-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 353.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1952261050fa5de43372c0c9233b305282c2ab3ee905dae42957a28c7e00fcd7
|
|
| MD5 |
1285cb1a6f7b355853b115f167f69c39
|
|
| BLAKE2b-256 |
697caf19f3620bdc1edba12024ed81a5029f39f6b9f2390b3eba65c634859969
|
File details
Details for the file trackforge-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 326.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86c91f67214a479fdbf1a69999f6bfa435be5541e4a1d4253815eac6fdb89bcd
|
|
| MD5 |
6a70cd60d5e5b7e1581ca6d15b66d894
|
|
| BLAKE2b-256 |
ae01db0146e389e3d7cb206f606edf2f2b22b0dc46eabd8598d4c88918a56c85
|
File details
Details for the file trackforge-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 312.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0289c623d3489bcdc28fe93440271b1640377e4b8d244bd445c4154eaf623559
|
|
| MD5 |
c82503c9370a0c9e852a38de7bb5903a
|
|
| BLAKE2b-256 |
683411603c1ccbe4e4429ad3e0ec775195f996b9af842c1adbb24d9747701dc3
|
File details
Details for the file trackforge-0.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 346.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a2d40ffc6b0352899c5cf24c9f17c86fac10884ba7569c7d1017674869bdb4b
|
|
| MD5 |
56ed2295cc2f08f2972f9c24c8243fdf
|
|
| BLAKE2b-256 |
c754bca1e162d48d18e2efd0174aa1a8603daeda6da31c945d24b59e33df2de7
|
File details
Details for the file trackforge-0.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 353.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df479a1817840a6efa3a4dc89f9a1b398bbf59e4da30c170359df598493d3f52
|
|
| MD5 |
da1a160e9bca6c5ff5d67e30494825bf
|
|
| BLAKE2b-256 |
33499d3b9329c556cd8d98e732d4a19135294ab40221ea6032377e6b69b62aeb
|
File details
Details for the file trackforge-0.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 326.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91b9e4f202b7b32782510520ac8745f62524efb1fbaf900a0189794ae3ca3c96
|
|
| MD5 |
fb9d21b5153fce6f7b1169ccfbb0b97f
|
|
| BLAKE2b-256 |
1cf39ea08d0eab5f1c6db1369abc189bf4a3548fe274ddd55e234f4abe1c6fca
|
File details
Details for the file trackforge-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 312.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d06b02cc19991ff2323b62766a3fa9fae838b077154f771b703ca8e849a7125
|
|
| MD5 |
3badd4a68ae3892615ced0769c422971
|
|
| BLAKE2b-256 |
a3c26cdd4f3d001851235720d606da1c45d93328bc54d29aa2f38527a6e84565
|