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.
Release files for tilesort 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| tilesort-0.2.0.tar.gz | 60.1 kB | Details |
Built distributions (wheels)
Total release size: 43.3 MB
Release files / tilesort-0.2.0.tar.gz
| Download URL | tilesort-0.2.0.tar.gz |
|---|---|
| Size | 60.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e6782fe6a2c91f9b3425ded3ae61418928a6ff6b2bd1a7d7942815455a89567d
|
|
BLAKE2b-256 checksum How to use checksums |
62f1613b6d19cc6663d03c5dc87c5efcbcdf13fb78807738e738d3489da5a539
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 430.5 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
5165650d3eebce1051852df8f9449eff4c816c9d63ea63bb149f8934626b0417
|
|
BLAKE2b-256 checksum How to use checksums |
ae0a50ac089c19a74c36ee132a863c0f31c10c2403629c1db7707af31d853683
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 459.8 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
fb3849e7e19417e5a08327075641960a0f81009a657af8c1ec39f84934a40972
|
|
BLAKE2b-256 checksum How to use checksums |
7430e325d3ccafc238bcdf5ae06b45aac4718436c4bf3b5f2da69c1e1e0e7e66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 532.6 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
fcd7c72fb5cd041f3a6cbe6e7f4dbc46306cd3159da38249936dbe0409ad2235
|
|
BLAKE2b-256 checksum How to use checksums |
6107638121c28dd730f1f283dad983cc24ceba978313b8505172d636d8d23e8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 439.8 kB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
d867beb9140ae18b02c9b361ec0c8ad408f50e5ce42ccfbfe3c5d900a525644d
|
|
BLAKE2b-256 checksum How to use checksums |
d632610c3c64c0e656f37fcce3be5acb4e7127e6d819f5a8e371d9893c5cfb6a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 263.9 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
7f7a608f7fe95a11c430c64951963099eda83ab4d9ef36d5748dd26c2fe8b1b9
|
|
BLAKE2b-256 checksum How to use checksums |
064d8b417953b9199cf6b0c70c9cae023cc535e2b5dd368e743803674c6c6216
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 283.7 kB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
48a34adf69fc91b4c38b72671bfb18c83567aa618584a9b6e9800c04bc3bd1d0
|
|
BLAKE2b-256 checksum How to use checksums |
a370ea5e3d6503dd954ab36064e0a6dc3979d0dde407f8b0644cf5fdf84b144e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 387.6 kB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
0e769ea2551e19637824ce1559426849b3b7c5b09cdecf1f9ee968178de61114
|
|
BLAKE2b-256 checksum How to use checksums |
06e0f62635e34a6b7258757ab6a889f60d030274261cc262959a3138453321d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 265.5 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
1ad9525a2809090e20775602de92102b364c2471801166e072cfc1e7a5e0dd5b
|
|
BLAKE2b-256 checksum How to use checksums |
bf51edfeec464d63684971383b1c2d05034d7dccffe31e3275902bbf067229a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 258.1 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
0b9fe958b724df2beea9440dae19c6df9a6db4a752daa59689c0f53d3403fe36
|
|
BLAKE2b-256 checksum How to use checksums |
06ed3e5472fb6c75949b26bbe328e874e40c8ca6e0c4cfd25af4dbb6044743ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 277.8 kB |
| Tags | Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
e97b060be483d6e057565ac63ea156a58580b82f505b79f2fbaf1bebac80fa1e
|
|
BLAKE2b-256 checksum How to use checksums |
4a01a949ba6cddea7469fbefd6216ddc9684b68b5aac8017f4fc8ed5d9ab7734
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 430.7 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
3b1e039163ab22eb847b35dee0b9bca335042deeb07adf571a91262d12efb85e
|
|
BLAKE2b-256 checksum How to use checksums |
9820b2842ee694d04d9aba2d2d0b5e256d3cc71a11eeea1e4f5b9bbed46943ef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 459.7 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
79ed41bc03ead59dbf0808052a5c4a50457ec3b86584d3f22f0c4853bdd890c3
|
|
BLAKE2b-256 checksum How to use checksums |
dd222079c48b3e3ec90a1c3c986922857eca81fdd224111b546097590ffb41c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 532.5 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
5e88b37dd57e9666004dd02f8a392fcb5df8d75751ffd1aceefaf209296f5d65
|
|
BLAKE2b-256 checksum How to use checksums |
d8b36e1243623af63caa1b5f48fd9b9646976b56cddce38524da4af8c4abbeb0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 440.0 kB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
d10f9cedfab8a00ae5245d28b9447bc08fbcb040e04783d3dedcbfcb14ed77d3
|
|
BLAKE2b-256 checksum How to use checksums |
def1c295697783b53bc80dc32520f587b130bb0ebb1065f446df4386c710e4c7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 283.8 kB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
19fc7d17de334e4da55faeceefe53bf8ff689411c7b0b84468b5a815f8883730
|
|
BLAKE2b-256 checksum How to use checksums |
8d23880e1a50e70d249ce736d4bc842606ebf7e53727ec1bbf071b269f9269d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 387.7 kB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
6b925a7f6d61f7eecf1bbcf5818f46f5724d6bdd34ea4a404ead19d52d7e8556
|
|
BLAKE2b-256 checksum How to use checksums |
a2dfe3f5576d823d583a595df3bf41020ddcac7a42892c5cadad395c55e67c9a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 265.4 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
1bd38109a19e137df09be0dbc59de58c6f288e701587e06f2ecf57c5158b6a6f
|
|
BLAKE2b-256 checksum How to use checksums |
2c9106fa4a98fe8bb04678a99308e6605f82226e94af0447aa3e253b1e8b3bf7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 258.2 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
ecb40a3b59bc3bac3131116a10ccb689b223b2cc36f0baa3a6df01bce1e78a65
|
|
BLAKE2b-256 checksum How to use checksums |
c36f5c1b6128aa3b679740ec2e3771b8a079e43e01c9f4809a62df8132f73340
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 430.5 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
5bdeb977fb5df6f6f1628074f6b4e56796c55e0fc3261223a213d69de17f0b09
|
|
BLAKE2b-256 checksum How to use checksums |
13181df974ffd1c1218e0ae1d7b46963771e312d4ce60090715cccf879985b23
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 459.2 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
d4f9a03824929af4f7aad1d2dcaf20c66d99535f65cb531c80d5cca98c4c1f58
|
|
BLAKE2b-256 checksum How to use checksums |
87cc3f71c40a4a47d9224ab93d91b7a8a16c19c8161449ba0159e4120b542961
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 531.7 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
b2cf1e3a2a9c2238fe92ff29e9483dc166d35526c3e5d3f720a8d2be57a6b6d9
|
|
BLAKE2b-256 checksum How to use checksums |
8109a6698a42621b73d98d3ff0a9853198d160e60efe598a955a5a72562559dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 440.1 kB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
518624c72ca947c7e4845909a480a163d499d116406de906601379dfd626c4fa
|
|
BLAKE2b-256 checksum How to use checksums |
fef60631ef5435a025ec3fd3176ca5eb66121f321ac9c2a77f2e42b2be50415d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 283.4 kB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
ee94fb3b5d6beef2ef9a0e10cc87cc7d5ba60f0e8c5e2f21c427b59772f677c2
|
|
BLAKE2b-256 checksum How to use checksums |
82179372c36f7526a72fcad16f2c62075ff2c344a933a869151a102c6b9194c7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 388.9 kB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
282876b64ee2e9df5a007c980f0921f3825a3a1b81aa1af6dace9748196f57af
|
|
BLAKE2b-256 checksum How to use checksums |
3e0160db691dcb1dc68492fcd31832bc1dc78959d5b6f3df687f3b18df48578e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 264.8 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
51d601b7a72901c765f2a586a9c40dc44a9f5d7353f3e37ecc8dd2bdf528713a
|
|
BLAKE2b-256 checksum How to use checksums |
3175ba21df5f532214e43a547495c0ce6117faf2895145e79bc8c328487d1039
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 258.5 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
06bf8bdca94affa8325fbdcaa5930c22d1b18d318e74653ff23c4e33b6085417
|
|
BLAKE2b-256 checksum How to use checksums |
0cc999bd0a1fb4df05cdb58d63ba18fd8679aad156394379fc2ff55f556ddab2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 427.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
58589348990f3e3962f426f7506af441d65d2cf56b75181b7da0ada77ea2773b
|
|
BLAKE2b-256 checksum How to use checksums |
c6b8edf3879c250f4992dfac33e9f4907bddfe8308397dc3a81946153d118d07
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl |
|---|---|
| Size | 457.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
0ed21d4286ed321f0536326385329256740c912e1a82f45f66700493e3633373
|
|
BLAKE2b-256 checksum How to use checksums |
09dc6443f2cbb6586fe814d938b7c961481a65d1ab5b47217dbf67d3c7b7a10b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 529.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
ba413c005f1d4b6592c94f5e040a2d3f7ca98d5bcd1c330538f91a4bf1aca831
|
|
BLAKE2b-256 checksum How to use checksums |
4d1bcbd0ad9aeaab090e8a34042c03b4fb870f61315721d07c8e92eff7368914
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 436.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
fe5848f49ffad4c2e3ccbf19a86413204e9259317cc979cbb0826d69b0059c37
|
|
BLAKE2b-256 checksum How to use checksums |
c8976db9ba704061dc8ce4d73f60d5349e7068406d6e51742d9a7881d887046f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 281.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
3dc88e297b879c5c6d417e3637ff307f9b1218fc19b92f623fcc4a2673d3d803
|
|
BLAKE2b-256 checksum How to use checksums |
d974c5ef4241c4764e41b5d32618d9e6042418c9a6add17b88296ae9671df461
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 384.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1e65e67ddfc6b4df4112b09173b64bc175f9c24beba749be17842ae14ed4f3b2
|
|
BLAKE2b-256 checksum How to use checksums |
bda9b405b1785d6562045a9455a0d554bd305d0f9a3e73e82afd0310d838eacf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 262.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
72a489f9fc2b8489d5061681c0903ef97d5882714c88366e3499f293c6625621
|
|
BLAKE2b-256 checksum How to use checksums |
42eab3d1718fe146f2182c7c4b1aa01ed4ab3f9a51df4eefc38f35b3969aa36e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
16b882d28b0f0a91374c13d0b054d64b81c98a8fac52b00982589207074d1b1e
|
|
BLAKE2b-256 checksum How to use checksums |
912e7c561fc1fdd204a989d8f97b2480ae2eb67a23da9266756899740c53c294
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-win_amd64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 121.0 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
470473e3e6337eadd4425a728ccc8e7985aefcc8caf6e83703c505b26cea2c29
|
|
BLAKE2b-256 checksum How to use checksums |
6f686c69327ebd67cf1ca09254e7757b44cb4030d9497b72dc243564d4b57919
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-win32.whl
| Download URL | tilesort-0.2.0-cp314-cp314-win32.whl |
|---|---|
| Size | 115.2 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
58f1226e75cc71295c4e4231365f9de102dd20b86ab81e6fc460120447a72e33
|
|
BLAKE2b-256 checksum How to use checksums |
697a4ba443907bebb8649a178ecfe522c083b94c3f73ebfe6f4ba80697cbd94b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.1 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
468ca3729320abc5b3a8a81ca05e90aa07a5e3fbbba1b3567c009d9d4ca0b9fb
|
|
BLAKE2b-256 checksum How to use checksums |
0466896484058f2632c0b67005b4226eee019443c9dce759fbaeac8841573be0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 457.2 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
51026396bd38ffbd5bccb6237a94a02781d17096245bbba61367481d2e5ffeb2
|
|
BLAKE2b-256 checksum How to use checksums |
f137d0f37e8a06c196e048272f3030b70afc5e866e0d32c7c4d154b7794a0878
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 529.4 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
75ee989d045664e906ac87fa2df338c415a8365db19e9ddd2c99244a26ada801
|
|
BLAKE2b-256 checksum How to use checksums |
c18afc78c28e5c057ba128f84254f04fd4e4b2be299c8b677cb003c38c734742
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 436.8 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a4babff3f12d355763a9f48cff02e92d813583312711339b030028b9e3855c38
|
|
BLAKE2b-256 checksum How to use checksums |
d59754af4675af7c7dff25f57ee80c702ecd3356b3eec8e7b704e85d7010f58b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 260.6 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
6b718f59230d20547e5eb7b67e7c6a9ddcfd76c6d2de5a4aad3ae9f1c83555c3
|
|
BLAKE2b-256 checksum How to use checksums |
2080a7c57c0ace61642707e92970eeb12f1fee976cf02da61e415e1edb537bc5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.1 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
56a61308c88dd4e3bf7387ad5dcc1d90f7b8f27fa80ffb1bc05ee7876fd9edd0
|
|
BLAKE2b-256 checksum How to use checksums |
543a94e34a1ddf4e22e3c1b89e3f980979cf10944f2a7fc2ce4f8c33cd60fbbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 385.0 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
0eda87659f6662529d00696545a6344086544bd611b7f17f90f2902de084fc0b
|
|
BLAKE2b-256 checksum How to use checksums |
51a5211fda41e52025a1164dc3877fd9b70b2a7239f4ac0fb72f9df556abef28
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 262.3 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
847611aad9545372619871a6cbc637ce88bbe777781b5e49f1dbb0420196d068
|
|
BLAKE2b-256 checksum How to use checksums |
0017f77bcda3f21db15291e061759dba9458c510f78c4b49472c6ce281cf2a35
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.2 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
024b59eb23d87749e87dc98e59be45748502402a5ff79b0ebf900358b22ee30a
|
|
BLAKE2b-256 checksum How to use checksums |
6500089c6dffe136205578477400e5864ab643937e5ff1d5fe6058f7113ffc7f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 274.1 kB |
| Tags | CPython 3.14 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
c7885d27d259ea273e63ea0893919e63d9102a0a190ca8ad195b9ef1322e82dc
|
|
BLAKE2b-256 checksum How to use checksums |
e7b408f2496737732b0cd03d758efdc57884508b5e78c46907daeb55c4faa8da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | tilesort-0.2.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 227.4 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
460910eb4c3d798aad91cb977c5f724945feff9dd27708ba637806309787284b
|
|
BLAKE2b-256 checksum How to use checksums |
c8375ecb3c5f9a792aab528d33587fa33f99861b2c79bb1c754624273a114baa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.3 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
20efa8a543403eb7bbbbab862ab469f712e6620ebb87a2bcc890fc8fadc78b65
|
|
BLAKE2b-256 checksum How to use checksums |
5f57a67ebe4005e4083a1a1f5f2bfcdfd2f7dbb8ef316310952248162dc9cfe1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl |
|---|---|
| Size | 457.4 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
21b6abc54234c6f2f35d60d105c2baa482cae8e22ce1b2358b67a87b72bc1500
|
|
BLAKE2b-256 checksum How to use checksums |
019073bb1e5304752f48d5d1313375d1b4fbc7521fad9dcad9dd611dd1992d39
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 529.6 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
7fe0009777c7acdb1faf400eea1b9e646e7d41bab8dbbd53ead5e39fc2f248e1
|
|
BLAKE2b-256 checksum How to use checksums |
2143b3d677c9ba5d6855ff7cbac647fc309f5d1b4aa22cbb9e40e50d22861342
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.2 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
993ceec031c4523ae433db96e1f28237dbb00bd9c04e14a6d568b1fae6762ed9
|
|
BLAKE2b-256 checksum How to use checksums |
9a7ec2aae337bccace2aef657cbefca922b0750d8fdaf4aeb85d428d0099d5ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.0 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
b2a9d517cec8a55ad0e15baace8ccffb6a9bf20a16f461cf732e009d808042d9
|
|
BLAKE2b-256 checksum How to use checksums |
8ffed75ff0dd5e470572c9ce8e884bcdbe7aae181bfefa7b17605f65ebae791b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 386.5 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1006968ec565cdd619a90a31e35d011b1afa5d96c515bd2b3016d44c29970c1e
|
|
BLAKE2b-256 checksum How to use checksums |
edefeef1fbaf428e1f59feb22a52baf88027c08ba2eaaf3031a4ead5fefbf5e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 262.4 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
5241b01b95ea8d3f8c76d8279a2b3a794a0027aa81640e0907bb682621f8bd0f
|
|
BLAKE2b-256 checksum How to use checksums |
1f2a47b4f527cec2fbb704ea6b1ea2201c2da49cb781c454a7d57f94a78e7261
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.6 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
118abead4e7c2900f66bcf2ed6ab18a6e28a76b123b8cb4c131388c73b4c82fd
|
|
BLAKE2b-256 checksum How to use checksums |
7babb3f8e6aa4386e1d256f4e7ce594fbebe0ea3d339174c5a71d155b0180505
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-win_amd64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 121.3 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
981fc27c50a4007e14c6a5c2e111708d3a7290b649ff87fddf4d906c175cbaa1
|
|
BLAKE2b-256 checksum How to use checksums |
8347476cb1f26ced4d3582570797c8f1b4487723b0e8d515a6dcb9bea13f28e6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
f49d3ad09acf755bf7b94491be321a9608f6b159617b5d8cb57231fef4d2762f
|
|
BLAKE2b-256 checksum How to use checksums |
e6a234b72766cb03b7053c6d638268801ee2d0b3fb50a51dffbe37db127f5c2e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 457.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
381f379b971bf5f27b6bce472727209c68011ed5014d6a44c9558909ed32f9dc
|
|
BLAKE2b-256 checksum How to use checksums |
46e748888a405061490f94654bc9e92172056ac01f3e80bfe1c9603b4a03f464
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 529.4 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
4916ae6922f9efda5acc27436ba887b493ece8c6b16a4c2d70f548018567beed
|
|
BLAKE2b-256 checksum How to use checksums |
207397dd3dd466d310de34fce761e4cc04555716b509549b20d6c7aa43ff8bb8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.1 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9ab847e3748e73134e5596d6757e0b3f9d99f0b43d3870eb250b77e5c4026b7d
|
|
BLAKE2b-256 checksum How to use checksums |
de151a6fe1a105b98d95eab8732c8b314bdc4ffc9017ff52339fe658e6d285a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 261.0 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
cb78ae01b70792f9952541b348549269737288bbf25df386d226b77058673a43
|
|
BLAKE2b-256 checksum How to use checksums |
3b576e3d25deabbdaaecebfb79b0ca4b560ddc5548aa369a631e7760590268d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.1 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
54da2f8b2779d38a6620796f799cfa5150cd2b5d37df255ed6a09ed701ea8f4a
|
|
BLAKE2b-256 checksum How to use checksums |
cd0927ff7b8d9ad2028f337311321cfcffff99213718e28aef1ba2094bd611d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 384.9 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
e819cc4611eea3b59df7d41e027598fd89592091657af02a1b6256b72235d320
|
|
BLAKE2b-256 checksum How to use checksums |
5bebfd119b834efe25e4d42bcf5e88a307bdcf323b2f09fed83052b31150d6c9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 262.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c5d7e3688ce1c75f1887c2b99d81f2ad6773969c9bb784b069070371f2e6d3e1
|
|
BLAKE2b-256 checksum How to use checksums |
e6c030f30a0671d254133ad2439c50816d548de8344af9dc9c53e159d64a3a1b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.5 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
8d94e141b35659d90174102650d5b8b0c04cb004c4fe584aeac0a3d5ee1dcb00
|
|
BLAKE2b-256 checksum How to use checksums |
46bfda61e6a3e2943e6a229dc63b97bc22931c96b7db8aa5c0529e77d8a86133
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 274.0 kB |
| Tags | CPython 3.13 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
0932ee4a5a7bf3edb0e87e92a184347d205dc7b2c632dd3405becf105c3de511
|
|
BLAKE2b-256 checksum How to use checksums |
2ff0ab062a19e0c3489bcbf8e378a5bed0aaad236cbaf84a8b1b158ca5b772f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 227.3 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a62d8dd87e04ebc5fd5114e927bb2b5e83ce888d48196d7ec15ce872d62313a5
|
|
BLAKE2b-256 checksum How to use checksums |
fa802b0dbba7cb82f9c1e7449cc148552c9d713b0e06eb1b138cff17a747fcd8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | tilesort-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 231.9 kB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
91cd46a29ab5e84640e087fb1a0827920c928992eeb553c0e478bd4393f2a9c4
|
|
BLAKE2b-256 checksum How to use checksums |
f99bf5c7385eca8f040d45ca3f8d96cd370d437989ddf2b9f6d4569ec9566d20
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-win_amd64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 121.6 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5a02f53e869024d268b7ab32c8b30355d74a595e42d88d2c01e21644aba659a5
|
|
BLAKE2b-256 checksum How to use checksums |
2783cb97b5e458cedfcd083a00134c02e8caff1c8508dcb9897a3b0a4c4b4ff0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.3 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
02f2179a98bf78a257c1d55871c7608dfa6ee62f69eab4a175ccde6c00c52519
|
|
BLAKE2b-256 checksum How to use checksums |
c80c643e4b0004fa9768d62b72a9afa1b24dfc45656e4ada77a40749cad2d9f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 457.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
8a3e0ba5ecd4e4c01ee58f5dfbf56caefbdfa20e9ef9b2c798bfce5d163d295b
|
|
BLAKE2b-256 checksum How to use checksums |
8bedc768cf7c94bc5f5c75fe71fd7f79b84b3dbfad2dacbc67e60e347dbc119f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 529.6 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
ee004ee77bba466139af7dfc0de9fb4537eb071d6bf1d3ae7fafe6b0aaaf0fce
|
|
BLAKE2b-256 checksum How to use checksums |
6d6cb8090fe2c21cb64d3cf91fca5859ce30ca0a61dff2a88a9b5c830458e310
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.0 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e9acdf7528197e16d53c519de52daa3416e5bb32589f1c2106672e32d33f5f1f
|
|
BLAKE2b-256 checksum How to use checksums |
429f9376b86330dcc3327dd31dfc018f6b387189d81f6edbfa9e2a5d016dd3d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 261.1 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
390671a7c15c800c0e511b9de33ec94baaf791ef295a2c80615b9e1d6d3ef20f
|
|
BLAKE2b-256 checksum How to use checksums |
dd053e23dfecaa3e24bddbd187c494591dc60c470ba7b9ff30806cc4cc9d2d73
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 281.9 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
09b8a5c0a2347a1a0175d087b2c1106a6091bc5cee855d4952e5a2422403cf48
|
|
BLAKE2b-256 checksum How to use checksums |
8461fda7fa1780defe54f7af6957c48a7c93385b89de87b51943b6a36c4b33aa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 385.0 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
3bcd9e14196575420483616c5488158e530aa1d1eae3f31418b341a635ddc278
|
|
BLAKE2b-256 checksum How to use checksums |
bd2a1ae3240d2a4b40e1e3b6aea8f6c89249c904e403219ec773b9e3692d22c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 262.5 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b2733ed9386986527db2174a61fbceadeddb0a2cbe6702225760783f0cba8fcf
|
|
BLAKE2b-256 checksum How to use checksums |
8398d03f01c355e095debb4fc2a0860dda32854f2167a8de9c50448b35ff1811
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.4 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
1efe0864026a9fe5ba20cc8b2c080d5702d708e99825836468782878ebe5df65
|
|
BLAKE2b-256 checksum How to use checksums |
39122f633a8a489424f585acbfba15b3ea47ac83bd6111919207023d2101c658
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 274.6 kB |
| Tags | CPython 3.12 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
6e9daf9f4d006f1f0bf01a8c178db9857e97294d96ccec7e583d07bc9336fbf5
|
|
BLAKE2b-256 checksum How to use checksums |
1065793ef386386a9d043725d310401af0242e052a244142e2e0730f0983bad8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 227.4 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
99885fffb4a681e73037ee15d8baa151b264ce72c2b61baa9d6447dc95f85538
|
|
BLAKE2b-256 checksum How to use checksums |
02d7df6c69d7e72c4b2e9af7bc054f3ef64b239fcc52becd0a59f62287721ee2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | tilesort-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 232.1 kB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
40c4c42f80492a39b69c7b74fb4398ea93ab5292f833a4ff9e08e804e3123658
|
|
BLAKE2b-256 checksum How to use checksums |
88b040d253471fe902c45afad8beb639c73fc4f8999b9b3e575df238d50520cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-win_amd64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 121.7 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cda614ece99d151d964a122e731a71eb8bcea195a3bcc39e7093fce275bcae5a
|
|
BLAKE2b-256 checksum How to use checksums |
ea9597d2a383e997efbc8f8112b94a626a88a5acace3c7360b4f1d16df99e382
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.6 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
f7cbcfa5753eb95e396b23caa2dc369a9b1c5211e097e42c8b7f1f71990902c6
|
|
BLAKE2b-256 checksum How to use checksums |
ec5ebe10475a484a76264a2b92975809b56875695359b7db28761084baea9b83
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 458.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
2f4ece6b7af4cd37a9a97e5ab482f2dbde4a2a52d74a0d306c1b19bcef0cf355
|
|
BLAKE2b-256 checksum How to use checksums |
36d00d642ab3e4e3d5b3e25bc13d564e11c45a70b2ef34fd9b2385cfb9411137
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 530.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
ee7710d9b16f6b09787f9b3b895c7519c19db5762f880f6b06c29969e6b59b0c
|
|
BLAKE2b-256 checksum How to use checksums |
7378e487c3ef0c830a6afc7542b527ff926ebbc456f9cda5240c006d3179908f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.4 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
0aba6462bb55aa540f7de1385d61f690ac1ac9db898a5a277b1d1c90d0fbf8ca
|
|
BLAKE2b-256 checksum How to use checksums |
b23677b299f2d0317ccd3947fd1e7847c365f0379bb2cbac442dd38c0dbe3423
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 261.5 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
2794efadf18c4d5da763f022c08ad83bb98ec607f381042913b802853b54c19c
|
|
BLAKE2b-256 checksum How to use checksums |
6a449bcd58543003c3246d0408858d40e86215def78f3ba36cd610360f0631c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
0649ed84f00102d7d869f6a1c5833fff8824f246fe7ddc4703370d36d6904725
|
|
BLAKE2b-256 checksum How to use checksums |
aad4126aa06c059dd0519c99705b71d995f3f609f96cd99851873ce8064dab70
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 385.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
9324eee3f5c9a59fa5d00e2853628bf9f653f190a693c59429a9c7a75a1f6cb0
|
|
BLAKE2b-256 checksum How to use checksums |
f04e5616a93a69217d886d78490c7d31c6df416e520d66ee7d7332e6f4784691
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 264.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
be11af2381725564ed6ce9ec69613257216cfeb0f8ac69ed04366b6458e2466b
|
|
BLAKE2b-256 checksum How to use checksums |
5f1c715e6a46343fce5812e4ba277d5d84b319de38b1d154f1a507f51bc19a54
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 255.9 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1370bb5b0ec05633c632352e923a23c9b565558c4c7cacff7c24c2d09106494
|
|
BLAKE2b-256 checksum How to use checksums |
87c0761a4337ce06d13c57a06916eaa7bb9c9f0129235e0d6bd98271ed53a40f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 276.2 kB |
| Tags | CPython 3.11 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
da5522e6488a61614c627b6ecdafde43cc9edfe40296109ab81af8d42466e959
|
|
BLAKE2b-256 checksum How to use checksums |
bef086b71b4633c96946fe6d97b8cc9efce184365c339303040db9d429c7b715
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 228.6 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
0e84bf3548864cc2339cea98d6f79af20d1d9c8e64196d24a5d1ded54d5448b5
|
|
BLAKE2b-256 checksum How to use checksums |
cc59138ab10d16ed02aabaefcee997dbb91db2eb8e93ffbb678082cfee2cfd07
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | tilesort-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 233.7 kB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
da7e0c4fca1bd3fbe73bccf7f544b948a8f5120e54df214146184f7cf898718d
|
|
BLAKE2b-256 checksum How to use checksums |
d6ef948ee90002bf829f73b2c00cd1eb416208521d16ec24b76031f0eb3abadc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-win_amd64.whl
| Download URL | tilesort-0.2.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 121.6 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cb8d1591651bb158d2ee921b36e9730adb393a732f6a90458e5bd6179bce932d
|
|
BLAKE2b-256 checksum How to use checksums |
977116813b9d4b08dc08e164db55d07b46adcd09ca55c521cb139baa0991e955
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 428.7 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
7972450d0e413f1ef7aa043c856d14338c4b6ab9806342aeef7655d6d7055bd0
|
|
BLAKE2b-256 checksum How to use checksums |
eceedfa8c9148350c3f9e7a07c7caca1a56e6f9201a603ac9a72bf92d2c967f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 458.8 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
c19e868f1cfbd0e5f8cfa586a53c42d54762804df92ff8acdfbbac2e71950637
|
|
BLAKE2b-256 checksum How to use checksums |
564b1a3425109a9705393e423bef927fd1090b907c80afcd31584eac5035f582
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 531.0 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
4c03775f6d9119faccb7bc1bf73bd3a216ec34d6b54f6cb78a6bdd2201acfb51
|
|
BLAKE2b-256 checksum How to use checksums |
ecd70a57b61b1dc4b1dd5b6248758aebeea98cf77e3951b86b2708b2c30f2115
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.4 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a264946334d7f8090444ed92c2bd540928f7365e5e6ef7922dd825c1a18ba0e8
|
|
BLAKE2b-256 checksum How to use checksums |
b3dd728f80bddeb66d1a23404eca875faa3684459d8d5299826be9aaad386845
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 261.6 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
139c13adbaa30a15cb11ec287eac86d4bf4409663a7f2746a536925457add1f7
|
|
BLAKE2b-256 checksum How to use checksums |
2f067fb5a7a85ab322b14d0632b8bbe65b59b56ca0295714eee45ea1f2352bda
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.2 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
ce494e0d19fa0c5e20f6d27a3777cc9d7e38cbfe92719b93d116d1aaa68eea8c
|
|
BLAKE2b-256 checksum How to use checksums |
ceed95e7254a8d5c25e6e2cb457f6a258ea167d1d0f31d8d05e9dad5d1232208
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 385.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
b0639d3d2df65b2da72f944b24295d7fabb2901010a80dc5a364b956ed5a68d6
|
|
BLAKE2b-256 checksum How to use checksums |
6b9367067e99b19cb61a96b8af1639ab17fc60ed004f7cd369b9c28928c7a61b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 264.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b13ac5575db26c567dcbaa3cc7c1f968bdd408cf0db8631d6133b9477874f346
|
|
BLAKE2b-256 checksum How to use checksums |
51c914aab139904ccc83314d2424918a9de465de4e38dce44e4d3a2c8b6935bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.0 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
6681232ce7a716878dd3bbbe7f303d0258443691feae466da9a004323b92c3fa
|
|
BLAKE2b-256 checksum How to use checksums |
6b093290234669214d19da6d5cbf15b25c7b10c641c25bdbdfa9e3fac8604324
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 276.1 kB |
| Tags | CPython 3.10 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
d810963617102b49c6457fac5e794a933f48e28c939ae86e2e77f9a8b3c48d4f
|
|
BLAKE2b-256 checksum How to use checksums |
f5a9f5c7bb416aa36abf4c82453917eeb602368b851f69034e1173f4cf44510d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-win_amd64.whl
| Download URL | tilesort-0.2.0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 121.5 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
28307d588e1b73c89a6819a1a2f0d3a62d70705510d23e375f8a8e18a81b4353
|
|
BLAKE2b-256 checksum How to use checksums |
7c82dd1f7c48e2f1cc1400274672fa18f52d13610b79ec08176127e04451d189
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 429.0 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ab8ed7366304a1208dfb762a120ea057238748c77e3df0d147691e79bb996a56
|
|
BLAKE2b-256 checksum How to use checksums |
ffdf824742c1f421bade657e74a05a3b5820afccf341adbd5fd49942c4bdaf59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 458.6 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
ec05560a3b5ae0ed8b943859dbe01eed0f22c855eaec4a04785dc613e45343b2
|
|
BLAKE2b-256 checksum How to use checksums |
3e9ca1382b91d770f766c49fc69885d356bbf647e1a81b3cb6abe2487a4178f9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 530.6 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
3b45ea8bac06867fa6c9c6efc731dbdee3858faf9a7691704b1692a0114c68f2
|
|
BLAKE2b-256 checksum How to use checksums |
c0d08e0d6786d1d96aa10ee6fa92166688e3ea349bc24fae5f1ed552f41d6d5b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.7 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
1c6ffdef05b2df04a9f0fa7c8046a54ef76e5a3c37af1c03d31a17cd0bdbb839
|
|
BLAKE2b-256 checksum How to use checksums |
788b2266746aa6eed7ed4be71f24a9be9d11c77c7e4c20ac40a2ed80045d16e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 262.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
c55a69c079fdca4397d7b50dc10f69c59f305a3f2e3468b958119b905044c16f
|
|
BLAKE2b-256 checksum How to use checksums |
774d2f6a13951629f80ad91ccc9af510ba2f91c12ecdf4796b5e1629465bd1bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.6 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
bdb4617d402a1030ff4e04e55f2df4e50b3a13af0c2f3b2d2fb30bee334e8232
|
|
BLAKE2b-256 checksum How to use checksums |
439376ec0f80d2ffb9e818c19112d34c2d1599150621ee8f50c71a69f5db7a74
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 382.9 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
83d4709b0115c271f0ec079dff89d6e748e5baa4cacf91e69dc71b26ee77a4b1
|
|
BLAKE2b-256 checksum How to use checksums |
0e7354af6eb768c85f4a0c91ed43b029624297ff960b92217a7ec3de6cca6e1a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 263.9 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
558c311f3dc6acca2180d8d6e1f5bbe4d98a80f28ed9769847e3743195fe3854
|
|
BLAKE2b-256 checksum How to use checksums |
a93573b3b7198855e72b05ced1e925fad4ac1605f3a278a6b374e9ce0516706e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
46b49a4bbbf80091acd2632ce145b8ba631d43c733778fdb17d1715d126affcf
|
|
BLAKE2b-256 checksum How to use checksums |
3638d1bd2044c3e12dffde96a6eb2916d8cc927030c8d91bfdb8774015a851ae
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 275.7 kB |
| Tags | CPython 3.9 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f73e4d10fb38f12ae5c2f42433a4fb960bf36055a1e32de192456abc4b2fcbe0
|
|
BLAKE2b-256 checksum How to use checksums |
2d739af91d6981c815caa7ca7daf28c354ee094ff6e6ae5317ba37f7d0c28e6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | tilesort-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 429.0 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
857ab5b7d763ed0e80e9d842bc2c88dbe1ecc6134e3d7cf26055acb9eeefbd72
|
|
BLAKE2b-256 checksum How to use checksums |
4d03f0d943ec6ee18a67148a7ba66368f4507b031c67f8d4eb9c484cea515c47
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | tilesort-0.2.0-cp38-cp38-musllinux_1_2_i686.whl |
|---|---|
| Size | 458.0 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
b21a1b94edbf4c6ba14d8760c7f1bfe1e8117fccbebd05aec6d6f8490b4c2d94
|
|
BLAKE2b-256 checksum How to use checksums |
d2eb5eb002077fe711775ce90673e22e68dd66b515fea581fcfa59562e9cf303
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
| Download URL | tilesort-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 530.6 kB |
| Tags | CPython 3.8 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
9e7097b517045585cd600b078363afd2b29cb606bd8a8c04a85dd747c483e3c2
|
|
BLAKE2b-256 checksum How to use checksums |
a00329eb9fd4de81dd5e2580dd8e6d43e28e1348eaaf65944eb19a6a4f8f6d3e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | tilesort-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 437.8 kB |
| Tags | CPython 3.8 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a55e9c3ac7ce32009e4ec189bdda72a0b592790d72a69cbe3b6bd368f242d031
|
|
BLAKE2b-256 checksum How to use checksums |
81982cbd7a596cc7a7a4493eddcb4623c43a1e7b07f59e01c0e6ffdd2d526093
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 262.2 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
1482fe1ab868196daf84c29c143a1009f2d56f0aabfe321293896db02ba29f71
|
|
BLAKE2b-256 checksum How to use checksums |
27b2f72fb498998dbdbb7f38c49eb7e192157c95c1d2a8651dfff99093045e5c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 282.4 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
38f2266da86d5e99b320992d6a01067ab8c969d4525c251f0cdebe8705d19b82
|
|
BLAKE2b-256 checksum How to use checksums |
94890245c8fdce28f3935918df94a4d3582610225cbe5aae904f764def5f8608
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 383.8 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
f1799698f970251adc32fe3333651cbd7f4ac13f7d8744b7808a4bc490559973
|
|
BLAKE2b-256 checksum How to use checksums |
52a195bb5667a0b01f215373f0d4af2af2a1f4d6480e83a2f048e6571693e3d7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 263.8 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
7e77a3f82f6da8c2b9f046bc0a7b202043f2360f8db521ac177d7e99706ad8cd
|
|
BLAKE2b-256 checksum How to use checksums |
3c802274ad897a90df4e3336b299d3a137089c3526a1b6c58e0719dc174da570
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
c18f4354254333bc67b005b21d460f1dbc187f9d8dc0cb84a412d2ba82a7815e
|
|
BLAKE2b-256 checksum How to use checksums |
72ca78fd0c9c78280417ce8d31e41c5e2e5cec6a6298e336a29e5a9d43013fc0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|
Release files / tilesort-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | tilesort-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 275.0 kB |
| Tags | CPython 3.8 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
112a041f643504def4c3b77e1faa45dd986fddd1623883d9d1dc27cafc500e30
|
|
BLAKE2b-256 checksum How to use checksums |
711ad2b66142d585130a1a011f251863ddc9d791fe8e8ac6bafff435922ea1be
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.10.1
|