SSH for Humans
Project description
Hussh: SSH for humans.
Hussh (pronounced "hush") is an ssh library that offers low level performance through a high level interface.
Installation
pip install hussh
QuickStart
Hussh currently just offers a Connection
class as your primary interface.
from hussh import Connection
conn = Connection(host="my.test.server", username="user", password="pass")
result = conn.execute("ls")
print(result.stdout)
That's it! One import and class instantion is all you need to:
- Execute commands
- Perform SCP actions
- Perform SFTP actions
- Get an interactive shell
Authentication
You've already seen password-based authentication, but here it is again.
conn = Connection(host="my.test.server", username="user", password="pass")
# or leave out username and connect as root
conn = Connection(host="my.test.server", password="pass")
If you prefer key-based authentication, Hussh can do that as well.
conn = Connection(host="my.test.server", private_key="~/.ssh/id_rsa")
# If your key is password protected, just use the password argument
conn = Connection(host="my.test.server", private_key="~/.ssh/id_rsa", password="pass")
Hussh can also do agent-based authentication, if you've already established it.
conn = Connection("my.test.server")
Executing commands
The most basic foundation of ssh libraries is the ability to execute commands against the remote host.
For Hussh, just use the Connection
object's execute
method.
result = conn.execute("whoami")
print(result.stdout, result.stderr, result.status)
Each execute returns an SSHResult object with command's stdout, stderr, and status.
SFTP
If you need to transfer files to/from the remote host, SFTP may be your best bet.
Writing Files and Data
# write a local file to the remote destination
conn.sftp_write(local_path="/path/to/my/file", remote_path="/dest/path/file")
# Write UTF-8 data to a remote file
conn.sftp_write_data(data="Hello there!", remote_path="/dest/path/file")
Reading Files
# You can copy a remote file to a local destination
conn.sftp_read(remote_path="/dest/path/file", local_path="/path/to/my/file")
# Or copy the remote file contents to a string
contents = conn.sftp_read(remote_path="/dest/path/file")
SCP
For remote servers that support SCP, Hussh can do that to.
Writing Files and Data
# write a local file to the remote destination
conn.scp_write(local_path="/path/to/my/file", remote_path="/dest/path/file")
# Write UTF-8 data to a remote file
conn.scp_write_data(data="Hello there!", remote_path="/dest/path/file")
Reading Files
# You can copy a remote file to a local destination
conn.scp_read(remote_path="/dest/path/file", local_path="/path/to/my/file")
# Or copy the remote file contents to a string
contents = conn.scp_read(remote_path="/dest/path/file")
Interactive Shell
If you need to keep a shell open to perform more complex interactions, you can get an InteractiveShell
instance from the Connection
class instance.
To use the interactive shell, it is recommended to use the shell() context manager from the Connection class.
You can send commands to the shell using the send
method, then get the results from exit_result when you exit the context manager.
with conn.shell() as shell:
shell.send("ls")
shell.send("pwd")
shell.send("whoami")
print(shell.exit_result.stdout)
Note: The read
method sends an EOF to the shell, so you won't be able to send more commands after calling read
. If you want to send more commands, you would need to create a new InteractiveShell
instance.
Disclaimer
This is a VERY early project that should not be used in production code! There isn't even proper exception handling, so try/except won't work. With that said, try it out and let me know your thoughts!
Future Features
- Proper exception handling
- Async Connection class
- Low level bindings
- Misc codebase improvements
- TBD...
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 hussh-0.1.0.tar.gz
.
File metadata
- Download URL: hussh-0.1.0.tar.gz
- Upload date:
- Size: 396.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bc07510d9f7d7f335e7375b66b6a985d86df49dc6b160d509597f505e5e68b8 |
|
MD5 | c4d376f60ffc758e709ad76226532b86 |
|
BLAKE2b-256 | 424e2470a6ad3b25f4f6da33d9e0dce1d54e8eb1114bf8382c869bbd683be6c5 |
File details
Details for the file hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68b0ad17f5f903146a2bd3dd5e0d8cbc4f99f39f9b149b758065c7f732598f7f |
|
MD5 | 120f711a13ae9f96941e00c64c559896 |
|
BLAKE2b-256 | d9ba0110d155ce7e188e1cac2b54ca48f75fdf62e7759b1864f517b004960d70 |
File details
Details for the file hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1e745775028fedc51e8ed97641bbc1ab4ca3ce960f4be36cd4637157481344a |
|
MD5 | 45b4cc6aafeae4ab3f5d233c9904cca2 |
|
BLAKE2b-256 | 777a73d1cfb5f8393a9b3f4ae506bc8fff82f7cd39b7f017387981e92cd2410a |
File details
Details for the file hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9e69f99c5f3492d8cb1585625d0c6f109af82fda0495332ee953cbea68108e4 |
|
MD5 | 5f6b97be61ed7e64c2a5f12711fbd9a5 |
|
BLAKE2b-256 | 75ababcc55c599b971f0804c222fb3ffd6df302e5f3f06811a86f84cfb3dcd65 |
File details
Details for the file hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c830946da5ec7e6ea3ad3c797873b50e31ca8c006fcdae81d4c328ee1fc618d2 |
|
MD5 | ad8e11ae41b9082ac847e488321ceb1c |
|
BLAKE2b-256 | 4f40c85f9d5a7dc911547874cb7a0c194151996e9bb66c9f17737cd56c0a0f71 |
File details
Details for the file hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd430c1cd5e31fc1073fda5feea142d19b2ff27cf1e25db10221e321e6ec18fc |
|
MD5 | 4dd5b09dd240363d0148578967b6ccc7 |
|
BLAKE2b-256 | f42836fa4ac660bb73116b3c6b7672c2b284de27edb5618005f5946f88129718 |
File details
Details for the file hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 902704564d88d37c6d9b85e4eb7bca94d88fdc11c2a6a72422b7fa46494e8555 |
|
MD5 | 403f518b486479157c6915386843665b |
|
BLAKE2b-256 | 539fccf8089529cf34ac83ef52a87d340ad0318b75a7bc5933210bb6f07c7822 |
File details
Details for the file hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd2aeafa58b2e019547818e065bd5fde05d8b6b3c411539c39a3ba2912e2b1d6 |
|
MD5 | 9002e2d5c8036db3fd42045aa3f13310 |
|
BLAKE2b-256 | c1fcf950cba508e0039f336a108a7bc4b83d746c684c17b7beb435fd3e7d2b49 |
File details
Details for the file hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23fc1e6d8ef4756c8e7d03c0597db8199d405d2508a28443417dc950f29891c6 |
|
MD5 | 549c4246e2ae51986a425c3f754e6f8b |
|
BLAKE2b-256 | d9797873f6d3db3c98be31a079442ee865334f28de1b5b07d2dcf4125bd95b06 |
File details
Details for the file hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4c9a6275ac31f0ac009665bed9aa42fddb97c128fd2339adb340fcbca29e22c |
|
MD5 | 4826beb3ce35eff632384f518501dfb0 |
|
BLAKE2b-256 | d6e434c7a008e35187c51d0975af98b2696c09f76f014d50d71a79232ad9ce39 |
File details
Details for the file hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45dbe7977e837ab31be6bdd505931d21a2d12eec12cdb514f55bd38d99248755 |
|
MD5 | 40e1f1b1e034e71fbf51beb1f6bd5817 |
|
BLAKE2b-256 | 61737e410940b5e91d3dfe49501cca334360f24818d9dac3afba47590a2d5054 |
File details
Details for the file hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 933f052056721e0e2a1d811b8f44ae103de6161e5f94bfaf032512d58ae88502 |
|
MD5 | 1d8a26de308f2d64d0148c10e9ddc62a |
|
BLAKE2b-256 | a8c3b15608ecfa9b3d65e0faa9680835210316939c62836a91bae0a50febad89 |
File details
Details for the file hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4ecafced707e119dc1f81bd2911506cb8291aad8955f8e2910022ac09838523 |
|
MD5 | 5100d2935ba6b2a65ae0e25055f753e0 |
|
BLAKE2b-256 | ed7c2c284a3a90011c31cd879e472c38cbaf82c24ad3e76bd58b93579028b55f |
File details
Details for the file hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfa6f60416c3cacc1fc5d1ee3c8e0b0f64a9b98fcdc5958515509b7627f002a1 |
|
MD5 | 2164b04056617177eb5cb2b6fabac326 |
|
BLAKE2b-256 | e903978f52c55d63a81e5ef5edd809478b62f61a803988b2c5e01e3b9f809ce8 |
File details
Details for the file hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a4bcbc22b338bcdaa65d101d0ff810e086ae7470504bd91f4629520af19f507 |
|
MD5 | 0c76a867916805ca9de019b103573616 |
|
BLAKE2b-256 | 288e3fac6c2072452d375fcf167ea643e37769f522fa8ff4c958944c929a672e |
File details
Details for the file hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a534d959cdb43db94e40cdffa61e24eb3615cb6bd933b30deaa952da68ad261f |
|
MD5 | b8f8b6c6b8064e5b2a61fa56575ef9a3 |
|
BLAKE2b-256 | 8a4774241f780918c0c881dc0b1bf37922184f4fba88d376ee18c8b9f4f16f9d |
File details
Details for the file hussh-0.1.0-cp312-none-win_amd64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 274.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51969a68c0c63b67c3b59f8ec4e0d15aa71eb09882c8a7fdb2f610fef48ba569 |
|
MD5 | 6e6cc2c929489a97f408ec186d7fa9e2 |
|
BLAKE2b-256 | 2af2bb9cfde843067bf0271d46919e3987b8313a79f41e4b518db44bd4cef076 |
File details
Details for the file hussh-0.1.0-cp312-none-win32.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-none-win32.whl
- Upload date:
- Size: 256.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fb74b9b6c25e7e2608b0c8cbc56b1e5000a688cc31624d14466a3bbcfbdba04 |
|
MD5 | d51cb08c6b139743903c158bc8ce630f |
|
BLAKE2b-256 | 3c3b97f012952af99b74900743925d344ca5bbbde059b8a68fbeee099dc1ab37 |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3ac52344d36d594a8ec9049d9efcbd0a4528783de153d436991aaeee204eecc |
|
MD5 | 8570751fad34cb03964f0d77e20892b0 |
|
BLAKE2b-256 | e6a27ab0e2f2055c6218f3ac8de5d4592b83cb79b40c39bfdd6df349a14a5860 |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75b81fcd58677c8f200b45533602f76ea0340c93ce998f3021e665e96fcf7c9d |
|
MD5 | 3b36a88cf923f3949812754570129d20 |
|
BLAKE2b-256 | 801b00851eb656947834a0995339d033cd1c6ad2593353ba3e5fec2e22662dfe |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 239ffad11d7ee22014fa21a618089774d2a6514d1fc996dfbd06d4051b7a7ed9 |
|
MD5 | 9e4b393b4891849ab91e44bf8e8e26c5 |
|
BLAKE2b-256 | 47b229dc73d210538e15f73c32ea95d56100a58a441d9107b39e5042c04bc5ee |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 886e33e674df0c40374d67ebadbea63af33e4cb5245a0cb15d7c24107ddfd83d |
|
MD5 | 6c46935f3f90efa0cae7bd3ceacefa3e |
|
BLAKE2b-256 | e1f87fab05cd8c5f04ce31e9dae25a62dcb9f8b7a619845d5555e07c66dc62ec |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6197db0f0a14fe3f88c8080d84e3e6df0da66d3554147020cc5db781bc74b9e6 |
|
MD5 | 791b0ff50088e85fbd9cdcfb48f4a128 |
|
BLAKE2b-256 | 8e3a6b8c4ea9d669044324bce7b8a2d263b402c95f29221dccd71ee423fce2c3 |
File details
Details for the file hussh-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ab6c19eb051538a9803f56c3b474327d9014c5d2300035a2fac492c732a3b90 |
|
MD5 | 6e139dec7ddd3e2d07a469f768d4e3f5 |
|
BLAKE2b-256 | 527f96c59c0081222cfd7d78f5da5523f1d266dc02a0105e6b4dc973ad24c183 |
File details
Details for the file hussh-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 366.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cc0b3fbf48c89a9742fc97d2127c5711babdbdf9463ed030453d5029a0a9341 |
|
MD5 | 982d7e0a554db3a58b77e3ee9b79d308 |
|
BLAKE2b-256 | 70403694edd90226f716e4ca177bc36a6ffef9928e66807fde29116a2d00be65 |
File details
Details for the file hussh-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 375.7 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa6fa3bb523c5f3776407f36ccf15a4793f148d463e8f96241b802c85fdcb95d |
|
MD5 | 5d56d0d578047dffbb02d764d1e1915e |
|
BLAKE2b-256 | aec7604cdd0154ad2ff316e142ffb0b85dc70be6ec09fa0f2f64a9164642fd24 |
File details
Details for the file hussh-0.1.0-cp311-none-win_amd64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 272.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c35cc761feec46efd435a510d57cc74c14519af70f850daf8aea014c4a51261 |
|
MD5 | 1c19d10a8f8f2c8dea93d92ace07d349 |
|
BLAKE2b-256 | 2a594d00167fa42e5a7b41b555f79e17867953d0f5327a7f4996520f042d97c3 |
File details
Details for the file hussh-0.1.0-cp311-none-win32.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-none-win32.whl
- Upload date:
- Size: 255.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7b33314860c9cecef0d46b9a5297787dda1e6388872950677014622e48cdc1d |
|
MD5 | 9896f3669e99bf7dde7c4bd290637a80 |
|
BLAKE2b-256 | 6be1fe6d8845ebb0903b5f16d20f8da448aa5e58d14ad7dd9abb2892132bc774 |
File details
Details for the file hussh-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a2e0c902ca37c1a753a3c8d62da6239444a8074e8354a1d586f979e7361048d |
|
MD5 | f01d1e3e0c7790dbb673284efa4a333f |
|
BLAKE2b-256 | 6b7e3464b16bad0ca379c4f527495099f02409b0da87889d43cfea6e105ffca8 |
File details
Details for the file hussh-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca822f8f5beebb89fb7cf14a574891cc4ea5439a6470ae23667a5307d561a24f |
|
MD5 | d229b45b7b4a2cce8b4ec3a2f0c0a8f9 |
|
BLAKE2b-256 | 959c6e2d9a4c65bb508442167adc1266c424eb2b00f93700905bfaac5333f199 |
File details
Details for the file hussh-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2b2651eb00b35f8b95267c9758d800401268f29b72f435468d8171d18b542c8 |
|
MD5 | 4b5a12d55b7701a5dc0a24e6298c1180 |
|
BLAKE2b-256 | be371d6c1ffa00eb1a3d5458a9d10ae878a662753568b8870271a8ce23379b69 |
File details
Details for the file hussh-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0904b2ffb4d7851f123613dc9e6c3c7872d4417e769a4d449ff7e5dd429846ea |
|
MD5 | 46c97478ab3896e47735d9669cc27b0d |
|
BLAKE2b-256 | 8fe543be7345b137f17cce64b4f3aa520027c8a22a6cbac44c95669b47bc8e9d |
File details
Details for the file hussh-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b25517fcf29cd5315a9bde1ab0bb0885068091403aabb97b29d99fca5182989 |
|
MD5 | 9b66d6761c54423c2724384e6bc9908a |
|
BLAKE2b-256 | 89c69c15ede2d865b7d7a8f7b7beb5fc75ed9e8412413d3c4837f848a2a1e48e |
File details
Details for the file hussh-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 366.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0219f44b66c23e30b55a115b5418639e8ab22d890e0f8227b0cf3abdaaf60e16 |
|
MD5 | dac8bd93a7c2bdb7113f75aa8bbd983e |
|
BLAKE2b-256 | 0037fb7d5a9cd4922a4f426eae3fd80c9d94a32dce428196c4c3662de2894ed9 |
File details
Details for the file hussh-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 376.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75bb025d8e6ec34bc057924e586803aabcf1f41d2183b2343998e504054a50eb |
|
MD5 | c38d74bb0e211613303213d55920f991 |
|
BLAKE2b-256 | 65dfd4fdd0ce9f58a9a471df13920c7df1eab6e49815fd66de8ad62278446760 |
File details
Details for the file hussh-0.1.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 272.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08a6a1e36425da851e57555cd2e5f5202f3f967563341d58320754700d24dffb |
|
MD5 | 22d5e09aec5e69359ddac9f2ea63684f |
|
BLAKE2b-256 | 2a5ce67536eb2dfccb5c710e30184cb9a1d5b25232c49014b666c82c3c3dc20c |
File details
Details for the file hussh-0.1.0-cp310-none-win32.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-none-win32.whl
- Upload date:
- Size: 255.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dab78e48082fce146b0044899515f6e1f0b14822833b5b27c84034e3bdd077f |
|
MD5 | 53e002f33e56050901ffe6f533f3221d |
|
BLAKE2b-256 | 6b85dfff3e986713db23e56712f1d96bd5f5501c07f135cf4e891f3eeaccef15 |
File details
Details for the file hussh-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 597a57b92eac90ade2c6e5b11ebf0d7f063eaf828c3a0d03b9796df234bb8602 |
|
MD5 | 9eb77dd4579f9013267a8d89bae81963 |
|
BLAKE2b-256 | 1186bccf6374983eb64da7d57eb7106becc87e32e24d21dbb35ea4a680e596d8 |
File details
Details for the file hussh-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9f69ba85b90a5206939b7f1471cc16a083c8c9979f7f6aa6cc384ff3a7c3e35 |
|
MD5 | e413c6b636ce485d1a2a1422db9c2277 |
|
BLAKE2b-256 | b2353efd197feca815cc3b080908340d711a53fa2d80d7c0de3d0705b96499b0 |
File details
Details for the file hussh-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58c41d849e1e894f8491908e86d03f91be385bb803ee71a5af66fb136bc96937 |
|
MD5 | 8d6aa35dfaf4a3373c646ba5e228278c |
|
BLAKE2b-256 | f6dbfec91bb17b3b8fdebfa7c798b0997f92670e634a879b0f4b30c65e4e87ea |
File details
Details for the file hussh-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5196bf370f347df094d433f72619a0f57532f6a63efe8f687a3246077f4f78d5 |
|
MD5 | 3b1c1afcc18c7b23b71b4cb9a6be34fa |
|
BLAKE2b-256 | 2ccc32135bc1f6fda82aa5ea603975fb4109a6a3638d1789d8d5f363c1455639 |
File details
Details for the file hussh-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06089a5506e710aa953be0a183c9399fa22270f5af590e1867f331ef62b6e15b |
|
MD5 | b74fa6a0ad474f23f0c212e9b56cc157 |
|
BLAKE2b-256 | 88c6033637d7a2e77b2abec7bce3c4bf69a5d227e6da00d9b2af339041c1ec9a |
File details
Details for the file hussh-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 366.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5fead7876c293a8355c6427276b57ed8eb5099c2fc9da8a7338f2af8cadd314 |
|
MD5 | 5c1166ea4b2243c7c0fa122221cf97d5 |
|
BLAKE2b-256 | 52b0ee21ef7ca118d3aeec86c711e54c5a8f7509279fc7824e1b8e1bdff2f4ff |
File details
Details for the file hussh-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 376.3 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fbb582f285b81e435f5f3d8b650fcdd2408567fac0bcaa5c73ec5a3378a5893 |
|
MD5 | edfb27f450e4318a49ff397f05cbe376 |
|
BLAKE2b-256 | 1f4fbd193e70f09bb64c34151d8a7c0a90c6ba13c8764fc2ba09345e3d009b32 |
File details
Details for the file hussh-0.1.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 273.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 458e53b6807e6d66b09bce516bab501cf0ece1c81661f4ad3a79bb27f1e2d3ad |
|
MD5 | 2485b3d583c80ebe817aa6a7f181ad1f |
|
BLAKE2b-256 | 5f8d047875e03744dbe89a15b2be522ad57e3bad35c6871c652c0e96d8be1d44 |
File details
Details for the file hussh-0.1.0-cp39-none-win32.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-none-win32.whl
- Upload date:
- Size: 255.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa4a0bfa778dbffd1bb7f48779f7dbc95dc5a83ec28312824e87fb70011b9bcb |
|
MD5 | d6432fa46a1dbde4db15a83dddf44c39 |
|
BLAKE2b-256 | d711d3cb208fbe390c91c544dbbfc617e21bdccc50b728d66fe263c1c00edb5f |
File details
Details for the file hussh-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd5a6927bb4d322fcadbce293e8c61fed0c961bd51e95308342cbbd588080689 |
|
MD5 | 2d1851c1216ac27fed0850061f4af2be |
|
BLAKE2b-256 | 32faac203a7196d6e224879ea1fd752b077c83ea2e6ce83d18f258b726eb0e64 |
File details
Details for the file hussh-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea312873d7a53590bb1291b9c907abeeb14f5c17135ba647f664ab187c117397 |
|
MD5 | f0433eaaf74334b451cc00161bbc94d5 |
|
BLAKE2b-256 | 4fa06d07eec83e9d03041f6f91ef8c4830acfa47bdab8876e342c154f88c2e76 |
File details
Details for the file hussh-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82e60eaf4addb8135439b5984abd969eb774d78e85d26da4d150cb0a80faca2a |
|
MD5 | d59d7814dd57ca638ef000bb0850763a |
|
BLAKE2b-256 | 55f1e4bf06997777fc71f3d3c2b34e3e010e6279da4366f60b4c0247abeb36f6 |
File details
Details for the file hussh-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afb49f1043b94aa9100b5027bd781344df0db65525ff899adbf80c32fc2f2fd6 |
|
MD5 | 47185cda09d604671477f157427ca90a |
|
BLAKE2b-256 | ca82dc3b6ed68e888a2f151111b64bc60fcd11888e7c6b8b50e0f4f8223ad334 |
File details
Details for the file hussh-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0bbcdd3d128e228445743f9fc89bad17e5aac1e4c426106f5d8970a4fa12dce |
|
MD5 | ae0f9790dae86ca200f49803e4274a65 |
|
BLAKE2b-256 | b8cf9b36ec67b9b12f44a1e2c3646141ceba498aea1a5375dba373aa5b1b6222 |
File details
Details for the file hussh-0.1.0-cp38-none-win_amd64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 272.9 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f87576ac058492f0de5dbefae98a3460ec76bc7a80a9a577d0e3daec03e5fefe |
|
MD5 | 00aca6037d02fd89b359e395da660740 |
|
BLAKE2b-256 | b073e967a63aa98c7dbe3d98f8df570cdd5185c0eb6a95726800a56c7607dd9c |
File details
Details for the file hussh-0.1.0-cp38-none-win32.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-none-win32.whl
- Upload date:
- Size: 255.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13ab628e74c46fde15a4dad81716ee333d87f860c87cc146d5fd7823a114ca01 |
|
MD5 | 15771d54650b93d633b13f579b6db10d |
|
BLAKE2b-256 | d4a0b84466561d692b3a013b057e59c93d5c8f21b0e185a7380c400b2f7e0c02 |
File details
Details for the file hussh-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abb8cc4b348367e213c325a03e45c76f2940affef0a5072d73d025168fe91817 |
|
MD5 | f08143f78a16bce338b39bc92f8c929b |
|
BLAKE2b-256 | 881abd53458721bbd356659ded43fd8b715b12879fe3dbf9a29d3b707cef438a |
File details
Details for the file hussh-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a733aef6a46d3d765108bd01db98dd11343aa9603c5d5a3b328306481cc12217 |
|
MD5 | c49fd07b87252025168fba08a0fd14c3 |
|
BLAKE2b-256 | 68f663d682770ccd49a263c5c41531e247d101bb4c96d558a84b780cdf14e1d7 |
File details
Details for the file hussh-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f40438733b49dfa23885f97181d06eb3382a9ad5c8273cc17410b430f0151e7 |
|
MD5 | 341bb0e08bb47f660569dda83afa2178 |
|
BLAKE2b-256 | e101d9aa6ad31e361006b12f560406eee00c801032ba059e13493674b6fad1a3 |
File details
Details for the file hussh-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 509c18010f06a01595093bc4cf0fcf3a2de85c3162c7eb3ba67c1aee0cb3b4ee |
|
MD5 | c54bfb182e0209d5e863e3376e432681 |
|
BLAKE2b-256 | 831959da3ca374f668c35c6565651f4d4b2f5b35152954a43fb2a5dfa2c3db5e |
File details
Details for the file hussh-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: hussh-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6952592baba0c08a011f8076b5195ee437843c6cd3556bd5208c2b1beb8a8ca |
|
MD5 | f3577e4444f388966d1b1ced1f363337 |
|
BLAKE2b-256 | b4d07610c6fa276bb1eb058a01f81123c6696ffe06f472c69052f670e9a4d163 |