No project description provided
Project description
skymask-py
Compute piecewise analytical solutions of skymask for given polyhedra.
Provides efficient algorithms, parallel computing, and sampling methods.
Python binding of rust crate skymask-rs.
Benchmark
Runs on 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz (8 Physical Cores / 16 Logical Threads) and NVIDIA GeForce RTX 3070 Laptop GPU. The benchmark code is available at benchmark.py.
| Method | Fps | Time Complexity |
|---|---|---|
Parallel sampling: World.par_samples |
1648.87 | $O((k \cdot n \log n + m) \cdot \log r)$ |
Sequential sampling: SkymaskMap.samples |
176.05 | $O((k \cdot n \log n + m) \cdot \log r)$ |
| Naive approach with Cupy | 63.40 | $O(m \cdot n)$ |
| Naive approach with Numpy | 5.44 | $O(m \cdot n)$ |
Where $n$ represents the number of line segments, and $k$ denotes the average number of segments each line overlaps with in the analytical result. $r$ denotes the number of segments in the analytical result, and $m$ refers to the number of discrete sample points taken from the skymask.
Install
Precompiled wheels at https://github.com/HellOwhatAs/skymask-py/releases.
Example
import skymask_py
import numpy as np
import matplotlib.pyplot as plt
lines = np.array([
# xa, ya, za, xb, yb, zb
[ 1.0, 1.0, 1.0, -1.0, 1.0, 1.0],
[-1.0, 1.0, 1.0, -1.0, -1.0, 1.0],
[-1.0, -1.0, 1.0, 1.0, -1.0, 1.0],
[ 1.0, -1.0, 1.0, 1.0, 1.0, 1.0],
])
world = skymask_py.World.from_lines(lines, np.inf)
for pos in [(0, 0), (0.5, 0)]:
skymask = world.skymask(pos)
print(f"\nskymask at {pos}")
print("\n".join(
f"pi/2-atan({a}*cos(t) + {b}*sin(t)) if t in [{s}, {e})"
for (s, e), (a, b) in skymask.segments()
))
fig, ax = plt.subplots(subplot_kw={"projection": "polar"})
ax.set_title(f"skymask at {pos}")
ax.yaxis.set_major_formatter("")
x = np.linspace(-np.pi, np.pi, num=500, endpoint=True)
x[-1] = x[0]
y = np.pi / 2 - skymask.samples(x)
ax.plot(x, y)
ax.fill_between(x, y, np.pi / 2, alpha=0.2)
ax.set_ylim(0, np.pi / 2)
plt.show()
Outputs
skymask at (0, 0)
pi/2-atan(-1.0*cos(t) + -0.0*sin(t)) if t in [-3.141592653589793, -2.356194490192345)
pi/2-atan(-0.0*cos(t) + -1.0*sin(t)) if t in [-2.356194490192345, -0.7853981633974483)
pi/2-atan(1.0*cos(t) + -0.0*sin(t)) if t in [-0.7853981633974483, 0.7853981633974483)
pi/2-atan(-0.0*cos(t) + 1.0*sin(t)) if t in [0.7853981633974483, 2.356194490192345)
pi/2-atan(-1.0*cos(t) + -0.0*sin(t)) if t in [2.356194490192345, 3.141592653589793)
skymask at (0.5, 0)
pi/2-atan(-0.6666666666666666*cos(t) + -0.0*sin(t)) if t in [-3.141592653589793, -2.5535900500422257)
pi/2-atan(-0.0*cos(t) + -1.0*sin(t)) if t in [-2.5535900500422257, -1.1071487177940904)
pi/2-atan(2.0*cos(t) + -0.0*sin(t)) if t in [-1.1071487177940904, 1.1071487177940904)
pi/2-atan(-0.0*cos(t) + 1.0*sin(t)) if t in [1.1071487177940904, 2.5535900500422257)
pi/2-atan(-0.6666666666666666*cos(t) + -0.0*sin(t)) if t in [2.5535900500422257, 3.141592653589793)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skymask_py-0.1.0.tar.gz.
File metadata
- Download URL: skymask_py-0.1.0.tar.gz
- Upload date:
- Size: 50.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47cc02262bfe954b6e97a375a478a727b9035f642a47a3c1252cf783262c1bcb
|
|
| MD5 |
301843912639ac554eb48e0d13811487
|
|
| BLAKE2b-256 |
19f62876e84f814024a10dcf141ab6fc5bb7871f9f07bd20e8e23bc2c3688a2b
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 308.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34c9600f03d166c28138fbc2456ad3a9466eebd6c3388bdb4daca551dfb63635
|
|
| MD5 |
210d967c16d7b2fb38d8aea45dd725b6
|
|
| BLAKE2b-256 |
149dd324ea5cb3a5a64f31b1d03127f048cef4130f385ec11cac7322365f7ccf
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 290.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63d0e2471e6b3ce9ad9661ccd7e5b09506e5e68b9025574c0beb361fbeaa2a21
|
|
| MD5 |
3dd2499c98721f403dbffc6b177954b5
|
|
| BLAKE2b-256 |
2cacaec3d8a92e5ea7e60992ea83df054afad57ef4ad4afc2d5fb1c25749b24c
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 640.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a429ed7cd76cac19199ea9df4c519179ca278ccfe2b8b841ad602fd01147e4c8
|
|
| MD5 |
6b6a0d34e91dc7a7e5b864c718309c54
|
|
| BLAKE2b-256 |
5e23404dd01f91ee6d42ed8eddcc39773192db787bd6a44ba44cd0c45bd92c5e
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 669.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff4f0ec85182fb22266340f026d76590a2b2804cef649a32f8de511a1bfc54f5
|
|
| MD5 |
86b14886e64c3f1e23ec916e6514d6a5
|
|
| BLAKE2b-256 |
de749af8a60bcaa55cb24dab16bcf938f890346b3a14ebb600a688270c066bd0
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 731.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f7c51489bed2bb522b65f6a7fd066b73b8dc5190c16186bf3c1a91a99c5547c
|
|
| MD5 |
818da68988d2ce7340747e321fdc31a6
|
|
| BLAKE2b-256 |
1f8b1c7868f6f1c342ee86a858b5c809deba871340ce358c9e7c2d726d8ee950
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 638.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a54dc553ed366779130cd6bb026a4b516bd8271404b2c9d9f7d23ed25d94a3e7
|
|
| MD5 |
fc3c7b4796b027317bf7fa7bc6b104fb
|
|
| BLAKE2b-256 |
7d05b823e75c77f78b16f4f590327df74174598c89139e6ac3830e5009453eb5
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 479.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c725bcc66fa33c916f8dae8112ad12efb89fed3cca0cadc950db501292e8385f
|
|
| MD5 |
23c4d9f1f9553439e0e31f95bf175444
|
|
| BLAKE2b-256 |
f0b8e77fa9b6870f4289ff3f0471cc72c78d1b73b437c9f30e67f796ccbb38b5
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 548.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba4e781d7cb5bf84aba4a66816668e7820eedd4ec5871157830b25820b14d47
|
|
| MD5 |
d4d5eb07dc106d2eab767a108228edc5
|
|
| BLAKE2b-256 |
ac6349cd3c491c25b728ad1cfcf26f7ff346dd760cb894982e313eb0de0c4d0e
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 542.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04c581d5cec0af851faa23c6891171df7ef314c01811b295ddf004f587c73e0e
|
|
| MD5 |
af7efcd358dec25534629052457b669b
|
|
| BLAKE2b-256 |
742a0a078fd4d872d26774ea46e81495ba40475fc8540f7892c1a8907355d2e5
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 506.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60ae84d12cd7dc93f107ce363c0b7a8e78094c58c7a561d70e4d2188aa393397
|
|
| MD5 |
a3ba21131e06c3840c313d148b073746
|
|
| BLAKE2b-256 |
d3c08ff9ea0c27d5a131e7cc63aa8b41bcf559dd5afb94b9041c26c558e7da6b
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 477.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38e461226ad54e87eca901bba7ae5d84ae8c575aeacb0410c28adb2973dfc308
|
|
| MD5 |
e12a32a193827beff20c9b641c92fb14
|
|
| BLAKE2b-256 |
97343b8616c83dfceb5534830c6bbd7703800e14d1a551932cb1819640f1d996
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 471.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f57471f7bf00b678b691b9047a4062a3b03f82beaccf633585799f900eb60d28
|
|
| MD5 |
e6be506e4bcd259b421d40311edbc1da
|
|
| BLAKE2b-256 |
77995f32df48e578244b44b70e818880264b762f41266ae126607ec5974a8c75
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 419.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890581b51a7b5680bfc120d42d0a1ef25eb963a07d43f168c2068c933dbd87f1
|
|
| MD5 |
1651052a4c518833c17d99e8e4061382
|
|
| BLAKE2b-256 |
51999d8e24cff420d76f0450948ea40e3841477bd1ab438fb7f2a0f54d1a1a7b
|
File details
Details for the file skymask_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e2ea3d65b2e46d04200c157f1a69561cf812c2bd783eddc451697bf45451efb
|
|
| MD5 |
4ea6c4558c2b587032ab0ce465f7cc8b
|
|
| BLAKE2b-256 |
8db6dc08e8ac59fe126508b33fbba1328541b7f4e64727d161fde996376df42b
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 308.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1621a4000a61dd89275fb9f751f385f9870cb816848af55ed0519631d0b1e99
|
|
| MD5 |
dd281d65fc9b127ddf20d4b72be91df0
|
|
| BLAKE2b-256 |
00be07ef061fd2c95597dccff65eae5f29764d3914ec28e50bd8cf71090cea77
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 290.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6488cb79f7cf275984a82129470493dfdc7cd5a081df6ce2f3536102b8cac307
|
|
| MD5 |
eb13a2be6e6f9bf91c4550ef10a9aafa
|
|
| BLAKE2b-256 |
157feef830bb81c288c110a35d48b516407e7a0222547273d837f7f5c65d0463
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 640.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12d74b1cb92f54dc3a9f7181c7b0327fee9baf965b2aa0a6713ace446ec61d10
|
|
| MD5 |
8384cdbe1d2225db8924a13c6a3785d4
|
|
| BLAKE2b-256 |
f745e20cf78a9ac096d3b45a48fa6ab9845357a89e988669a5a167253be88855
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 669.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24199d3f521f281c1d2de1405710c315e07e0e02ce474c87a6d680346cfdbac8
|
|
| MD5 |
1cdf2b6879f5ac42c735de6e072d15a8
|
|
| BLAKE2b-256 |
2b72c0ea363894bbddad83ce7cb29f13cfc90f437027fd8a96e4150391e01e06
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 731.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82b17a7ab93f45168162828d921e781c846294ab3c3d566a20699937ed5d7623
|
|
| MD5 |
4583300105f208e40dffb1dbe42d1917
|
|
| BLAKE2b-256 |
24c7e755e522030d0fc4f4d12f6f5e1991f18e2da1ed6ebb4358383d23013048
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 638.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13fae07183b36a983d823d46972a6ec0fb1f93b2768705fe2a5885c52adf9011
|
|
| MD5 |
0360ab99e6c34b5969a809208bad691c
|
|
| BLAKE2b-256 |
3c7d104b1f10e4d036dff4f234e5d0372d29ce7c3ed655178a179fa81391a67c
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 478.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01548e693ae54e2325fcba036b14cfca1a1ec697f7dc57d9082200099e02ea8d
|
|
| MD5 |
84ac8ff7ed417e93bc2591830f02e9d0
|
|
| BLAKE2b-256 |
9576cba524965666951f4be02fa6c064b24d02d07c047514ae3ac3aa4db6b01e
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 548.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
838691e6f8a0b280e92a67404a5b63083679c80ff88330a49739b8e3e0f9544b
|
|
| MD5 |
7270c4eb35f67d618c0dfdb86f9bf392
|
|
| BLAKE2b-256 |
151adab99256b97e77783fea4967ac6fc45bf2268e60b6ebf2a55b2fb8c15b03
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 542.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e29c97ccba2d56e28b6e96ddbec77f50c554438aeed5e668a0d8edd0df59796
|
|
| MD5 |
dbf1a7cb43d1569ddd32a7e631bba90c
|
|
| BLAKE2b-256 |
f3f5e0aa1d780a59117f818914a59bdfc9d5dd346c1477567251c0bb5cc6a7a5
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 507.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22e56a1b9b3a2370738fd9167c56bc2ecb73ec745f75f8d691f8d6f0ac43a27b
|
|
| MD5 |
3d4706862827ce38736449a8bda25340
|
|
| BLAKE2b-256 |
dfa4efdfff0beaa40fb75718d298232a3016001d564a6de3b855788397e188a3
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 478.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13672c826f11ba1b369e6b4674084c175bc026959dfbe892aed8655bdbd3e9f4
|
|
| MD5 |
2aa68f7326672ba747813eec8ed30630
|
|
| BLAKE2b-256 |
a48fde8d53aba097820b77b0b4cbcd8ae6c61714bd11f54cb433534bb5dccc95
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 471.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96012185d49eb22b2e5eedd7563307c3dfc599d471bf91ebe2854e3924a5cafc
|
|
| MD5 |
3feeeaeac1bdcbaef68a323b4c0b68ca
|
|
| BLAKE2b-256 |
06d7bfa2f59982fac86a2d62c6129bb460a497dd1584c49cbffa1341889a9657
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 419.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
734ae6deadda1cae8fc73332e418dad78fc2d9895154450fc781de75e4bfa696
|
|
| MD5 |
a313a8df71d962f6575477831d2efa16
|
|
| BLAKE2b-256 |
1e0b18f94c609cf43a6297f3e04ff21d24b1e2154d865c7b8e02b9db2ef0a033
|
File details
Details for the file skymask_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 435.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f00f7959cfded07482d2ebd6692f2f0d6a92de9b1c7a0e7a31f166d4647f10b4
|
|
| MD5 |
fc5f898f96e13cbf3457108d80b3189d
|
|
| BLAKE2b-256 |
e0623aa3d5958be358f7f87e8b77ab52c8fa88dd530360cd6d7c786f7ec15f56
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 308.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4acf8bb93a4fcc1d53ec2ec6c8f7040f6c66e4fecd01339b27b17ba1eac1694a
|
|
| MD5 |
0de6a6f6ae729de6734e93e3b8d1098d
|
|
| BLAKE2b-256 |
c05851f5b37b0e605ea778fbfc664c89a44272756bc943e9066edae1b97836ca
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 294.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b886f273072550bd72c65570072f882831a3b119ae4258e957a64479da6848ab
|
|
| MD5 |
d449c70763341a363a8a383901e2dafc
|
|
| BLAKE2b-256 |
ddadeee3f8203175dbc60b5a1da706971e09e663bc561084c369bfe27933a07c
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 641.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc28497cec5e7a8cbac879f179ff2ec7008b445aface15c64dc53cfa651341d0
|
|
| MD5 |
4cd2859ff17b7fdcff3c8642ab053267
|
|
| BLAKE2b-256 |
2a3490e8ebcd9c5b2bf6ccf0589a56035647e632b8b8d69a432de9336a7a60bf
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 668.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679a2d23d6619350088baaf62bdf1959d97208b99d34a0657b24e15c471a9381
|
|
| MD5 |
992cce6e4857309f7f85f818b07ff854
|
|
| BLAKE2b-256 |
d288c1d48cb2f71f69abae070afcff20e8838705beb1b76de54028604cb45f08
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 730.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d567d75df67a68320d40ffedb9df7ec0e34d18a4cd12424702500c2ab5c8bb5a
|
|
| MD5 |
f577a747decf077b8bd8a50e2fabce34
|
|
| BLAKE2b-256 |
1f10508840d9444e652df49cc64c9f00839ea6c109f084101b07afb3a9078ff0
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 638.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12d446263671f180200ed56dfebdf4885db98ae68930012c064929dcac63d5ce
|
|
| MD5 |
464f2ac8e69ca30348313540834ce198
|
|
| BLAKE2b-256 |
87cbf976d375826e858e84b343c88a0ed3b3813078a80ed460bdce71d2041267
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 480.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d72274548adefb68aec4ad0a36c62fb913325175f35585a4f5941a814f932543
|
|
| MD5 |
68e373ab1ef5189a6b0dfccb639376c6
|
|
| BLAKE2b-256 |
574f25e8503e59e5c0c5925a3105cfe454bb68edc0edd4c03be59881bbdb40b6
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 549.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63f8b1af3b74636c4bd4d0d7bfeb3dc72ebb97fca519c5a3fc93c7e3176bb679
|
|
| MD5 |
6293e096e2eeaf2f73f9c0d9941b2645
|
|
| BLAKE2b-256 |
5406b43e2127be2a819afe884964025958875a937fba5014150a60f25320a8b3
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 541.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c6831aea2514978596b8e397d45bc7c41a7937f0ed51f87cde78afb8fc8da73
|
|
| MD5 |
1572e738eabb08e7db9895d688d453e8
|
|
| BLAKE2b-256 |
a4994ad09d0eeed8477e4d5482fb478b7fddf6b424ce5a4734be6ab613ab1e5e
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 509.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95fd00af643b06cd92d99622c72ac742ea1e30a50b73b2f90e494d4c8bd272e5
|
|
| MD5 |
ea7486bf7c8a3a82b4b6f63b516f199d
|
|
| BLAKE2b-256 |
aa0c9b480177da71b966ddfb34849f68a55228231787cec8b08d620ed06308f1
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 479.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23bc73eccfaadbb9c491c2e9cd410793e93be0ea99d5b6380675c79da17c82a5
|
|
| MD5 |
98f5821046064fa76e5f3df296a29548
|
|
| BLAKE2b-256 |
843b7b62a5b7fef824c10d07806a5486e28f0036ea6c925e5f6e43aa7d1775ad
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 472.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ceb7d9e6e2db88165ff5d90465bad4c4dbef2aabc28ef7784957a809e8988cd
|
|
| MD5 |
5c06f25e5fbb1b7f6c8adbc130ea3ba5
|
|
| BLAKE2b-256 |
d788aaefd1e7c19368ab47f01fc200a8715e94361f4976e5214fc59343860329
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 424.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b835d3718a1c356da7b64299019e5334759902fc5755aa3ba731408c05a7b49b
|
|
| MD5 |
92ae2b21db8d22d8d4fbfc09f13b38d7
|
|
| BLAKE2b-256 |
11a89252b05d182a36e0d8c718d12a2856d5df636c084ee09803c9042bfde96c
|
File details
Details for the file skymask_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 439.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21452734999aaf66805119b5b5058cef34a404fb3da4e23b8a6e8b4efba05c79
|
|
| MD5 |
a1da33ef9cdb14a1835f89821a50fda6
|
|
| BLAKE2b-256 |
9494b43bcec605d789931d821ccc7716b1db99588d7fc70c584f5f5b0fae0b7d
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 308.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2910b1d8f320a59a79e3563a7951b140a7cebc90dedda594d40dc42923ba5aa0
|
|
| MD5 |
1acbddbe9a2c8409ad3092acb4a636fc
|
|
| BLAKE2b-256 |
791a9d9a4f0e2002475ee75a4e4c5224d8d1a22b7a53af652ba7a5ce955b8ff8
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 294.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5d03f1a30eee0fac6c9fdc1bc87c20f6b0eb8dd6d89daca15f074e44d789d4b
|
|
| MD5 |
69312afd6b690d210e4b050e92022e11
|
|
| BLAKE2b-256 |
74dd73dae270e5ae50b5526c85c24fd97bc0018cc90c56df27902b474cacc8e6
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 641.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1939f64cd7945108cfb86513b02238f2b802dab27499e414de16637b34a1dbc9
|
|
| MD5 |
7febcb13dac0f652c7b38a870cf051ff
|
|
| BLAKE2b-256 |
b0de1251cf786ca38a2138a4506a88e91f43c2b506cf6b6906568f89324799f1
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 669.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67cd121b50e0bce3a9b1d7007f8e11904515c53125223e7604739c697fbb5bdf
|
|
| MD5 |
da949e04c2b82899dd7f8956089fc49b
|
|
| BLAKE2b-256 |
0deae1a2e181a1cc23cb2a73f483e8cbf6486f6813e20084ad4e256299b1d354
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 731.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6acee835335b55666eaa973a5abbf78ce0c7b67d9a2254465b035f1ed8856e5
|
|
| MD5 |
984bbf3c2121a61266afe35cb7c651fe
|
|
| BLAKE2b-256 |
2ad173b6d149eb5b9a1c2ca2ed4148cafc76d0ce3b628b1fab574fcba1d6e819
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 638.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f5ac673a91d745dbea1f0e5e31b7e72f8eefe11d32baa20050cc16e5d00f402
|
|
| MD5 |
70ad45dce7d250575c3e0d1a0c443f80
|
|
| BLAKE2b-256 |
bf7d49402645eda00550d1363bf7351308a9d011a3da511a602e869c90b41149
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 480.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
515d1a98242254d6f630b47409865b1eae8cddb9ab1fc1f239537d989659ff5d
|
|
| MD5 |
9ee3ab2414c7de6a344fe491e85ae716
|
|
| BLAKE2b-256 |
cee695432e999e8e4c1e2a42f8401b19f7fbc447db6974c178a61b09fac3e2e8
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 549.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb8e1591ddf8143d21daf06e6930c58d7813900a190cbfbab75f8439ea3e5dc2
|
|
| MD5 |
25f19b4300228c8c9c96b6d23824ea95
|
|
| BLAKE2b-256 |
fba45e38b9829d8fb321fe877b010c0ae4be6968ab7b76be9894c776213f2156
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 541.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290eb260bfae8b5e7040ce27835f87203b954b2eab32f34d76d0bce626115a6f
|
|
| MD5 |
6dc4b1b85d28505709df3e841981dfe3
|
|
| BLAKE2b-256 |
4626a81b216bc767523a4091db61859529680ecb746b2a2e1c68369463cc2574
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 509.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d5d42e042d01c6c4392f85b4d5ae9d807e788eb9f93c6ccf60ce7b8ef907db4
|
|
| MD5 |
783271be1ddf3244e465ce2e4d970c23
|
|
| BLAKE2b-256 |
a3ec16ded9bb030c0180de273abea561bc928b98b2f057a557af5ceec6fb680d
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 479.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6146e28234b738e92c4e673d161dc82484b67129511ba7b3beb0a8a75bb0111a
|
|
| MD5 |
68eac620ec24cb4c960e860c9588afba
|
|
| BLAKE2b-256 |
605010de762937b630df3eff1924cb3782158517365ab44944acf1e45099f33f
|
File details
Details for the file skymask_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 472.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab3ce53e2b257927cdb408e24e37ad5afafb0484115534636b07ac3a6692df74
|
|
| MD5 |
71db82b7663d2c6788cc708d8242e9a6
|
|
| BLAKE2b-256 |
ebb5a7554f8424c99e08b7c2f5ef68cf05e6534bec79511cad378a26f460bc74
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 309.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cc311e6f274ca6547d9984351789f975e7a5fa41b4495810af7ec092cbc749c
|
|
| MD5 |
363b2012398201f6ae02788713a58697
|
|
| BLAKE2b-256 |
7d222008c8888ecc994412c0d409eaf7caf0404371356ec5fc7c3df18e45494d
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 294.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34699aa3fd0a5aa97c4542d81153abd71c0ee8a529a6c16a46c34151b4092e23
|
|
| MD5 |
825f4b72222a5840b373608337b71c5d
|
|
| BLAKE2b-256 |
f3b3d309edd1b80df26edd8e27dff12e6976f9f6e93e0bfe591077f65b3b3490
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 643.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05262ea2b06006d1b126c70ae89eb4f37c1e92f358cac6b992e271e34cfd2b2f
|
|
| MD5 |
c8283a55ec80511baa33e087182cdf10
|
|
| BLAKE2b-256 |
7180b77dcc6df6c2127fe57d67e853d722ad36e548238478aeededfb926d252c
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 669.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a347531773aeac416109de663435070adae75a9085e1a9cb2d74c631b481b36f
|
|
| MD5 |
de7932b2406dfd6fd579ce7356a7aae6
|
|
| BLAKE2b-256 |
1a7dc503d0c6097637a974c61fe0671762beafde48d3f919bf6047c1ff9b73cd
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 731.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01fa38edd2afa708bc3b790738dd33268f6e39ca1b84548fff73d9dd54e8fa05
|
|
| MD5 |
31cadf77e36ee96b4ec6ea846d8d6175
|
|
| BLAKE2b-256 |
9caf5ce5df7b2f9a0fba5e5a7bc98b2f66d8bd2131d81757c4f84d406d34ca4c
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 640.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b76653f94f644ca298217e8ab660ec5325f03855a83b5ca2218571c38c8e685
|
|
| MD5 |
a6cdfdfc93d06acd5d9c050557e90ce3
|
|
| BLAKE2b-256 |
7e24e116a8940fd26c6ba2affda22be3abd66dde303d061835259bcfc07b1ae7
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 481.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aefb3508bcb1368ecd86a9f7951d066dbfabd69fd14088870569b880c857ea65
|
|
| MD5 |
dfdbb00c33d944c9bb55e1af40751c89
|
|
| BLAKE2b-256 |
252344824aeeab5635b9dcdb122aa8a31d299925dae670c3e6e2663acd753f1c
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 550.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f627f38df42f810f21f28107f5d71030f659484cb2ef70b0457c943451757203
|
|
| MD5 |
bf54e9937d43f9af13bd42a59eb01599
|
|
| BLAKE2b-256 |
1f45dc55b9c29cc285f24fa9360695fa1a4e29325eafb267b1090ebb6b529661
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 542.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5532874cdea28d27744004733128b09dfa9f5cdb0027618cdf9830d26d09f229
|
|
| MD5 |
591a171352f0efed907abf1b9d0fba61
|
|
| BLAKE2b-256 |
91db529d381bae9d3ebf07fd107a6bceb2567f5771e1993649b250ed8e31c95d
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 510.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee60d98481b394950fc5fe07a488e9fa38ce08052f4872745b05ae18f732cc3
|
|
| MD5 |
1409c98343c54b11017eca88249a447d
|
|
| BLAKE2b-256 |
a73a13b6a41fc4deb9d1aa9235d666d10ecef55ce928f848edc06a898abf8790
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 480.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5001614761cccd8a62d937e14d23503b113b66c7cb3fa6be5d9b566628efe6c8
|
|
| MD5 |
3794d6d7da7184abfc5803ad7cf7ae67
|
|
| BLAKE2b-256 |
c5935c077b0502bb33cb02714e266d897b55f92621566dfd1158402e31095151
|
File details
Details for the file skymask_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 473.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13af64cae67cd18e4607c423dc4539bcfe8260e6778f7f30b88c8d9c7ce95c9c
|
|
| MD5 |
a9fff32269c18199b54e5af3166ab6ed
|
|
| BLAKE2b-256 |
0c8314f6fab8300cc5c56bd216ab67c7ede29e85ac5f750d6c93b4a7132a2ea1
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 309.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbae6f588deb991ea3ea8d9a0b58e7813e223258a2c702083ca3ce855a9d4d9c
|
|
| MD5 |
931fc5f499e93e420b3e280460daae9b
|
|
| BLAKE2b-256 |
eba6a04373be85747bb186fc267ca1b075152c8e568ce994218c5aa63cadf171
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-win32.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 294.9 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ce39c85178357dd0339437cb38b6397e7997d1b3c9842a78bc18db589b92c3b
|
|
| MD5 |
9b2fa886d394feefe16e438da677d39d
|
|
| BLAKE2b-256 |
858b0d0be61447316fce0c7ee340d136b79da1b4ebdbe60bcbfb8671792b7d7d
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 643.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a066f9f891f22e23e8c3df0ad40ff0c4a176034084b95b51fa1cb62b0dfffe5c
|
|
| MD5 |
63bd83d84147961f54012d14ace6fee2
|
|
| BLAKE2b-256 |
d64ef14e4b2c0fbb47279879a898e825b9a6ab280f0607b52641961837d47c01
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 670.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a13c797ab6ce1b8121cef948bbe1a3535535fd3a732dc41d503659ad8c6925d2
|
|
| MD5 |
4223c6a45aa9b44dfc373342d90932b0
|
|
| BLAKE2b-256 |
d67e964315302421a44d53866a527fa34f8d3251cbdb6c89cf431dd7252a8a79
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 731.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48df71b889a7174a45cc4da9083290cfd14cd3b6a8de8ebd9ab76237123ff266
|
|
| MD5 |
68d1858a88cee7ee72c8e78a8814dfb3
|
|
| BLAKE2b-256 |
97b5cf0f736faadff2b1b4b62bd62aad9bc5386f969a673c4f824c654220785f
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 639.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e9f95e30783c9dfb3b1450ad023815bfaeae50a0db8b6f578d556d932bd2525
|
|
| MD5 |
a48dd9b0adf301c0ed48486700e3de38
|
|
| BLAKE2b-256 |
fbd307b3ac125434bb86a6b3862b9c1801462611190049b814e89138957b7b7e
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 481.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fef9042481211b4b75bd8105705c6d1321442a148bbe20384080a5c9782cb1d2
|
|
| MD5 |
f3442f9fe38e8e713fb7b6da90637561
|
|
| BLAKE2b-256 |
2a5f26609048bee2e0254ed49ac7f955dbe74ac587a33469d86ed194ad1f2cb4
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 550.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
033833eebcdf1d19cb831eeee0adb86a1be779822aa5558fb3545557c0ebc4e4
|
|
| MD5 |
1f14f49d210926c11489eae98e06e72c
|
|
| BLAKE2b-256 |
fcbfe967838a8bc291aa8be90734efbaabe677f03d08940bf98be947b69e07a2
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 542.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90c994fdc2cd2c11f66228f2977272a2d077aaab5d93648a5aae93774b518cb7
|
|
| MD5 |
ae63464c22a4464739bd9cf744409b14
|
|
| BLAKE2b-256 |
7f412296b871a7d0d6a9597b552a269408424708762fa999b7dfcd9e37268a2b
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 510.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282c9e4be6a055d9be36e3bbb990f3695e8dcdb53212377e79783fd15269bf8f
|
|
| MD5 |
2f1e1e84bd60927284eea3779160609f
|
|
| BLAKE2b-256 |
591a33b41596596e0dc43517fc7d4d735ff0eb698c3690a49de3ba7c445aa9c0
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 479.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
169f93c77cd06400a403c22f1018d6b82397baa0a8bf91ad121215ed4eadc4be
|
|
| MD5 |
341a2a17d79e31b38ee8bcd53c5372e7
|
|
| BLAKE2b-256 |
e691ee272466ce6ac04c3eb49767491c2e40660d132b078e6e2d39367e715b12
|
File details
Details for the file skymask_py-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: skymask_py-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 472.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f1aec4d637cb178a9a77c97c0e8d463c3589edc5f5e13ba922435ec7005701
|
|
| MD5 |
5be174a0466ff801691fab375ff8bad8
|
|
| BLAKE2b-256 |
47c45ea7c7eb0f164b47cad9e8b2eb7350881e465c3a0d987ebb720258df5987
|