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) | Language | Status |
|---|---|---|---|---|
| ByteTrack | IoU + confidence association | No | Python & Rust | ✅ Implemented |
| DeepSORT | IoU + cosine distance | Yes (pluggable) | Python & Rust | ✅ Implemented |
| OC-SORT | IoU + velocity direction (OCM) | No | Python & Rust | ✅ Implemented |
| SORT | IoU + Kalman filter | No | Python & Rust | ✅ Implemented |
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
Architecture
┌──────────────────┐ bboxes ┌──────────────────┐ tracks ┌──────────────────┐
│ GPU Detectors │ ──────────▶ │ Trackforge │ ──────────▶ │ Tracks │
│ YOLO / RT-DETR / │ │ (CPU, no GPU │ │ ID + bbox + │
│ custom │ │ round-trip) │ │ class │
└──────────────────┘ └──────────────────┘ └──────────────────┘
Trackforge is intentionally CPU-bound. It receives bounding boxes from GPU detectors and handles association on the CPU no costly device transfers needed. Algorithms like ByteTrack run in under 1ms per frame.
[!IMPORTANT] Under active development. APIs and features are subject to change. MSRV: Rust 1.88.
Installation
Python
pip install trackforge
Rust
Add to your Cargo.toml:
[dependencies]
trackforge = "0.1.9"
To build the Python bindings from source (e.g. via maturin develop), enable the python feature:
[dependencies]
trackforge = { version = "0.1.9", 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;
fn main() -> anyhow::Result<()> {
let mut tracker = ByteTrack::new(0.5, 30, 0.8, 0.6);
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);
}
Ok(())
}
Examples
Complete working examples are included in the repository:
Python Examples
| Example | Description | Requirements |
|---|---|---|
| ByteTrack + YOLO | ByteTrack with Ultralytics YOLO11 on video | ultralytics, opencv-python |
| DeepSORT + YOLO | DeepSORT with YOLO + ResNet18 embeddings | ultralytics, torch, torchvision |
| SORT + RT-DETR | SORT with Hugging Face RT-DETR | transformers, torch |
| SORT + YOLO | SORT with Ultralytics YOLO | ultralytics, opencv-python |
| Tracker Comparison | side-by-side tracker benchmark | varies |
Run a Python example:
python examples/python/byte_track_demo.py
Rust Examples
| Example | Description | Feature Flag |
|---|---|---|
| ByteTrack Demo | Basic ByteTrack with simulated detections | none |
| DeepSORT (simple) | DeepSORT with a mock appearance extractor | none |
| DeepSORT + ONNX | DeepSORT with RT-DETR + ONNX Re-ID | advanced_examples |
Run a Rust example:
cargo run --example byte_track_demo
cargo run --example deepsort_simple
cargo run --example deepsort_ort --features advanced_examples
API Reference
- Python API Full PyO3 class reference
- Rust API Generated rustdoc
Parameters
ByteTrack
| Parameter | Type | Default | Description |
|---|---|---|---|
track_thresh |
float | 0.5 | High confidence detection threshold |
track_buffer |
int | 30 | Frames to keep lost tracks alive |
match_thresh |
float | 0.8 | IoU threshold for matching |
det_thresh |
float | 0.6 | Minimum detection confidence for initialization |
DeepSORT
| Parameter | Type | Default | Description |
|---|---|---|---|
max_age |
int | 70 | Max frames to keep a track without detection |
n_init |
int | 3 | Consecutive detections needed to confirm a track |
max_iou_distance |
float | 0.7 | Max IoU distance for association |
max_cosine_distance |
float | 0.2 | Max cosine distance for Re-ID matching |
nn_budget |
int | 100 | Max appearance feature library size per track |
OC-SORT
| Parameter | Type | Default | Description |
|---|---|---|---|
max_age |
int | 30 | Max frames to keep a lost track alive before deletion |
min_hits |
int | 3 | Consecutive matched frames required to confirm a track |
iou_threshold |
float | 0.3 | IoU threshold for matching |
delta_t |
int | 3 | Observation window (frames) for velocity computation |
inertia |
float | 0.2 | Weight for the direction-consistency cost bonus (OCM) |
SORT
| Parameter | Type | Default | Description |
|---|---|---|---|
max_age |
int | 1 | Max frames to keep a track without detection |
min_hits |
int | 3 | Minimum hits before a track is confirmed |
iou_threshold |
float | 0.3 | IoU threshold for matching |
Development
Prerequisites
- Rust 1.88+ (MSRV)
- Python 3.8+
maturinfor Python bindings
Build
# Build Python bindings in development mode
maturin develop
# Run Rust tests
cargo test
# Format code
cargo fmt
Run Python Examples
# 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
Completed
- SORT
- ByteTrack
- OC-SORT
- DeepSORT
- Python bindings & PyPI package
- Rust & Python examples
Planned
- Norfair Lightweight distance-based tracking
- StrongSORT Improved DeepSORT with stronger Re-ID
- StrongSORT++ With camera motion compensation
- BoT-SORT ByteTrack + Re-ID + camera motion compensation
- DeepOCSORT (OC-SORT + appearance)
- Joint detection & tracking (FairMOT, CenterTrack)
- Transformer-based trackers (TrackFormer, MOTR)
- TrackTrack: Focusing on Tracks for Online Multi-Object Tracking
License
Distributed under the MIT License. See LICENSE for details.
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
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.2.0.tar.gz.
File metadata
- Download URL: trackforge-0.2.0.tar.gz
- Upload date:
- Size: 68.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c718af961b80c1fa5cee4d281a2a7f248a479c65e1098918547237fd94f888
|
|
| MD5 |
27c9c8766f678bd13615ea9ade831a43
|
|
| BLAKE2b-256 |
019b3184b01716152bd94d400091882e48bf0042f97882e2d6aeaaabb6045783
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 320.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
354a0d6ee382c5bb96599489b21df55fc6bf1402c3def77556b3e1655633f193
|
|
| MD5 |
dffea7cb75ef08af73ef9817bbb7810b
|
|
| BLAKE2b-256 |
78c7a1f1bd24ad466175b0297274f96dcedd788cf5f8890c1b6f89e626e33b40
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 357.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a80d1e0e3fb8c800be40c0afe42dc3e2c37b90e08d4a4bba1c8db9ab7dd99708
|
|
| MD5 |
930797de878d3ef9c10fd66d102d18fb
|
|
| BLAKE2b-256 |
08b44c9cb25e44859b5ce4116f56e1a661346a66b99528cf2590cfa2a154594f
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 360.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6ef1162a12faae3502e88dac40fa476802bb4879b31be5e6740450a1d0d85bf
|
|
| MD5 |
fa3789af7f4ca8406b75371f629293f4
|
|
| BLAKE2b-256 |
fedcc51e0d69003779d47e408eccae4b489e4e5928eed1776ddab19767201371
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
300130649b6645fed7328e34c7176b61e0fddf6372a59357ef57469971fec9fd
|
|
| MD5 |
d4f2120de4d3da6d511681d886603f92
|
|
| BLAKE2b-256 |
c07bc8b049f558ecd14402879b0f0a7b29def7ad0b65e254f73631420c864a2f
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 317.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81d5f379d0d951e494964ada4f026bc6173812fdf05cf6cefd8149aa0eb83018
|
|
| MD5 |
823b442a469a32abd3d0afb3933d8afa
|
|
| BLAKE2b-256 |
365870b415e2df0e725fd1301414af31c4e09209402b8132c9c7fae7a8b80be6
|
File details
Details for the file trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 344.4 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8165892bdc07f7b4d11ad93e3824154d915a982f735b6cc8e62ec02beae283e
|
|
| MD5 |
ef3a2a8519c72feb696fd4c6ac5167be
|
|
| BLAKE2b-256 |
fabe09b736d75ef8c141e4c0a7359290f680adf1395039ccf2b4e7e588f2a547
|
File details
Details for the file trackforge-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 357.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f08725c01c8aa8265616ff9295b4f05f10330c53b99ef89a557e598c45ff6e5a
|
|
| MD5 |
378cecbcb47b30a67a0b34a0f70bd866
|
|
| BLAKE2b-256 |
5d42bfa8a44adc92e85a31ecb1a91dd0f424791b125ad3a2e0608dc333ea7262
|
File details
Details for the file trackforge-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 359.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1008897320e14b76fb088dd82416575b39e18ac068332db32d48c847c8bd55c2
|
|
| MD5 |
8c7800cb8b3ceb349d274e6bd4569a3a
|
|
| BLAKE2b-256 |
b2b62fd39ee716a0eca41e9846b985205f39ff517fe27e9f4ed8a12154186660
|
File details
Details for the file trackforge-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 329.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
789f346a32db932cc20aa584dfe2aff45e21cf46d8ef4fa249d3036eb09f3c84
|
|
| MD5 |
3470a96901b93501db58dbf44f84f2d8
|
|
| BLAKE2b-256 |
f90fae01fad7b0d5cfa32a18e86d5969d295c28a55eea02dd97713269ca867df
|
File details
Details for the file trackforge-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 315.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a040ed64b671a529ffba7d6b4a0c27148500a4b496ce95e26f925c243ccca1
|
|
| MD5 |
2baa25ea04a86e433140760406825634
|
|
| BLAKE2b-256 |
9f6796085570987ee1c457631fb0b599c3b225493b322414a6f6e6caaed687a2
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 207.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2dab74b8e6f52082b465eaebe4474697373ddc53d43750375be64273822f2b
|
|
| MD5 |
cf6246593e4e16f7c711594e1b55ce06
|
|
| BLAKE2b-256 |
4d187bbef30784c8c8e26b4d0449a96d52b9070c134928188fa074e8477976dc
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 319.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76099dd88e890f005377ef9cdda434f3a4b50eb6270aade1db8f6bb069d64753
|
|
| MD5 |
e18b0c3d54e43e0302c823dcd827be74
|
|
| BLAKE2b-256 |
53e3c6b8d5768249fb49057abd75e9edf51d31374988e01d0544a9b08a835c7c
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 358.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b62a817ec2b40dc4ba59d30f8b5b6b485e1d314e36f87cdb6f23c54a8160455
|
|
| MD5 |
58b513681211fffa213e80121fc1ad32
|
|
| BLAKE2b-256 |
51db03764a8d3c797eacec86ef01cecb91eb8caa32d6754ed00ed7df0ff88051
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 359.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c16c43b87e9f5e8fbfc9e2b2e07f664900ca1cdf4da243a10d8eb2950fdb78d
|
|
| MD5 |
6aa657469807a3dc4da071345662b1c8
|
|
| BLAKE2b-256 |
5e6794bc1b431ced9683d336eda1f12861c89e12e38047464acbd319774fdebd
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa814408592c275cdf4e5d007d9137d700073f5170828dbcb2f33285fcc624c3
|
|
| MD5 |
febaf353b5a64d333e38f1aa73bdc609
|
|
| BLAKE2b-256 |
67f982fa995e7b7607c99ae2757f5ce03d3cd657fa81541ab1da8843e77ef649
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb5fbc6f17192b6ec905fe5c286044eeacbd08354d985277d2278ba8ea1a4c30
|
|
| MD5 |
a6f242559676f3ad8688138417a8f985
|
|
| BLAKE2b-256 |
a8c84f8dd3345e73a8e48d4b1f1fbfd3454338d09e607e587c6bd5ddfb1da23c
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 343.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b38bea8b88f5b081f25a81ef5711f72067f3013f4b2adf839737747e84521842
|
|
| MD5 |
437169af5b97e964e12df1a815afb399
|
|
| BLAKE2b-256 |
4e2a171f0c32f3e9370a6c6d5cb81b4d14997118893dcf63b71c850a4c06f81c
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.9 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
496a8b4f0fb7091ace599e6633418e51961b64dadf40a3e15d741adedf47501d
|
|
| MD5 |
58ee8f8f42b9c474208d04bfe6a5d3b6
|
|
| BLAKE2b-256 |
160aba7121b330df80bf14c0086a43798fa494d76669d5c63b309f1af58b337d
|
File details
Details for the file trackforge-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 307.5 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc68e67855f2329a9eee64044b6844479a6126b3ff3c95c41d54e408f192173d
|
|
| MD5 |
e82f8ae850f3d62c9909b4b0361690f7
|
|
| BLAKE2b-256 |
740d9408de339aba9d10f778fe7ab04cf2669a8318bd6816657b7e757efee2ff
|
File details
Details for the file trackforge-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 357.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33489a3f29933738ace5128a9ac91ef05814b4899765278ee88df2243a57bca9
|
|
| MD5 |
7e15559d5b08eb4b9d2f307a2c20829f
|
|
| BLAKE2b-256 |
3e8804aea84984957b72ff3e89d3916115f97dbdfe8735ff29eb78c770491528
|
File details
Details for the file trackforge-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 359.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b51d9c52f41fab6e876a263e6d69db1fac6c98c306c5655da721c5ccbf673af9
|
|
| MD5 |
92ddf044950d86b1f631eea08f168d1a
|
|
| BLAKE2b-256 |
faeb1b6db11754a5187dc076b0d2b67003841ac97cbe1544ce7d3f4ec4651b10
|
File details
Details for the file trackforge-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 329.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e43881188c920902fc59f9806e697cbd52e1bd142d4c35d8bc5d02f9bd8b2d66
|
|
| MD5 |
70419878e4c53d91f3118d548ece53ed
|
|
| BLAKE2b-256 |
2d5f20fb4faef1477707ecda5a317f1d5aac692fdd2f99207309d78313dd2a17
|
File details
Details for the file trackforge-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaab86919c8b304691b71e62f78f10a09974c911dec8a482b1bdbb6aa3041b40
|
|
| MD5 |
2643e523519be37aac77af61165bf2e3
|
|
| BLAKE2b-256 |
3ed7884d481667418f203907f6e7b4d12d9d19b874953a98a366c41c887772f4
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 207.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07cdbe0dd0e1163b8eb5e284753723a8379ce9f4c661dbe54d97154dc1715af0
|
|
| MD5 |
476d5f218fda45d13ccc6e24f19fc0ca
|
|
| BLAKE2b-256 |
c280d0ec69e85bfe06016f3ae58d9bfae6c12e0302fe7ed8e1887de63abeca32
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 320.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebad35252af9ef64caee92460359d47dc1c391047ab264c08e4159976271470e
|
|
| MD5 |
217e26496ef9734ebddae0d30080cb34
|
|
| BLAKE2b-256 |
8899ae5e7e4f32c29271a148a3ccc9a78e0f7d63f1f7c982d09c1c1fff883b8c
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 358.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cf29a4d7042f0b34e28e921c6d953db9f17bb23a1b8c8b1af41b751e8d90b17
|
|
| MD5 |
f5a17db4ce6716ceb37a131db0c21b49
|
|
| BLAKE2b-256 |
05572ffcede904a7ab2d86f990415fabac1d6b3852687a6e4bb14c7bf519661c
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 359.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5310950159e45d33da35447c8999f220fd5f5be7ae4e06857ed10e4cb1543ce
|
|
| MD5 |
08369e3cede42962162dd3c1710e3ee1
|
|
| BLAKE2b-256 |
e163a21e42a91a848241509206c2faaf724468fb0cb74eb587900e8ff1850e41
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab02a6b5b4c9e07bef8cc5dc1f157e785cd7d7ec24ff2af70117a8102ce82519
|
|
| MD5 |
f5c7fa2d2e3fec810a68d29b92962c77
|
|
| BLAKE2b-256 |
6699243cafe85be72cf8e9c664c8edac9171453d8cbcc8c69651056f9239e37b
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea735f9af97d930f67ec0ddd2dfcc3c83afb120c32c126c586e5bcddc7843e03
|
|
| MD5 |
4ba43029208c977fe67e2d33d6b5b98c
|
|
| BLAKE2b-256 |
46a350301eab44f527b1be6ecd228603f3f5cb4b19326f5049e0cca50de5a524
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 343.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a9724308784a231735541f737dc05b5e4caf9b9a25ad1c255024aea06fa6759
|
|
| MD5 |
2911754f4eb3ef7f58a310f0cbd7d58b
|
|
| BLAKE2b-256 |
621fafcdb9d459a1eac1e5016c8a08502c3758441d7cb24685cc7290ee14372d
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 294.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4906a78fe151b1493943401cc279319e17e9070e8f3cfc9e6e70470fe971fd16
|
|
| MD5 |
9c5359996dc77ecddfad4f93c83c0970
|
|
| BLAKE2b-256 |
2210ec7562834fd6c11291ec94a1e20ec4354d63a09d1fca16a6ba239fa0d818
|
File details
Details for the file trackforge-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 307.7 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c5e419bd42d83c11b3af5a42d6b802cf6167e515e90f5ac79bdffc41d19237
|
|
| MD5 |
0f9df4091457191fc95d7afa74187942
|
|
| BLAKE2b-256 |
9b922b3b147628dbe8af52011aad7698ce937511a8952ac4eedf3662fda8d02a
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 207.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
353f1c7626e7438957d77d855684be66b78f50480736317b30818b5592cb667d
|
|
| MD5 |
7c7aa1acdf662eb99ca17a25796fa408
|
|
| BLAKE2b-256 |
db63d43ccb2299cd508afef16d831c9294789d33380661209faa47d28ac45b32
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 319.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
978bd5f31c8a82bc7223b23aab5b67eb1a1553861801ef30d955815af9dc705d
|
|
| MD5 |
93c6d91331ffc9a50001a80d5005e864
|
|
| BLAKE2b-256 |
cfe184233f90e118529e69c16e45917a3ce8b61b99a169e82c5a138db271d5c4
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 358.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69d106606d13920d7635a4798d07274f972c9d8ad0babf0b5e39c9aeae4dbdd7
|
|
| MD5 |
d8173160a5216f35a35d8bd80311790a
|
|
| BLAKE2b-256 |
97fba9eabea5fca815d6233870f57aa8a707cc9a9ec182ba05bab56f965e060c
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 359.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba1f5604e6e0b7d3b7b4eb12dde8909c0982b77080dec49402b0b6a0a1e81243
|
|
| MD5 |
bc9cbc8d35157d2d9a7796c540d92a8d
|
|
| BLAKE2b-256 |
262f5b8707b4d01db6de737bed9f03d889efef88b711a043dd9d730be3fb8bc3
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c395e046777c6bdc5fbd9afa812ee2ae49139c05afbd7892df6b9778e8b286e
|
|
| MD5 |
06aa9c7ae7f011d207431f58f8f1f151
|
|
| BLAKE2b-256 |
afc72709d3ddf228fda2ad1415f619b8bfe92fef1782cd847ef63d12d3ae1f90
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c50bb5c968b29b66b38847387b9330174a221d42843812c774ba6e6b888a757
|
|
| MD5 |
9c1509dddb476482547c4088bb4698a7
|
|
| BLAKE2b-256 |
b104607af49e385ed022ea003f2cf0ef025913d19fa504db87cba1538703623e
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 343.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
924ae8214aee3d1d5610e6cfecaa8c63e81db91a55f2f92a331cdfa4e7a2f8e4
|
|
| MD5 |
9e6dd8edce03aa3582a31c1c14382d3f
|
|
| BLAKE2b-256 |
32b737383126c64d92c4a58881cfe3accc6f44bb364774218f02b923d6d256d1
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 294.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
844f311f98ca0e19d17340675fa84d40e504f738ee49761d61110b4f06b91e92
|
|
| MD5 |
8a0a23c14be1678f7fdde5e0d898956b
|
|
| BLAKE2b-256 |
12eed7e36639c554dab343b290e796df37556b341ba7b9bc0485460f0164b862
|
File details
Details for the file trackforge-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 307.5 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d0237491dfb8c74950cb11d7f43576e2490c611c9b14573bd22c8a0a6e8b6d
|
|
| MD5 |
484bef1578b973307427808ea2938978
|
|
| BLAKE2b-256 |
7927ac4e03fff7a12903330d612b357055ca793597335eb7eb273cc28ec9e600
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 208.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79366feb846949ec940383becfd4b9febf8fc5dbc6a6959ab6d3bca9ac19c40a
|
|
| MD5 |
6c668bef5f1da86371ff38cbd901e726
|
|
| BLAKE2b-256 |
b87d97b76cfe1a7fa6573dcd98961f1303b18b78777a8182ca355df47368c0b6
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 320.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
741fcaebf2a30fe4159771d15316aa16bc95171cffe214240f2555c74cfd2acb
|
|
| MD5 |
a25f13e071d06396b2871b6ccafb123c
|
|
| BLAKE2b-256 |
06b53e151d80cd6181129abdd5ee9dd5c6a5066ba899640c0b890ad19e634c5d
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 357.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd1e8d8b3245aa85193c061f6f43d5b92575c76d24ada3c8a9a4812f4bc9464d
|
|
| MD5 |
e1253691f8a141947e86ba554efd7772
|
|
| BLAKE2b-256 |
ce0ad3d50890ad82f225c208d47c5943b43096e37293687e669e1351dcb9f961
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 360.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67d4a2fe913b316d16ef6d637b567dd2d40f92cb3a1b8c9c9be9cf630e59ca97
|
|
| MD5 |
22c3d1b47d98cbf2e6c4da02b7a264ed
|
|
| BLAKE2b-256 |
c534878f2db0d00882722ab70ff72c26ccd79fafecb7c5c99d94fdfd595a7805
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e407542b7597b4e6fb84f169b021bab6f843e2fc390de8eb7f50f4a89586f291
|
|
| MD5 |
fb07e5417fa5ada4a32fad9f6ecbfc1a
|
|
| BLAKE2b-256 |
f9a3abe175a3dff1518a50c2f74064dcfa9d13c511bb9730a656c81f93c89029
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 316.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3847b691705dbdf4777670023977e13834ab2ec3ae54fabdaf8dd8750cd90baf
|
|
| MD5 |
647b1d8ba140d957b224dd823d99526f
|
|
| BLAKE2b-256 |
e63c789796aafd5d5af37bb6400da2ce7461dc57a08823af319e8fe52532d6bd
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 344.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
344e92e53015214c0a05daa713dd97a964e5986dd1488bacac521d5d241e1114
|
|
| MD5 |
10c5e496a9cd2ab56dbc05cf4f9b397f
|
|
| BLAKE2b-256 |
e4e5fec96f7893616d8322171462388c8a46427b04349df6f53f8fa389d28000
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 294.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
192fcedd5def38034dfae91d9dc1ea117214e572051748a018579412af533a04
|
|
| MD5 |
862b7fbe9aa4a9ece11f923167e3e2c3
|
|
| BLAKE2b-256 |
3ca74d84b770e2b78c29ad5700715b359c9913b39f9df29573791923bfb27ffa
|
File details
Details for the file trackforge-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 308.3 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68c03880e0cbf0d09bf505c7e66c0e66e8a55a614eaa8512e7354482fe51fff1
|
|
| MD5 |
6a925331a535ae1aee9c9fe414b641b0
|
|
| BLAKE2b-256 |
5705d07b8dc31fef251fd864703072a33b01629f71b4ac7e06033ff3d6e5fdb7
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 208.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
872e4160bab64c9df2914fee73e00bc4a9a7d7ba3098d7d7d32635d909adb456
|
|
| MD5 |
9837e634bb5cb9066795aa5445db9340
|
|
| BLAKE2b-256 |
20da6c06f26a4373848e8067b1fb0affe57bc8c785315fe45719d86237c0633c
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-win32.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-win32.whl
- Upload date:
- Size: 199.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5657169458b1395e0f5e952c6bf4eae86ac2d5ee1919ca275e6d9e3074f7e889
|
|
| MD5 |
759180bc9dfa6b0e48ffa73dd15bd9fb
|
|
| BLAKE2b-256 |
f43bf1e080373d4b082601f620893cfe95afd40097b541e2d57dea645a262d45
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 320.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0de2530840933ac01003ad1c818af4181b30f4c9b5e8896660e4bd3917c561f
|
|
| MD5 |
72b9f75bab9a0c3d6f082e5644e1e1a6
|
|
| BLAKE2b-256 |
79d0b272d618a8f548991a27875977966b6c56d3a72a783cfa823e457969b9ed
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 358.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd8abf5119e18bf07bf97cfd57086378a0841f256ee8ad669edd9d75bd938bac
|
|
| MD5 |
a03af9e9320c88c684b0e20212145ca4
|
|
| BLAKE2b-256 |
153363d0a50a8a13d3ea0289118ff3a86e6d9f2d356fbe55deca406feda58ac4
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 360.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
755f43abe5b6ee55f75b04f6490f08c1c67dae518d7d73108f9a8e3ab0e5fe86
|
|
| MD5 |
ed6811e0aa5d12d6f80dc0dd210b8c52
|
|
| BLAKE2b-256 |
c36d95bc4d891061fc8c61934a196982b8ddfddc579c440a15b96775b47a33ec
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
225b0e1ded4b3008d788f2886ea25fe7ab234031c1ebce89779ef78330573b2c
|
|
| MD5 |
5b01a9ae0f8af87c1213af1d7ef70546
|
|
| BLAKE2b-256 |
34a74a738e4dc742a2b8475475df6b04b1781d6c9de7ed7d414fcc20d4817fb9
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 317.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b5d258d58a5d21c5e556ed478e7de5cc23a0d7835834d55a167c97cc472fe3a
|
|
| MD5 |
9ad3b2b23a37511c93ba9e33369381dd
|
|
| BLAKE2b-256 |
5f2ca501c2aa18d51d7cfefcaf6ea274e9832ac9707e5fc7d3e384ef35950c7a
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 344.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ff11d6ecad1f9c0d7b57caff76130d6325032d4ebe66f0ae06c4b7d2e183c49
|
|
| MD5 |
0d41d1de38bf12e9d649c9ef100051d0
|
|
| BLAKE2b-256 |
fa6e927d418d0c4c526be8274ac30e7fdf7787b4196408e33731f753ffaa5c1d
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 294.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60132a4991000574396273deb3dc01433267b723148d945c75c8a35035e9a91c
|
|
| MD5 |
0612c495c340e12fb6c526841e81bc24
|
|
| BLAKE2b-256 |
d12c2318a9ee0c5fe8b3bc1585e2c498b6df2c330b9232adca316ec90deea788
|
File details
Details for the file trackforge-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 308.6 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8deafcd795eead7526541eaeba01157b54313b57f0550735689ec779ef5dcf3
|
|
| MD5 |
b519f4fd3eefd554db2aa80d5f27906d
|
|
| BLAKE2b-256 |
dba8184549e13eed90631bfbcafb53541203cf712443910167ccb7fa65ac5087
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 323.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce5a69d6bd49a2499b8a4f6f1b0108261017ddcf2eb0b00db1658340c988d0b0
|
|
| MD5 |
975785296e2a76b135b4a49c4a1167ae
|
|
| BLAKE2b-256 |
aa30191e9e5e6676d3e698c988456d2d3bd390fa7f78da9ed00c7fab374caaf5
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 361.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b6ac87e864efdf392d48a5aec1c81330fcdf9f18bdbf2504a22df2b751429ee
|
|
| MD5 |
33d6b478fd1b9b8366bfc300edcb2fdf
|
|
| BLAKE2b-256 |
5c5adcd5d46f2d2ceaed58c29c86c80aa501784800e9acf04875c04309d49d63
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 362.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6fd0661057d50dd0ae53a5a7d77f3f27712f019b492e1160180cb2398d20323
|
|
| MD5 |
3d309c4b3578a3cba80e5f562408ef6f
|
|
| BLAKE2b-256 |
1dc696a2b60aa249d2857f6fcd13d2d84f2033fb6d3faae93a013e2ebf27c742
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 333.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e406044d16fbd19b1b6ef226fc75abfee702fd56a884f76569837cebf8d03f2
|
|
| MD5 |
070cac7a30ff13776fb5da5c662e97a4
|
|
| BLAKE2b-256 |
667da63d9a6aaeacb24e2f108c7a14cd091960d7b1a3ab2512d15b6f3f356ba2
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 319.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84f096fb84873c8a623646b616b16b49b330f9c67f14f2e769b70a666688ce70
|
|
| MD5 |
7c3c506d2e72bf1b855585e64c0d64da
|
|
| BLAKE2b-256 |
ed96e1e255aa9961f4da53f9870de498c834a02e967ee7fdd336ca2140904206
|
File details
Details for the file trackforge-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 346.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99b23d38535ccdc9b64935e908af1d6c4b9de4c01388840f9048d049a377f5d8
|
|
| MD5 |
43452e38b0bf3bf86158f03e3fbbe5fd
|
|
| BLAKE2b-256 |
c0e293a78dccc660eb4c58176eea4c5f9fcc365edbf692640e346a2fd3e7f317
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 323.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e08b7d81243fbd96822f5b027419c14da0df4f5145a6f1510a728851bc12f5
|
|
| MD5 |
58e26461b02da3604dba623052f0bc55
|
|
| BLAKE2b-256 |
c21db5c2fa71bd25b6d973448cfbea9f104d2dafbecc10ef8aedd83cb61c97bc
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 361.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cc6e261559e8f6a5675da607bde3224347d057b70a03936aef3ff4a27155d7d
|
|
| MD5 |
42525e3151ac406dd956e05aff9419b8
|
|
| BLAKE2b-256 |
79a7f0780f4238f651cdb78e935b7b96e808318f83ce065ebf9d48cbde6e490e
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 362.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6116c986734d155b56ab0a0f484f0c69e3eb52b95c43a12ee7807fc3dc24e21c
|
|
| MD5 |
b0135977fcf2cfa4e6aa9814d04712c6
|
|
| BLAKE2b-256 |
d897139d6af81b4f786f599a884d4fd3fe4f335605847fe6b2a44231871e3711
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 334.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df696169d4291911384c9579c584426f028172bd861a8985822ced99aeea97e6
|
|
| MD5 |
bba0f435da25405b612e5b9cdaf0202f
|
|
| BLAKE2b-256 |
c659870996ce69836b6581898bebad21703466fc9571edbf1234131d4266f01b
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 319.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
191a863ded9db0afe863254dcfb59f63d0c93415e16a6899123fd8bb607271a4
|
|
| MD5 |
16958a9862bdcf6cbcf450d913d7b57a
|
|
| BLAKE2b-256 |
98664dd42afc0859c8d22c591e8ba44b97bb348453318f42d85e5a9255da4f95
|
File details
Details for the file trackforge-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: trackforge-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 346.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4f0c5d1188d2c74b32c732742d6bf5601d2b0c70eab286f91f3f788be2dc2da
|
|
| MD5 |
827e73acd207b8d9c181d1e9a5d75b03
|
|
| BLAKE2b-256 |
87b0dc773a30515097652d4447b476626eb697a179675d5bf2bd042f7110e3c8
|
File details
Details for the file trackforge-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: trackforge-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 361.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec003042c6efae8eb85f2e2541d5f736d41edd520493ff8d50344c5671b7019c
|
|
| MD5 |
43935973719503b71176925cede0bc44
|
|
| BLAKE2b-256 |
bb70c8edd3d1f9c426ff601a99ab40c0a05d3d1770e6e25375214e86107c1f22
|
File details
Details for the file trackforge-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: trackforge-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 362.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d1714fd7eb5bae0cbfb175f5847920d17b24b402452b0b4eb53e6e92129c7a0
|
|
| MD5 |
dd2a105426af3a9bd217bea4703a7d2e
|
|
| BLAKE2b-256 |
8082aed9c791b18a934c0250187a2c44e7cca90c1846cde1dd5ec035f68475c4
|
File details
Details for the file trackforge-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: trackforge-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 334.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77691a34d95ddcea4ce2230e7701b74b8abf3af6ba877e92c481b2588cdb100c
|
|
| MD5 |
9cb89765c2d8a47916bbc3026d351586
|
|
| BLAKE2b-256 |
17ca5c2d81ac2261e996011012a4e4ff6fb5d1b936852cca51c1cc0689e3ae4e
|
File details
Details for the file trackforge-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: trackforge-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 319.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
533686a51cb7551e98f08d928d6ae1b25e646f173000d49c739656529aaed65c
|
|
| MD5 |
cd7e5001f2e60ed2b4f690f1322c0884
|
|
| BLAKE2b-256 |
ff4d802d295c643461f6184a0b80e1618e8f05db29b04c97763fd31192a7fb8c
|