A sorting algorithm optimized for datasets with pre-sorted contiguous blocks (tiles)
Project description
Tilesort
A sorting algorithm optimized for datasets with pre-sorted contiguous blocks (tiles).
Overview
Tilesort is a specialized sorting algorithm that achieves high performance when your data consists of non-overlapping, pre-sorted contiguous blocks. Instead of sorting individual elements, tilesort identifies these "tiles" and arranges them as discrete units.
When to Use Tilesort
Tilesort is particularly effective when:
- Data arrives in pre-sorted chunks or batches
- Data structures maintain sorted regions
- Distributed systems produce sorted shards that need merging
- Merging sorted log files or event streams
- Processing time-series data with sorted segments
- You have k tiles in a dataset of n elements where k << n
When NOT to Use Tilesort
Do not use tilesort if:
- Your data is randomly shuffled - Tilesort has O(n²) worst-case complexity when there are no pre-sorted tiles. Use standard sort algorithms instead.
- You don't know if your data has tiles - If your data doesn't have pre-sorted regions, tilesort will be significantly slower than standard sorting.
- The number of tiles approaches the number of elements (k ≈ n) - The overhead of tile detection and management provides no benefit when most elements are in their own tile.
Tilesort is a specialized algorithm for a specific data pattern. If you're unsure whether your data has pre-sorted tiles, use a standard sorting algorithm.
Performance
For a dataset of n elements partitioned into k tiles:
- Time Complexity: O(n + k²) where k << n
- Space Complexity: O(n) for the output buffer
- Best Case: O(n) when data is already sorted (k = 1)
- Typical Case: Significantly faster than O(n log n) when k is small
The performance is primarily determined by k (number of tiles) rather than n (total elements), making it highly efficient when the number of tiles is much smaller than the total number of elements.
Installation
Python
pip install tilesort
Requirements: Python 3.8-3.14
Rust
Add to your Cargo.toml:
[dependencies]
tilesort = "0.1.0"
Usage
Python
The Python API mirrors Python's built-in list.sort() and sorted() functions:
import tilesort
# Sort a list in place (like list.sort())
data = [3, 4, 5, 1, 2, 6, 7, 8]
tilesort.sort(data)
print(data) # [1, 2, 3, 4, 5, 6, 7, 8]
# Return a sorted copy (like sorted())
data = [3, 4, 5, 1, 2, 6, 7, 8]
sorted_data = tilesort.sorted(data)
print(sorted_data) # [1, 2, 3, 4, 5, 6, 7, 8]
print(data) # [3, 4, 5, 1, 2, 6, 7, 8] (unchanged)
# Sort with a key function
words = ["elephant", "cat", "dog", "a", "bear"]
tilesort.sort(words, key=len)
print(words) # ["a", "cat", "dog", "bear", "elephant"]
# Sort in reverse order
numbers = [3, 1, 4, 1, 5, 9, 2, 6]
tilesort.sort(numbers, reverse=True)
print(numbers) # [9, 6, 5, 4, 3, 2, 1, 1]
# Combine key and reverse
data = [-5, -3, -1, 2, 4]
tilesort.sort(data, key=abs, reverse=True)
print(data) # [-5, 4, -3, 2, -1]
# Sort custom objects
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
people = [Person("Alice", 30), Person("Bob", 25), Person("Charlie", 35)]
tilesort.sort(people, key=lambda p: p.age)
# Now sorted by age: Bob (25), Alice (30), Charlie (35)
Rust
use tilesort::{tilesort, tilesorted, tilesort_by_key, tilesort_reverse};
fn main() {
// Sort in place
let mut data = vec![3, 4, 5, 1, 2, 6, 7, 8];
tilesort(&mut data);
println!("{:?}", data); // [1, 2, 3, 4, 5, 6, 7, 8]
// Return a sorted copy
let data = vec![3, 4, 5, 1, 2, 6, 7, 8];
let sorted = tilesorted(&data);
println!("{:?}", sorted); // [1, 2, 3, 4, 5, 6, 7, 8]
println!("{:?}", data); // [3, 4, 5, 1, 2, 6, 7, 8] (unchanged)
// Sort in reverse
let mut data = vec![3, 1, 4, 1, 5, 9, 2, 6];
tilesort_reverse(&mut data);
println!("{:?}", data); // [9, 6, 5, 4, 3, 2, 1, 1]
// Sort with a key function
let mut data = vec![-5i32, -3, -1, 2, 4];
tilesort_by_key(&mut data, |&x| x.abs());
println!("{:?}", data); // [-1, 2, -3, 4, -5]
// Sort strings by length
let mut words = vec!["elephant", "cat", "dog", "a", "bear"];
tilesort_by_key(&mut words, |s| s.len());
println!("{:?}", words); // ["a", "cat", "dog", "bear", "elephant"]
// Sort custom structs
#[derive(Clone)]
struct Person {
name: String,
age: u32,
}
let mut people = vec![
Person { name: "Alice".to_string(), age: 30 },
Person { name: "Bob".to_string(), age: 25 },
Person { name: "Charlie".to_string(), age: 35 },
];
tilesort_by_key(&mut people, |p| p.age);
// Now sorted by age: Bob (25), Alice (30), Charlie (35)
}
How It Works
Tilesort operates in two phases:
- Scan Phase: Identifies contiguous sorted blocks (tiles) in the input data
- Restructure Phase: Rearranges tiles in sorted order to produce the final output
The algorithm automatically detects tile boundaries by scanning for order violations. When elements are out of order, a new tile begins. The tiles are then sorted based on their key ranges and concatenated to produce the final sorted sequence.
Example
Given input: [3, 4, 5, 1, 2, 6, 7, 8]
-
Scan identifies three tiles:
- Tile 0:
[3, 4, 5](range 3-5) - Tile 1:
[1, 2](range 1-2) - Tile 2:
[6, 7, 8](range 6-8)
- Tile 0:
-
Tiles are sorted by their ranges: Tile 1, Tile 0, Tile 2
-
Output:
[1, 2, 3, 4, 5, 6, 7, 8]
API Reference
Python
tilesort.sort(list, *, key=None, reverse=False)- Sort a list in placetilesort.sorted(list, *, key=None, reverse=False)- Return a sorted copy
Both functions support:
key: Optional function to extract comparison key from each elementreverse: IfTrue, sort in descending order
Rust
In-place sorting:
tilesort(data: &mut [T])- Sort in ascending ordertilesort_reverse(data: &mut [T])- Sort in descending ordertilesort_by_key(data: &mut [T], key_fn: F)- Sort by custom keytilesort_by_key_reverse(data: &mut [T], key_fn: F)- Sort by custom key, descending
Copying variants:
tilesorted(data: &[T]) -> Vec<T>- Return sorted copytilesorted_reverse(data: &[T]) -> Vec<T>- Return sorted copy, descendingtilesorted_by_key(data: &[T], key_fn: F) -> Vec<T>- Return sorted copy by keytilesorted_by_key_reverse(data: &[T], key_fn: F) -> Vec<T>- Return sorted copy by key, descending
All functions work with any type T that implements Ord + Clone. Key functions must return a type K that implements
Ord.
Development
Building from Source
Rust Library
# Run tests
cargo test
# Build the library
cargo build --release
# Generate documentation
cargo doc --open
Python Package
Requirements:
- Rust toolchain (1.71.1+)
- Python 3.8-3.14
- uv (recommended) or maturin
# Install development dependencies
uv sync --group dev
# Build and install in development mode
maturin develop --features python
# Run Python tests
just test-python
# or: uv run --group dev pytest python/tests/
# Run type checking
just typecheck
# or: uv run --group dev mypy python/
# Run all tests (Rust + Python)
just test
# Run linter
just lint
# Format code
just format
Development Commands (Just)
This project uses Just as a command runner:
just # List all available commands
just test # Run all tests (Rust + Python)
just test-rust # Run Rust tests only
just test-python # Run Python tests only
just typecheck # Run mypy type checking
just lint # Run ruff linter
just format # Format code with ruff
just build # Build Python package
just bench # Run benchmarks
just check # Run all checks (test + typecheck + lint)
just clean # Clean build artifacts
Benchmarks
Performance benchmarks compare tilesort against Rust's standard sort across different scenarios:
# Run all benchmarks
cargo bench
# Run specific benchmark group
cargo bench uniform_tiles
cargo bench varied_tiles
cargo bench hybrid_tiles
cargo bench random_data
cargo bench key_function
cargo bench realistic_workload
Benchmark scenarios:
- uniform_tiles: All tiles have the same size (~1K elements)
- varied_tiles: Tiles of different sizes (100, 1K, 5K, 10K)
- hybrid_tiles: Mix of single elements and large blocks
- random_data: Completely random (worst case for tilesort)
- key_function: Structured data requiring key extraction
- realistic_workload: 1M elements with ~10K element tiles (mirrors real-world usage)
Results are saved to target/criterion/ with HTML reports.
License
Licensed under either of:
- Apache License, Version 2.0 (LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE or http://opensource.org/licenses/MIT)
at your option.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Areas for Contribution
- Performance benchmarks and optimizations
- Additional language bindings
- Documentation improvements
- Bug reports and fixes
Changelog
See CHANGELOG.md for a list of changes in each release.
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 tilesort-0.2.0.tar.gz.
File metadata
- Download URL: tilesort-0.2.0.tar.gz
- Upload date:
- Size: 60.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6782fe6a2c91f9b3425ded3ae61418928a6ff6b2bd1a7d7942815455a89567d
|
|
| MD5 |
d6538673bd1297a563739b8d1dd68a56
|
|
| BLAKE2b-256 |
62f1613b6d19cc6663d03c5dc87c5efcbcdf13fb78807738e738d3489da5a539
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 430.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5165650d3eebce1051852df8f9449eff4c816c9d63ea63bb149f8934626b0417
|
|
| MD5 |
d0b0b21f0ab86f67e28e4e0fd2155c7c
|
|
| BLAKE2b-256 |
ae0a50ac089c19a74c36ee132a863c0f31c10c2403629c1db7707af31d853683
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 459.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb3849e7e19417e5a08327075641960a0f81009a657af8c1ec39f84934a40972
|
|
| MD5 |
df5d9021ab6c93a61ab92bb37c712fb3
|
|
| BLAKE2b-256 |
7430e325d3ccafc238bcdf5ae06b45aac4718436c4bf3b5f2da69c1e1e0e7e66
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 532.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcd7c72fb5cd041f3a6cbe6e7f4dbc46306cd3159da38249936dbe0409ad2235
|
|
| MD5 |
93daef806be40c6be0db524e36328d2a
|
|
| BLAKE2b-256 |
6107638121c28dd730f1f283dad983cc24ceba978313b8505172d636d8d23e8b
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 439.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d867beb9140ae18b02c9b361ec0c8ad408f50e5ce42ccfbfe3c5d900a525644d
|
|
| MD5 |
51f83d956c2ebd2e5f7579ca60035ddd
|
|
| BLAKE2b-256 |
d632610c3c64c0e656f37fcce3be5acb4e7127e6d819f5a8e371d9893c5cfb6a
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 263.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f7a608f7fe95a11c430c64951963099eda83ab4d9ef36d5748dd26c2fe8b1b9
|
|
| MD5 |
55b70c7a1aad9faf0db2c77cb6d0522d
|
|
| BLAKE2b-256 |
064d8b417953b9199cf6b0c70c9cae023cc535e2b5dd368e743803674c6c6216
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 283.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48a34adf69fc91b4c38b72671bfb18c83567aa618584a9b6e9800c04bc3bd1d0
|
|
| MD5 |
1803950a0f00f1608c66c5d65fd94e28
|
|
| BLAKE2b-256 |
a370ea5e3d6503dd954ab36064e0a6dc3979d0dde407f8b0644cf5fdf84b144e
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 387.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e769ea2551e19637824ce1559426849b3b7c5b09cdecf1f9ee968178de61114
|
|
| MD5 |
121ce76510a59e78cd3e242058284cf9
|
|
| BLAKE2b-256 |
06e0f62635e34a6b7258757ab6a889f60d030274261cc262959a3138453321d0
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 265.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ad9525a2809090e20775602de92102b364c2471801166e072cfc1e7a5e0dd5b
|
|
| MD5 |
baafb3f66f1f9049ff658b71078cb66b
|
|
| BLAKE2b-256 |
bf51edfeec464d63684971383b1c2d05034d7dccffe31e3275902bbf067229a8
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 258.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b9fe958b724df2beea9440dae19c6df9a6db4a752daa59689c0f53d3403fe36
|
|
| MD5 |
b0eb73cdc7e8290489af21efa0dce4c4
|
|
| BLAKE2b-256 |
06ed3e5472fb6c75949b26bbe328e874e40c8ca6e0c4cfd25af4dbb6044743ed
|
File details
Details for the file tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 277.8 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e97b060be483d6e057565ac63ea156a58580b82f505b79f2fbaf1bebac80fa1e
|
|
| MD5 |
ef01aed72e481bf6d00bc1b91b1acaa2
|
|
| BLAKE2b-256 |
4a01a949ba6cddea7469fbefd6216ddc9684b68b5aac8017f4fc8ed5d9ab7734
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 430.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b1e039163ab22eb847b35dee0b9bca335042deeb07adf571a91262d12efb85e
|
|
| MD5 |
293bee2efc5312dadc049f68d517085d
|
|
| BLAKE2b-256 |
9820b2842ee694d04d9aba2d2d0b5e256d3cc71a11eeea1e4f5b9bbed46943ef
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 459.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79ed41bc03ead59dbf0808052a5c4a50457ec3b86584d3f22f0c4853bdd890c3
|
|
| MD5 |
95e6d933b65b794b953760eb810dcf92
|
|
| BLAKE2b-256 |
dd222079c48b3e3ec90a1c3c986922857eca81fdd224111b546097590ffb41c4
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 532.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e88b37dd57e9666004dd02f8a392fcb5df8d75751ffd1aceefaf209296f5d65
|
|
| MD5 |
a0d67e6940333d7e3a9954cd695db041
|
|
| BLAKE2b-256 |
d8b36e1243623af63caa1b5f48fd9b9646976b56cddce38524da4af8c4abbeb0
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 440.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d10f9cedfab8a00ae5245d28b9447bc08fbcb040e04783d3dedcbfcb14ed77d3
|
|
| MD5 |
128db3413cfd5228255d92f5e4e86bd0
|
|
| BLAKE2b-256 |
def1c295697783b53bc80dc32520f587b130bb0ebb1065f446df4386c710e4c7
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 283.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19fc7d17de334e4da55faeceefe53bf8ff689411c7b0b84468b5a815f8883730
|
|
| MD5 |
405878c3e3d70373f7d0dc1260bf275d
|
|
| BLAKE2b-256 |
8d23880e1a50e70d249ce736d4bc842606ebf7e53727ec1bbf071b269f9269d1
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 387.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b925a7f6d61f7eecf1bbcf5818f46f5724d6bdd34ea4a404ead19d52d7e8556
|
|
| MD5 |
f4c046229b9ea715a91e56e52d8edbe8
|
|
| BLAKE2b-256 |
a2dfe3f5576d823d583a595df3bf41020ddcac7a42892c5cadad395c55e67c9a
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 265.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bd38109a19e137df09be0dbc59de58c6f288e701587e06f2ecf57c5158b6a6f
|
|
| MD5 |
129ae420cda250627884fb47578510af
|
|
| BLAKE2b-256 |
2c9106fa4a98fe8bb04678a99308e6605f82226e94af0447aa3e253b1e8b3bf7
|
File details
Details for the file tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 258.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecb40a3b59bc3bac3131116a10ccb689b223b2cc36f0baa3a6df01bce1e78a65
|
|
| MD5 |
6d89b138cee342f1d340e6109a6acf0d
|
|
| BLAKE2b-256 |
c36f5c1b6128aa3b679740ec2e3771b8a079e43e01c9f4809a62df8132f73340
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 430.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bdeb977fb5df6f6f1628074f6b4e56796c55e0fc3261223a213d69de17f0b09
|
|
| MD5 |
fcaee844ba219490899ad7bebf6d8e83
|
|
| BLAKE2b-256 |
13181df974ffd1c1218e0ae1d7b46963771e312d4ce60090715cccf879985b23
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 459.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4f9a03824929af4f7aad1d2dcaf20c66d99535f65cb531c80d5cca98c4c1f58
|
|
| MD5 |
0cb1e6b4ccf85ab17c3f1e6d6766acfe
|
|
| BLAKE2b-256 |
87cc3f71c40a4a47d9224ab93d91b7a8a16c19c8161449ba0159e4120b542961
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2cf1e3a2a9c2238fe92ff29e9483dc166d35526c3e5d3f720a8d2be57a6b6d9
|
|
| MD5 |
f79b6799c9d0ba3f5c923806d16bc65e
|
|
| BLAKE2b-256 |
8109a6698a42621b73d98d3ff0a9853198d160e60efe598a955a5a72562559dc
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 440.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
518624c72ca947c7e4845909a480a163d499d116406de906601379dfd626c4fa
|
|
| MD5 |
a5f58740617792871d253904e1401d57
|
|
| BLAKE2b-256 |
fef60631ef5435a025ec3fd3176ca5eb66121f321ac9c2a77f2e42b2be50415d
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 283.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee94fb3b5d6beef2ef9a0e10cc87cc7d5ba60f0e8c5e2f21c427b59772f677c2
|
|
| MD5 |
b598d2e6aa0d3cd46586770f41c43c45
|
|
| BLAKE2b-256 |
82179372c36f7526a72fcad16f2c62075ff2c344a933a869151a102c6b9194c7
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 388.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282876b64ee2e9df5a007c980f0921f3825a3a1b81aa1af6dace9748196f57af
|
|
| MD5 |
3844339ad7ade2c6c962ead22b1c2cd7
|
|
| BLAKE2b-256 |
3e0160db691dcb1dc68492fcd31832bc1dc78959d5b6f3df687f3b18df48578e
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 264.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51d601b7a72901c765f2a586a9c40dc44a9f5d7353f3e37ecc8dd2bdf528713a
|
|
| MD5 |
a75aebc51e71f3d50681030f87efec5e
|
|
| BLAKE2b-256 |
3175ba21df5f532214e43a547495c0ce6117faf2895145e79bc8c328487d1039
|
File details
Details for the file tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 258.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06bf8bdca94affa8325fbdcaa5930c22d1b18d318e74653ff23c4e33b6085417
|
|
| MD5 |
4895868bc2a3a52f0d6a87e3133b3bdb
|
|
| BLAKE2b-256 |
0cc999bd0a1fb4df05cdb58d63ba18fd8679aad156394379fc2ff55f556ddab2
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 427.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58589348990f3e3962f426f7506af441d65d2cf56b75181b7da0ada77ea2773b
|
|
| MD5 |
dc99c546813a26bef6952fe0cac072f0
|
|
| BLAKE2b-256 |
c6b8edf3879c250f4992dfac33e9f4907bddfe8308397dc3a81946153d118d07
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 457.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ed21d4286ed321f0536326385329256740c912e1a82f45f66700493e3633373
|
|
| MD5 |
437b8ed96b70e8604aa3c9478eb28395
|
|
| BLAKE2b-256 |
09dc6443f2cbb6586fe814d938b7c961481a65d1ab5b47217dbf67d3c7b7a10b
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba413c005f1d4b6592c94f5e040a2d3f7ca98d5bcd1c330538f91a4bf1aca831
|
|
| MD5 |
e00f6cb8ac68ba08897bb0de39479fd8
|
|
| BLAKE2b-256 |
4d1bcbd0ad9aeaab090e8a34042c03b4fb870f61315721d07c8e92eff7368914
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 436.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5848f49ffad4c2e3ccbf19a86413204e9259317cc979cbb0826d69b0059c37
|
|
| MD5 |
8c82c90fac9b64dff1610b600e7e95c4
|
|
| BLAKE2b-256 |
c8976db9ba704061dc8ce4d73f60d5349e7068406d6e51742d9a7881d887046f
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 281.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc88e297b879c5c6d417e3637ff307f9b1218fc19b92f623fcc4a2673d3d803
|
|
| MD5 |
63506a22745f0b12f2a8051736af2986
|
|
| BLAKE2b-256 |
d974c5ef4241c4764e41b5d32618d9e6042418c9a6add17b88296ae9671df461
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 384.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e65e67ddfc6b4df4112b09173b64bc175f9c24beba749be17842ae14ed4f3b2
|
|
| MD5 |
5e7b7054619a3897092200965ac7ee48
|
|
| BLAKE2b-256 |
bda9b405b1785d6562045a9455a0d554bd305d0f9a3e73e82afd0310d838eacf
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 262.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a489f9fc2b8489d5061681c0903ef97d5882714c88366e3499f293c6625621
|
|
| MD5 |
b5892f6660a3a690ce31c17f43731814
|
|
| BLAKE2b-256 |
42eab3d1718fe146f2182c7c4b1aa01ed4ab3f9a51df4eefc38f35b3969aa36e
|
File details
Details for the file tilesort-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16b882d28b0f0a91374c13d0b054d64b81c98a8fac52b00982589207074d1b1e
|
|
| MD5 |
7a7aa99416457433c37182cfafa663d5
|
|
| BLAKE2b-256 |
912e7c561fc1fdd204a989d8f97b2480ae2eb67a23da9266756899740c53c294
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 121.0 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
470473e3e6337eadd4425a728ccc8e7985aefcc8caf6e83703c505b26cea2c29
|
|
| MD5 |
dc2603803e4e2a7169b06433762b8d9b
|
|
| BLAKE2b-256 |
6f686c69327ebd67cf1ca09254e7757b44cb4030d9497b72dc243564d4b57919
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-win32.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-win32.whl
- Upload date:
- Size: 115.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58f1226e75cc71295c4e4231365f9de102dd20b86ab81e6fc460120447a72e33
|
|
| MD5 |
b0d25258bb225439dd74efb01f395457
|
|
| BLAKE2b-256 |
697a4ba443907bebb8649a178ecfe522c083b94c3f73ebfe6f4ba80697cbd94b
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
468ca3729320abc5b3a8a81ca05e90aa07a5e3fbbba1b3567c009d9d4ca0b9fb
|
|
| MD5 |
bc54e55dd83cac533fc06db9e5e3bf81
|
|
| BLAKE2b-256 |
0466896484058f2632c0b67005b4226eee019443c9dce759fbaeac8841573be0
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 457.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51026396bd38ffbd5bccb6237a94a02781d17096245bbba61367481d2e5ffeb2
|
|
| MD5 |
c1f126c6951500f2f9d879c69f104acb
|
|
| BLAKE2b-256 |
f137d0f37e8a06c196e048272f3030b70afc5e866e0d32c7c4d154b7794a0878
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75ee989d045664e906ac87fa2df338c415a8365db19e9ddd2c99244a26ada801
|
|
| MD5 |
331ba84101b38618b7d674443ecf9136
|
|
| BLAKE2b-256 |
c18afc78c28e5c057ba128f84254f04fd4e4b2be299c8b677cb003c38c734742
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 436.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4babff3f12d355763a9f48cff02e92d813583312711339b030028b9e3855c38
|
|
| MD5 |
a7f97f9f623c8d06dcc4752bb19f52c2
|
|
| BLAKE2b-256 |
d59754af4675af7c7dff25f57ee80c702ecd3356b3eec8e7b704e85d7010f58b
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 260.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b718f59230d20547e5eb7b67e7c6a9ddcfd76c6d2de5a4aad3ae9f1c83555c3
|
|
| MD5 |
d5aac8d68fb9d46f549a8669981ee99c
|
|
| BLAKE2b-256 |
2080a7c57c0ace61642707e92970eeb12f1fee976cf02da61e415e1edb537bc5
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56a61308c88dd4e3bf7387ad5dcc1d90f7b8f27fa80ffb1bc05ee7876fd9edd0
|
|
| MD5 |
1759a3ea94285404f32cd961f7eb4669
|
|
| BLAKE2b-256 |
543a94e34a1ddf4e22e3c1b89e3f980979cf10944f2a7fc2ce4f8c33cd60fbbb
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eda87659f6662529d00696545a6344086544bd611b7f17f90f2902de084fc0b
|
|
| MD5 |
4c1ffe24a17e695279b375fb86f535f5
|
|
| BLAKE2b-256 |
51a5211fda41e52025a1164dc3877fd9b70b2a7239f4ac0fb72f9df556abef28
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 262.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
847611aad9545372619871a6cbc637ce88bbe777781b5e49f1dbb0420196d068
|
|
| MD5 |
8218596c99424fad19e1d559eab0be43
|
|
| BLAKE2b-256 |
0017f77bcda3f21db15291e061759dba9458c510f78c4b49472c6ce281cf2a35
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
024b59eb23d87749e87dc98e59be45748502402a5ff79b0ebf900358b22ee30a
|
|
| MD5 |
2e58c2cdf868d8e21c328f78628e58e4
|
|
| BLAKE2b-256 |
6500089c6dffe136205578477400e5864ab643937e5ff1d5fe6058f7113ffc7f
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 274.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7885d27d259ea273e63ea0893919e63d9102a0a190ca8ad195b9ef1322e82dc
|
|
| MD5 |
23095c348efa207b115488fd209d2846
|
|
| BLAKE2b-256 |
e7b408f2496737732b0cd03d758efdc57884508b5e78c46907daeb55c4faa8da
|
File details
Details for the file tilesort-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
460910eb4c3d798aad91cb977c5f724945feff9dd27708ba637806309787284b
|
|
| MD5 |
2b7823c32707a8017ea18c8511346d68
|
|
| BLAKE2b-256 |
c8375ecb3c5f9a792aab528d33587fa33f99861b2c79bb1c754624273a114baa
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20efa8a543403eb7bbbbab862ab469f712e6620ebb87a2bcc890fc8fadc78b65
|
|
| MD5 |
dbf4808a7bfe999562aac630dc8d4f47
|
|
| BLAKE2b-256 |
5f57a67ebe4005e4083a1a1f5f2bfcdfd2f7dbb8ef316310952248162dc9cfe1
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21b6abc54234c6f2f35d60d105c2baa482cae8e22ce1b2358b67a87b72bc1500
|
|
| MD5 |
1bbabb43dca379febec13d2ceb5b6a50
|
|
| BLAKE2b-256 |
019073bb1e5304752f48d5d1313375d1b4fbc7521fad9dcad9dd611dd1992d39
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe0009777c7acdb1faf400eea1b9e646e7d41bab8dbbd53ead5e39fc2f248e1
|
|
| MD5 |
71b0f5e7e21922eba57d86d58927f316
|
|
| BLAKE2b-256 |
2143b3d677c9ba5d6855ff7cbac647fc309f5d1b4aa22cbb9e40e50d22861342
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
993ceec031c4523ae433db96e1f28237dbb00bd9c04e14a6d568b1fae6762ed9
|
|
| MD5 |
3c6b111e4d3af51b03f96b11197efdb8
|
|
| BLAKE2b-256 |
9a7ec2aae337bccace2aef657cbefca922b0750d8fdaf4aeb85d428d0099d5ab
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2a9d517cec8a55ad0e15baace8ccffb6a9bf20a16f461cf732e009d808042d9
|
|
| MD5 |
6f47d880e069fb5c973e7dc2877a3717
|
|
| BLAKE2b-256 |
8ffed75ff0dd5e470572c9ce8e884bcdbe7aae181bfefa7b17605f65ebae791b
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 386.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1006968ec565cdd619a90a31e35d011b1afa5d96c515bd2b3016d44c29970c1e
|
|
| MD5 |
f0008427e1fb7282dc2d2ab6c571b798
|
|
| BLAKE2b-256 |
edefeef1fbaf428e1f59feb22a52baf88027c08ba2eaaf3031a4ead5fefbf5e7
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 262.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5241b01b95ea8d3f8c76d8279a2b3a794a0027aa81640e0907bb682621f8bd0f
|
|
| MD5 |
9c0956ff434130506edb96c44a7143e8
|
|
| BLAKE2b-256 |
1f2a47b4f527cec2fbb704ea6b1ea2201c2da49cb781c454a7d57f94a78e7261
|
File details
Details for the file tilesort-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
118abead4e7c2900f66bcf2ed6ab18a6e28a76b123b8cb4c131388c73b4c82fd
|
|
| MD5 |
05658349ad759ca20b96a5d2eb215607
|
|
| BLAKE2b-256 |
7babb3f8e6aa4386e1d256f4e7ce594fbebe0ea3d339174c5a71d155b0180505
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 121.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
981fc27c50a4007e14c6a5c2e111708d3a7290b649ff87fddf4d906c175cbaa1
|
|
| MD5 |
638e4228f6a13e10968de470f3bc867e
|
|
| BLAKE2b-256 |
8347476cb1f26ced4d3582570797c8f1b4487723b0e8d515a6dcb9bea13f28e6
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f49d3ad09acf755bf7b94491be321a9608f6b159617b5d8cb57231fef4d2762f
|
|
| MD5 |
d944f96e156e1df811ca47ca015b50f2
|
|
| BLAKE2b-256 |
e6a234b72766cb03b7053c6d638268801ee2d0b3fb50a51dffbe37db127f5c2e
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 457.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
381f379b971bf5f27b6bce472727209c68011ed5014d6a44c9558909ed32f9dc
|
|
| MD5 |
9c89f5c9bd678bd98c2c363f3948974e
|
|
| BLAKE2b-256 |
46e748888a405061490f94654bc9e92172056ac01f3e80bfe1c9603b4a03f464
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4916ae6922f9efda5acc27436ba887b493ece8c6b16a4c2d70f548018567beed
|
|
| MD5 |
50ac13bdc71a8e13d86886820ee30f1a
|
|
| BLAKE2b-256 |
207397dd3dd466d310de34fce761e4cc04555716b509549b20d6c7aa43ff8bb8
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ab847e3748e73134e5596d6757e0b3f9d99f0b43d3870eb250b77e5c4026b7d
|
|
| MD5 |
5df6b0c86d6fba77a74972f2ac7a305c
|
|
| BLAKE2b-256 |
de151a6fe1a105b98d95eab8732c8b314bdc4ffc9017ff52339fe658e6d285a5
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 261.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb78ae01b70792f9952541b348549269737288bbf25df386d226b77058673a43
|
|
| MD5 |
1fd894c1de241b2bf87dab47a9a640a6
|
|
| BLAKE2b-256 |
3b576e3d25deabbdaaecebfb79b0ca4b560ddc5548aa369a631e7760590268d0
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54da2f8b2779d38a6620796f799cfa5150cd2b5d37df255ed6a09ed701ea8f4a
|
|
| MD5 |
b948bcef3644c2e3b56e6438d4c92819
|
|
| BLAKE2b-256 |
cd0927ff7b8d9ad2028f337311321cfcffff99213718e28aef1ba2094bd611d1
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 384.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e819cc4611eea3b59df7d41e027598fd89592091657af02a1b6256b72235d320
|
|
| MD5 |
04754a3326b412030d9cec5272049e9d
|
|
| BLAKE2b-256 |
5bebfd119b834efe25e4d42bcf5e88a307bdcf323b2f09fed83052b31150d6c9
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 262.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5d7e3688ce1c75f1887c2b99d81f2ad6773969c9bb784b069070371f2e6d3e1
|
|
| MD5 |
ae4331439fb4c1e5897bd456205a1f51
|
|
| BLAKE2b-256 |
e6c030f30a0671d254133ad2439c50816d548de8344af9dc9c53e159d64a3a1b
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d94e141b35659d90174102650d5b8b0c04cb004c4fe584aeac0a3d5ee1dcb00
|
|
| MD5 |
e4a69571fda1dcfeeb472cc90b770e40
|
|
| BLAKE2b-256 |
46bfda61e6a3e2943e6a229dc63b97bc22931c96b7db8aa5c0529e77d8a86133
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 274.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0932ee4a5a7bf3edb0e87e92a184347d205dc7b2c632dd3405becf105c3de511
|
|
| MD5 |
a207dc4f11c92b45f63cd919923f4ccb
|
|
| BLAKE2b-256 |
2ff0ab062a19e0c3489bcbf8e378a5bed0aaad236cbaf84a8b1b158ca5b772f7
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a62d8dd87e04ebc5fd5114e927bb2b5e83ce888d48196d7ec15ce872d62313a5
|
|
| MD5 |
b2a2c3565788fa5ec335d3e0c953e5a5
|
|
| BLAKE2b-256 |
fa802b0dbba7cb82f9c1e7449cc148552c9d713b0e06eb1b138cff17a747fcd8
|
File details
Details for the file tilesort-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 231.9 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91cd46a29ab5e84640e087fb1a0827920c928992eeb553c0e478bd4393f2a9c4
|
|
| MD5 |
98509e2a3fe762de3c7a3fce20afa14c
|
|
| BLAKE2b-256 |
f99bf5c7385eca8f040d45ca3f8d96cd370d437989ddf2b9f6d4569ec9566d20
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 121.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a02f53e869024d268b7ab32c8b30355d74a595e42d88d2c01e21644aba659a5
|
|
| MD5 |
29aed8d06f92cf6ff9dbe30b68b93528
|
|
| BLAKE2b-256 |
2783cb97b5e458cedfcd083a00134c02e8caff1c8508dcb9897a3b0a4c4b4ff0
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02f2179a98bf78a257c1d55871c7608dfa6ee62f69eab4a175ccde6c00c52519
|
|
| MD5 |
4f34e0a01279e2b05028422792c6fcd3
|
|
| BLAKE2b-256 |
c80c643e4b0004fa9768d62b72a9afa1b24dfc45656e4ada77a40749cad2d9f7
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 457.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3e0ba5ecd4e4c01ee58f5dfbf56caefbdfa20e9ef9b2c798bfce5d163d295b
|
|
| MD5 |
8274c5dbff72cd97701704cb9e02fa66
|
|
| BLAKE2b-256 |
8bedc768cf7c94bc5f5c75fe71fd7f79b84b3dbfad2dacbc67e60e347dbc119f
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee004ee77bba466139af7dfc0de9fb4537eb071d6bf1d3ae7fafe6b0aaaf0fce
|
|
| MD5 |
c91a69870b2537925ca9cfa2ad01f0ad
|
|
| BLAKE2b-256 |
6d6cb8090fe2c21cb64d3cf91fca5859ce30ca0a61dff2a88a9b5c830458e310
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9acdf7528197e16d53c519de52daa3416e5bb32589f1c2106672e32d33f5f1f
|
|
| MD5 |
2c90fc607fff78457a7eb269622064ea
|
|
| BLAKE2b-256 |
429f9376b86330dcc3327dd31dfc018f6b387189d81f6edbfa9e2a5d016dd3d3
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 261.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
390671a7c15c800c0e511b9de33ec94baaf791ef295a2c80615b9e1d6d3ef20f
|
|
| MD5 |
cb1d05affb650d624abd51930829be2a
|
|
| BLAKE2b-256 |
dd053e23dfecaa3e24bddbd187c494591dc60c470ba7b9ff30806cc4cc9d2d73
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 281.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09b8a5c0a2347a1a0175d087b2c1106a6091bc5cee855d4952e5a2422403cf48
|
|
| MD5 |
c4f76dd27c6016be984654ba0b24efa8
|
|
| BLAKE2b-256 |
8461fda7fa1780defe54f7af6957c48a7c93385b89de87b51943b6a36c4b33aa
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bcd9e14196575420483616c5488158e530aa1d1eae3f31418b341a635ddc278
|
|
| MD5 |
3ddb4a8b840eb02e608b9846fe8f0797
|
|
| BLAKE2b-256 |
bd2a1ae3240d2a4b40e1e3b6aea8f6c89249c904e403219ec773b9e3692d22c1
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 262.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2733ed9386986527db2174a61fbceadeddb0a2cbe6702225760783f0cba8fcf
|
|
| MD5 |
9a4fc423a0d03986dc821eeae9c50f97
|
|
| BLAKE2b-256 |
8398d03f01c355e095debb4fc2a0860dda32854f2167a8de9c50448b35ff1811
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1efe0864026a9fe5ba20cc8b2c080d5702d708e99825836468782878ebe5df65
|
|
| MD5 |
589add2f9d4880647d4c09ab14eb473a
|
|
| BLAKE2b-256 |
39122f633a8a489424f585acbfba15b3ea47ac83bd6111919207023d2101c658
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 274.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e9daf9f4d006f1f0bf01a8c178db9857e97294d96ccec7e583d07bc9336fbf5
|
|
| MD5 |
d39bd8618847ef47cf32decdad944d28
|
|
| BLAKE2b-256 |
1065793ef386386a9d043725d310401af0242e052a244142e2e0730f0983bad8
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99885fffb4a681e73037ee15d8baa151b264ce72c2b61baa9d6447dc95f85538
|
|
| MD5 |
d02632e1e9f3e5cbc23c361acef55d56
|
|
| BLAKE2b-256 |
02d7df6c69d7e72c4b2e9af7bc054f3ef64b239fcc52becd0a59f62287721ee2
|
File details
Details for the file tilesort-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 232.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40c4c42f80492a39b69c7b74fb4398ea93ab5292f833a4ff9e08e804e3123658
|
|
| MD5 |
3a7b64ca501c60e2af263b3a4bbf9478
|
|
| BLAKE2b-256 |
88b040d253471fe902c45afad8beb639c73fc4f8999b9b3e575df238d50520cf
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 121.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cda614ece99d151d964a122e731a71eb8bcea195a3bcc39e7093fce275bcae5a
|
|
| MD5 |
3dbc72140a39746e7e0ac960f0cc6438
|
|
| BLAKE2b-256 |
ea9597d2a383e997efbc8f8112b94a626a88a5acace3c7360b4f1d16df99e382
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7cbcfa5753eb95e396b23caa2dc369a9b1c5211e097e42c8b7f1f71990902c6
|
|
| MD5 |
0816c2c7218b4a3bde8803c0e0ea47e4
|
|
| BLAKE2b-256 |
ec5ebe10475a484a76264a2b92975809b56875695359b7db28761084baea9b83
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 458.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f4ece6b7af4cd37a9a97e5ab482f2dbde4a2a52d74a0d306c1b19bcef0cf355
|
|
| MD5 |
4d23c224c775671025f6a21f62b6fbfd
|
|
| BLAKE2b-256 |
36d00d642ab3e4e3d5b3e25bc13d564e11c45a70b2ef34fd9b2385cfb9411137
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee7710d9b16f6b09787f9b3b895c7519c19db5762f880f6b06c29969e6b59b0c
|
|
| MD5 |
d5913a63e0f8435dfcba0566764f8883
|
|
| BLAKE2b-256 |
7378e487c3ef0c830a6afc7542b527ff926ebbc456f9cda5240c006d3179908f
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0aba6462bb55aa540f7de1385d61f690ac1ac9db898a5a277b1d1c90d0fbf8ca
|
|
| MD5 |
2dd1b7d846b44670489fe2a0265ad758
|
|
| BLAKE2b-256 |
b23677b299f2d0317ccd3947fd1e7847c365f0379bb2cbac442dd38c0dbe3423
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 261.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2794efadf18c4d5da763f022c08ad83bb98ec607f381042913b802853b54c19c
|
|
| MD5 |
eed5699dc43ab66af15ffce7ac52bc37
|
|
| BLAKE2b-256 |
6a449bcd58543003c3246d0408858d40e86215def78f3ba36cd610360f0631c6
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0649ed84f00102d7d869f6a1c5833fff8824f246fe7ddc4703370d36d6904725
|
|
| MD5 |
4c3e5bf46375ffc9200249705ff913a1
|
|
| BLAKE2b-256 |
aad4126aa06c059dd0519c99705b71d995f3f609f96cd99851873ce8064dab70
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9324eee3f5c9a59fa5d00e2853628bf9f653f190a693c59429a9c7a75a1f6cb0
|
|
| MD5 |
72129a3e7688000663a5e9ec3c33c6cc
|
|
| BLAKE2b-256 |
f04e5616a93a69217d886d78490c7d31c6df416e520d66ee7d7332e6f4784691
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 264.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be11af2381725564ed6ce9ec69613257216cfeb0f8ac69ed04366b6458e2466b
|
|
| MD5 |
38e3ee2587f5ce8ca0aa0bbd9067fedc
|
|
| BLAKE2b-256 |
5f1c715e6a46343fce5812e4ba277d5d84b319de38b1d154f1a507f51bc19a54
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 255.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1370bb5b0ec05633c632352e923a23c9b565558c4c7cacff7c24c2d09106494
|
|
| MD5 |
ccbf86e5ccb791828c05b8ac368ffbb7
|
|
| BLAKE2b-256 |
87c0761a4337ce06d13c57a06916eaa7bb9c9f0129235e0d6bd98271ed53a40f
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 276.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da5522e6488a61614c627b6ecdafde43cc9edfe40296109ab81af8d42466e959
|
|
| MD5 |
5bd144c034a6c37df7597208e77866c7
|
|
| BLAKE2b-256 |
bef086b71b4633c96946fe6d97b8cc9efce184365c339303040db9d429c7b715
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 228.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e84bf3548864cc2339cea98d6f79af20d1d9c8e64196d24a5d1ded54d5448b5
|
|
| MD5 |
8840c7c1206432fe46a62ead700308d5
|
|
| BLAKE2b-256 |
cc59138ab10d16ed02aabaefcee997dbb91db2eb8e93ffbb678082cfee2cfd07
|
File details
Details for the file tilesort-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 233.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da7e0c4fca1bd3fbe73bccf7f544b948a8f5120e54df214146184f7cf898718d
|
|
| MD5 |
4cf6893a80e290802076107ace895029
|
|
| BLAKE2b-256 |
d6ef948ee90002bf829f73b2c00cd1eb416208521d16ec24b76031f0eb3abadc
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 121.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb8d1591651bb158d2ee921b36e9730adb393a732f6a90458e5bd6179bce932d
|
|
| MD5 |
12ae6bf47a7b42f6b0a9d730e524c14b
|
|
| BLAKE2b-256 |
977116813b9d4b08dc08e164db55d07b46adcd09ca55c521cb139baa0991e955
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 428.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7972450d0e413f1ef7aa043c856d14338c4b6ab9806342aeef7655d6d7055bd0
|
|
| MD5 |
1a2c29d5e0d8e78bd94750ac42cb38f3
|
|
| BLAKE2b-256 |
eceedfa8c9148350c3f9e7a07c7caca1a56e6f9201a603ac9a72bf92d2c967f3
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 458.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19e868f1cfbd0e5f8cfa586a53c42d54762804df92ff8acdfbbac2e71950637
|
|
| MD5 |
a80ec304f75d336ef14953c827a17558
|
|
| BLAKE2b-256 |
564b1a3425109a9705393e423bef927fd1090b907c80afcd31584eac5035f582
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c03775f6d9119faccb7bc1bf73bd3a216ec34d6b54f6cb78a6bdd2201acfb51
|
|
| MD5 |
e1aafbf105ad213fe77406d78fd59097
|
|
| BLAKE2b-256 |
ecd70a57b61b1dc4b1dd5b6248758aebeea98cf77e3951b86b2708b2c30f2115
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a264946334d7f8090444ed92c2bd540928f7365e5e6ef7922dd825c1a18ba0e8
|
|
| MD5 |
825f17fd5e2e611b96b7f2e2478cb899
|
|
| BLAKE2b-256 |
b3dd728f80bddeb66d1a23404eca875faa3684459d8d5299826be9aaad386845
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 261.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
139c13adbaa30a15cb11ec287eac86d4bf4409663a7f2746a536925457add1f7
|
|
| MD5 |
261f9bef346a99b5bc29f9f0a22205ce
|
|
| BLAKE2b-256 |
2f067fb5a7a85ab322b14d0632b8bbe65b59b56ca0295714eee45ea1f2352bda
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce494e0d19fa0c5e20f6d27a3777cc9d7e38cbfe92719b93d116d1aaa68eea8c
|
|
| MD5 |
228eaa00ae56d5f211391491d3eabe4e
|
|
| BLAKE2b-256 |
ceed95e7254a8d5c25e6e2cb457f6a258ea167d1d0f31d8d05e9dad5d1232208
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0639d3d2df65b2da72f944b24295d7fabb2901010a80dc5a364b956ed5a68d6
|
|
| MD5 |
477c348db857f37658ba1ff9591b73f2
|
|
| BLAKE2b-256 |
6b9367067e99b19cb61a96b8af1639ab17fc60ed004f7cd369b9c28928c7a61b
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 264.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b13ac5575db26c567dcbaa3cc7c1f968bdd408cf0db8631d6133b9477874f346
|
|
| MD5 |
37a85044cec7b9af2324d873e2741d7d
|
|
| BLAKE2b-256 |
51c914aab139904ccc83314d2424918a9de465de4e38dce44e4d3a2c8b6935bc
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 256.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6681232ce7a716878dd3bbbe7f303d0258443691feae466da9a004323b92c3fa
|
|
| MD5 |
f7c9573ed690c6ac752042e49c2e11a1
|
|
| BLAKE2b-256 |
6b093290234669214d19da6d5cbf15b25c7b10c641c25bdbdfa9e3fac8604324
|
File details
Details for the file tilesort-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 276.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d810963617102b49c6457fac5e794a933f48e28c939ae86e2e77f9a8b3c48d4f
|
|
| MD5 |
513b6db2e1831a9a6bcbbfa95e1c63c7
|
|
| BLAKE2b-256 |
f5a9f5c7bb416aa36abf4c82453917eeb602368b851f69034e1173f4cf44510d
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 121.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28307d588e1b73c89a6819a1a2f0d3a62d70705510d23e375f8a8e18a81b4353
|
|
| MD5 |
131e15708d435562439c748674a7ea08
|
|
| BLAKE2b-256 |
7c82dd1f7c48e2f1cc1400274672fa18f52d13610b79ec08176127e04451d189
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 429.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab8ed7366304a1208dfb762a120ea057238748c77e3df0d147691e79bb996a56
|
|
| MD5 |
cd87c99230df5b9cad48beabe3c5ccb3
|
|
| BLAKE2b-256 |
ffdf824742c1f421bade657e74a05a3b5820afccf341adbd5fd49942c4bdaf59
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 458.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec05560a3b5ae0ed8b943859dbe01eed0f22c855eaec4a04785dc613e45343b2
|
|
| MD5 |
27b27287f4121eecd068de69a6ce1054
|
|
| BLAKE2b-256 |
3e9ca1382b91d770f766c49fc69885d356bbf647e1a81b3cb6abe2487a4178f9
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b45ea8bac06867fa6c9c6efc731dbdee3858faf9a7691704b1692a0114c68f2
|
|
| MD5 |
e81a21de02a0587049edaa60f15f5dae
|
|
| BLAKE2b-256 |
c0d08e0d6786d1d96aa10ee6fa92166688e3ea349bc24fae5f1ed552f41d6d5b
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c6ffdef05b2df04a9f0fa7c8046a54ef76e5a3c37af1c03d31a17cd0bdbb839
|
|
| MD5 |
3de2cabc1739df3a4cf528ac89213592
|
|
| BLAKE2b-256 |
788b2266746aa6eed7ed4be71f24a9be9d11c77c7e4c20ac40a2ed80045d16e3
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 262.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c55a69c079fdca4397d7b50dc10f69c59f305a3f2e3468b958119b905044c16f
|
|
| MD5 |
54b7313ae2553688447fe1e8779853c7
|
|
| BLAKE2b-256 |
774d2f6a13951629f80ad91ccc9af510ba2f91c12ecdf4796b5e1629465bd1bb
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdb4617d402a1030ff4e04e55f2df4e50b3a13af0c2f3b2d2fb30bee334e8232
|
|
| MD5 |
6d377a3e0830f1d1e1fac9f502b625f8
|
|
| BLAKE2b-256 |
439376ec0f80d2ffb9e818c19112d34c2d1599150621ee8f50c71a69f5db7a74
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 382.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83d4709b0115c271f0ec079dff89d6e748e5baa4cacf91e69dc71b26ee77a4b1
|
|
| MD5 |
b3ffdc89d62ec2625636a52b78d2414e
|
|
| BLAKE2b-256 |
0e7354af6eb768c85f4a0c91ed43b029624297ff960b92217a7ec3de6cca6e1a
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 263.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
558c311f3dc6acca2180d8d6e1f5bbe4d98a80f28ed9769847e3743195fe3854
|
|
| MD5 |
ef5f350cad84013adeec111c166d0287
|
|
| BLAKE2b-256 |
a93573b3b7198855e72b05ced1e925fad4ac1605f3a278a6b374e9ce0516706e
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 256.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46b49a4bbbf80091acd2632ce145b8ba631d43c733778fdb17d1715d126affcf
|
|
| MD5 |
57477fbe4e698631af632d029aaf0adc
|
|
| BLAKE2b-256 |
3638d1bd2044c3e12dffde96a6eb2916d8cc927030c8d91bfdb8774015a851ae
|
File details
Details for the file tilesort-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 275.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f73e4d10fb38f12ae5c2f42433a4fb960bf36055a1e32de192456abc4b2fcbe0
|
|
| MD5 |
36a4d2b43ffbd622d834ee40494892a0
|
|
| BLAKE2b-256 |
2d739af91d6981c815caa7ca7daf28c354ee094ff6e6ae5317ba37f7d0c28e6f
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 429.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
857ab5b7d763ed0e80e9d842bc2c88dbe1ecc6134e3d7cf26055acb9eeefbd72
|
|
| MD5 |
a1ea1738a0b1f10c38582f4dd8c91923
|
|
| BLAKE2b-256 |
4d03f0d943ec6ee18a67148a7ba66368f4507b031c67f8d4eb9c484cea515c47
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 458.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b21a1b94edbf4c6ba14d8760c7f1bfe1e8117fccbebd05aec6d6f8490b4c2d94
|
|
| MD5 |
38487da38430911247cc7a395009eb6d
|
|
| BLAKE2b-256 |
d2eb5eb002077fe711775ce90673e22e68dd66b515fea581fcfa59562e9cf303
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e7097b517045585cd600b078363afd2b29cb606bd8a8c04a85dd747c483e3c2
|
|
| MD5 |
9bb3b75783186bd6d4bf5ad18b783d67
|
|
| BLAKE2b-256 |
a00329eb9fd4de81dd5e2580dd8e6d43e28e1348eaaf65944eb19a6a4f8f6d3e
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 437.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a55e9c3ac7ce32009e4ec189bdda72a0b592790d72a69cbe3b6bd368f242d031
|
|
| MD5 |
ff621f79dbbee3fc08e1a7f2e36d92d3
|
|
| BLAKE2b-256 |
81982cbd7a596cc7a7a4493eddcb4623c43a1e7b07f59e01c0e6ffdd2d526093
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 262.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1482fe1ab868196daf84c29c143a1009f2d56f0aabfe321293896db02ba29f71
|
|
| MD5 |
d1120f8dc490de3441df7a706e456288
|
|
| BLAKE2b-256 |
27b2f72fb498998dbdbb7f38c49eb7e192157c95c1d2a8651dfff99093045e5c
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 282.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38f2266da86d5e99b320992d6a01067ab8c969d4525c251f0cdebe8705d19b82
|
|
| MD5 |
b1eb1a370200f8d80dba88da7725f481
|
|
| BLAKE2b-256 |
94890245c8fdce28f3935918df94a4d3582610225cbe5aae904f764def5f8608
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 383.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1799698f970251adc32fe3333651cbd7f4ac13f7d8744b7808a4bc490559973
|
|
| MD5 |
ba1b74d1789409f9a28020477868c27f
|
|
| BLAKE2b-256 |
52a195bb5667a0b01f215373f0d4af2af2a1f4d6480e83a2f048e6571693e3d7
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 263.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e77a3f82f6da8c2b9f046bc0a7b202043f2360f8db521ac177d7e99706ad8cd
|
|
| MD5 |
68180feebbf1ad80dfe81658ba6ad7e8
|
|
| BLAKE2b-256 |
3c802274ad897a90df4e3336b299d3a137089c3526a1b6c58e0719dc174da570
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 256.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c18f4354254333bc67b005b21d460f1dbc187f9d8dc0cb84a412d2ba82a7815e
|
|
| MD5 |
af1e769a29b7bb59e1b086a446d1407e
|
|
| BLAKE2b-256 |
72ca78fd0c9c78280417ce8d31e41c5e2e5cec6a6298e336a29e5a9d43013fc0
|
File details
Details for the file tilesort-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tilesort-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 275.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
112a041f643504def4c3b77e1faa45dd986fddd1623883d9d1dc27cafc500e30
|
|
| MD5 |
90311b73996f96a8bab6fbf79a66aa3d
|
|
| BLAKE2b-256 |
711ad2b66142d585130a1a011f251863ddc9d791fe8e8ac6bafff435922ea1be
|