A Rust implementation of the Polylabel algorithm for finding optimum polygon label positions, with Python binding.
Project description
Pylylabel
A Rust implementation of the Polylabel algorithm.
This is a fork of polylabel-rs. Pylylabel's polylabel
function also
returns the distance from the label position to the polygon. Python binding is provided using PyO3.
The orange dot is the polygon centroid. The teal dot is the ideal label position. Red boxes show the search space.
How to Use
extern crate pylylabel;
use pylylabel::polylabel;
extern crate geo;
use geo::{Point, Polygon};
let coords = vec![
(0.0, 0.0),
(4.0, 0.0),
(4.0, 1.0),
(1.0, 1.0),
(1.0, 4.0),
(0.0, 4.0),
(0.0, 0.0)
];
let poly = Polygon::new(coords.into(), vec![]);
let label_pos, distance = polylabel(&poly, &0.10);
// Point(0.5625, 0.5625), 0.5625
from pylylabel import polylabel
from shapely.geometry import Polygon
exterior = [
[0.0, 0.0],
[4.0, 0.0],
[4.0, 1.0],
[1.0, 1.0],
[1.0, 4.0],
[0.0, 4.0],
[0.0, 0.0]
]
pol = Polygon(exterior)
x, y, distance = polylabel(pol, tolerance=0.1)
# 0.5625, 0.5625, 0.5625
Documentation
Performance vs Accuracy
Using a 4-core 2.3 GHz Intel Core i5, finding a label position on a ~9k-vertex polygon (representing the Norwegian mainland) using a tolerance of 1.0
takes around 9 ms. Depending upon the dimensions of your polygon(s), you may require a higher tolerance (i.e. a smaller number). See here for some guidance on the accuracy provided by each decimal place.
Build
Requirements:
- Python 3.5+
- Rust stable
- maturin
maturin build --release
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file pylylabel-4.0.0.tar.gz
.
File metadata
- Download URL: pylylabel-4.0.0.tar.gz
- Upload date:
- Size: 317.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d09874cc56ef8c3136563f6de0131f5716bc14b20400e85537db62ea0260c6b |
|
MD5 | 33c418a28a79be86c49c09eeea77b19d |
|
BLAKE2b-256 | 76d2130b1831e1b604063cc69c0bee7e06a27e98f50cfa1c4e9d6fa2cf69f58b |
File details
Details for the file pylylabel-4.0.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 953.5 kB
- Tags: PyPy, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78043796c1ae9283c079132b7c1489d16992ec007ef585c525ef4d0a3e0d1c42 |
|
MD5 | ce7a65435ba7eff6ae41f5b6295b2dc8 |
|
BLAKE2b-256 | eb2ae8b05a5ec940af906707e7c65ce5943c3cda226834bbd6b878ba3c4a5b6b |
File details
Details for the file pylylabel-4.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d95eec3046e1af9ec5f7c26b073ca6480ab53554296402c6a368cb233a4c34e |
|
MD5 | 059e6d2e6d82a6fa4f7ce6c8b8050995 |
|
BLAKE2b-256 | 37b20a0a0e8bba59e710c021ed97c5ae094026c1df385ccec7285ec74c2e1df7 |
File details
Details for the file pylylabel-4.0.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 118.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8eb95218b8f66ccc16cb43c034a2de93907effd450efa0de88e43608d18b7998 |
|
MD5 | 191e758113341d69f875505d6c0222dd |
|
BLAKE2b-256 | 093ddf4b88e156c9dcbd5cb8d848a7bb055ec9dfd7cc6754f599288646faa328 |
File details
Details for the file pylylabel-4.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 953.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9c8292da49571b422c84086c5a33c8618181f9cf5d27390c99707946cac2d04 |
|
MD5 | 05ef3132f40e3e77efe50c08e1d2d97f |
|
BLAKE2b-256 | 4cefde61f2821ac262e83eddf627bec8136e5c5ca2c69fe85d136e2f21051bb1 |
File details
Details for the file pylylabel-4.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8e9e5e0385202084b8d94b98df5bfbce2d192d6a37ae40d23738b2c4157d594 |
|
MD5 | 66bcdd3f4ff3b41ed6d7f31e2f865fea |
|
BLAKE2b-256 | 03dabdccc37aaab35eb217b170f5d0087214d3e2a070b8c028f88d9a8552b3ec |
File details
Details for the file pylylabel-4.0.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 430.7 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98cfc4a7a73efc2e6fe302b767f5a33c8c5b1d14c3fd539313a4d238c253405a |
|
MD5 | 45cc0a2d8e1d3c335103ab5356976c00 |
|
BLAKE2b-256 | 3471794c39e06f4ca430a2afe01444470c15c2ab7becbb88ac56f16bd0a83c70 |
File details
Details for the file pylylabel-4.0.0-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 221.3 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 067c7f9d397d6f85a5732882caab6ab91e635b4e2980514c6e1017cfd9e3781b |
|
MD5 | 5854df6cdf988e8a3c410c29f5ea4551 |
|
BLAKE2b-256 | f1345f74acd1173e2a508bd139a8e9b9f0343368a355c950c56adc97af18f85f |
File details
Details for the file pylylabel-4.0.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 118.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d7a5378c3b2152736acdf7aee7a90a9c981b888a3f7300e878b1d185677fdca |
|
MD5 | 0de9bd493c0a5f31cbd238a8d3b050b3 |
|
BLAKE2b-256 | 5a6bfffeb72c002fefdf39ce214c14e24be5d6769ded83adf2e99732c3494a48 |
File details
Details for the file pylylabel-4.0.0-cp39-none-win32.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-none-win32.whl
- Upload date:
- Size: 114.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d81247faf4614845029c9e6ec82db8faa8b14c6ab11891ab60e9015730a6f6f9 |
|
MD5 | d18461c1f79ca176474108407a62f203 |
|
BLAKE2b-256 | 0c5b9059f36a722553c92f16bd3f361c1861e16cf63a7bb04a9a7cb2e171281b |
File details
Details for the file pylylabel-4.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 953.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2322084a960c892c7f6338efca715746f4b7895968b56ebf7230be1e8ad7f20 |
|
MD5 | d7dcb425aceb4f7fc7228ddbe30d2005 |
|
BLAKE2b-256 | 6b81877eaa18193f6b6d4d2716e070fb83ac3c5eac8fe59de0b596036bf4ab23 |
File details
Details for the file pylylabel-4.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 366892b333bb73cf4b305c5d07161e060bc8ec95e09b0147a7a1e5521577e28e |
|
MD5 | 7ed2f63024a2f68b80cbb2bae65ca633 |
|
BLAKE2b-256 | 36145c6b461330953c58f83471c5a19a056edb23e6335b982c5e1fd9499fdd8d |
File details
Details for the file pylylabel-4.0.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 430.8 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 295c0f482f7ba90e20b5eb3f1a072a3cfcb6d9ce3c2752cc03ea4da23f85b190 |
|
MD5 | 1586a86e4c18e90e1d9d0f6eb2e961f9 |
|
BLAKE2b-256 | 2e7f7a8d5ae9e369f6c8f3cd367e186041243b59b1fed27df2c6ffc74030c3d5 |
File details
Details for the file pylylabel-4.0.0-cp39-cp39-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp39-cp39-macosx_10_7_x86_64.whl
- Upload date:
- Size: 221.3 kB
- Tags: CPython 3.9, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b728bee8baac1124824e3c74218b259b50b3d26d16f32dc7860ce19c9170cff3 |
|
MD5 | 7f9cae300be2448a168e2bbaf5faeff9 |
|
BLAKE2b-256 | 54351700b1aafc3b7772c5c39a3cc47792f89f1e116cf3d07ab5d1e5b1a2a045 |
File details
Details for the file pylylabel-4.0.0-cp38-none-win_amd64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 118.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee5ae9f69e28f63d67139eb21ec77f267d0d38609a13d3c2fe61d97d3bc2058a |
|
MD5 | ef986caacda8cc61a8cdaf83d1ce9925 |
|
BLAKE2b-256 | f370c864e4eb666cf291d2f1b50ce33847545bd2cc4269f9d37323ff3a39a177 |
File details
Details for the file pylylabel-4.0.0-cp38-none-win32.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-none-win32.whl
- Upload date:
- Size: 114.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b8352f88aebc1435299d259022f0d33a36702a97d403adb35f501839cde31fc |
|
MD5 | cd2dd7dcb8ebb295495a662edb2a40f6 |
|
BLAKE2b-256 | ff90b9832f56fb6570665bed058d6a3133bda77e8a90e1c3a171253822b570f7 |
File details
Details for the file pylylabel-4.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 953.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19d8ef1819debaa64083db34ed333f1a1bad886c8d1eb08d048968043f268e21 |
|
MD5 | 6745157565d10f383ec7d780dc5f9e17 |
|
BLAKE2b-256 | bd0a0821008fd796d16ba4cf24fd65f827c84b50118590edee3215931b166adc |
File details
Details for the file pylylabel-4.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f11222ac5c47f496b0be063c3894db24d9fc5aaa6b23c6c49a6f7e6cd0863be |
|
MD5 | 374b33143c42ad44a327d1ca77136258 |
|
BLAKE2b-256 | 2bb634942bb163003c1bb9c5b38949cd0e8601b52c6b67af07c4ddc1fb9818e9 |
File details
Details for the file pylylabel-4.0.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 431.1 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94b4a355d1742a2c7d9c0cd1b0e169f8d7ce9b076f187e3aa8db509d19ddd434 |
|
MD5 | d271d5106141fda19015c65ce525e757 |
|
BLAKE2b-256 | 8355affdee6e2e663ca7ed661fe2a06618d47b97631f96e0f2c9e88739c1ecc3 |
File details
Details for the file pylylabel-4.0.0-cp38-cp38-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp38-cp38-macosx_10_7_x86_64.whl
- Upload date:
- Size: 221.6 kB
- Tags: CPython 3.8, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a8fa5803b7216aabd293b5f5f87d023aa5b0719687613a719747337b6bbdf23 |
|
MD5 | 1396535adc268fe9c5b90701c48cec3f |
|
BLAKE2b-256 | 22940e42362d2dd3de169c2f189be8e7e6dcd0538565ffd6eab2c683dd26cb59 |
File details
Details for the file pylylabel-4.0.0-cp37-none-win_amd64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp37-none-win_amd64.whl
- Upload date:
- Size: 118.7 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18122bac9e14733720bc43042cad32e758fc394817b192793efbd82736dd1982 |
|
MD5 | 38706b213a866631bd5fd921f6d68c6e |
|
BLAKE2b-256 | e1f16cb12ddfcce752c37348767cf5c73fe496424c0a3caac79e21e1cbbe8331 |
File details
Details for the file pylylabel-4.0.0-cp37-none-win32.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp37-none-win32.whl
- Upload date:
- Size: 115.0 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 563b72750e4882c56adf4fb1ed93e2625e95e49071b3f5b4950884f352bcf4d5 |
|
MD5 | be52f45167b99750aefcea0cd2386159 |
|
BLAKE2b-256 | 8326ab0f5e034a6e12d195a54534fddec70af8b7ed876132bd243d916ed66f42 |
File details
Details for the file pylylabel-4.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 952.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ba6206543c2642857b896af47f8226e3f4a6bdd52f103b2bac271ccc425ddfb |
|
MD5 | e4805158e9139c4f183c8732c792e96b |
|
BLAKE2b-256 | d9c51f701dd783da8b70196b376acc3c3f501e39576892a2de3edff934d286e1 |
File details
Details for the file pylylabel-4.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 223fe1d656da16c161a74dd7a67e1b4a8b654b11a8bbd4d4e1a55ff7e14bda42 |
|
MD5 | dbbb2b3ab02a1808e37ef40c48b094d9 |
|
BLAKE2b-256 | aefe2f4a72161e0d8cc5a1b4ad4b5f6e80b68aa9fa6b091f497b007fcded2c18 |
File details
Details for the file pylylabel-4.0.0-cp36-none-win_amd64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp36-none-win_amd64.whl
- Upload date:
- Size: 119.0 kB
- Tags: CPython 3.6, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10d85d9c9adf767e50c153bfb4820e283ce659250371f7c9d35775d4cb8cfdc1 |
|
MD5 | cd8d8f746656429e5aed3962200be8d1 |
|
BLAKE2b-256 | 004d4d5bdd06b3169ad1faf406af783ec24a504a5b3ff6c6302891bb06b4351d |
File details
Details for the file pylylabel-4.0.0-cp36-none-win32.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp36-none-win32.whl
- Upload date:
- Size: 114.9 kB
- Tags: CPython 3.6, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d53698a4eb97aa4afc3c23bf4d2806bc2535ac5208705e5a8b2c7fa9935a7e56 |
|
MD5 | 6c7ab4bcc64b71e029db90b46e07a9ca |
|
BLAKE2b-256 | 71f5d544c2916bf9482f5ef878ad2bc5c32ceea9933671f6e9fed9dff144c854 |
File details
Details for the file pylylabel-4.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 953.1 kB
- Tags: CPython 3.6m, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 249ef579c94f7e10f4b0f70ed63968ded1800e70898a3efd7f15c21abb928cdc |
|
MD5 | 9b7a043d9f717c37194019069db8dc6d |
|
BLAKE2b-256 | 5a98c99b0520e0e4ee594862d2dad3a7dff06cd6a515a9911474b7211780dab4 |
File details
Details for the file pylylabel-4.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pylylabel-4.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.3 kB
- Tags: CPython 3.6m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74671667c7c216bcfabd1100ab9fba993c4ca2e431b01df279abe309ea3f5371 |
|
MD5 | 8564345f3751481b3707eba95e44038b |
|
BLAKE2b-256 | e86bfa0eb69ffb9716e3618d99cb7c1b394f8d53173b3f387d554239b878702f |