Skip to main content

SSH for Humans

Project description

Hussh: SSH for humans.

Hussh (pronounced "hush") is a client-side ssh library that offers low level performance through a high level interface.

Hussh uses pyo3 to create Python bindings around the ssh2 library for Rust.

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")

Copy files from one connection to another

Hussh offers a shortcut that allows you to copy a file between two established connections.

source_conn = Connection("my.first.server")
dest_conn = Connection("my.second.server", password="secret")
# Copy from source to destination
source_conn.remote_copy(source_path="/root/myfile.txt", dest_conn=dest_conn)

By default, if you don't pass in an alternate dest_path, Hussh will copy it to the same path as it came from on source.

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...

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hussh-0.1.2.tar.gz (398.1 kB view details)

Uploaded Source

Built Distributions

hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.2-cp312-none-win_amd64.whl (278.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

hussh-0.1.2-cp312-none-win32.whl (263.1 kB view details)

Uploaded CPython 3.12 Windows x86

hussh-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hussh-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

hussh-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hussh-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (371.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hussh-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (379.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

hussh-0.1.2-cp311-none-win_amd64.whl (279.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

hussh-0.1.2-cp311-none-win32.whl (262.6 kB view details)

Uploaded CPython 3.11 Windows x86

hussh-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hussh-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

hussh-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hussh-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (374.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hussh-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (382.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

hussh-0.1.2-cp310-none-win_amd64.whl (279.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

hussh-0.1.2-cp310-none-win32.whl (262.6 kB view details)

Uploaded CPython 3.10 Windows x86

hussh-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hussh-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

hussh-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hussh-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (374.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hussh-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (382.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

hussh-0.1.2-cp39-none-win_amd64.whl (279.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

hussh-0.1.2-cp39-none-win32.whl (263.0 kB view details)

Uploaded CPython 3.9 Windows x86

hussh-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hussh-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

hussh-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hussh-0.1.2-cp38-none-win_amd64.whl (279.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

hussh-0.1.2-cp38-none-win32.whl (262.5 kB view details)

Uploaded CPython 3.8 Windows x86

hussh-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

hussh-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

hussh-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

hussh-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

hussh-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file hussh-0.1.2.tar.gz.

File metadata

  • Download URL: hussh-0.1.2.tar.gz
  • Upload date:
  • Size: 398.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2.tar.gz
Algorithm Hash digest
SHA256 d0ecefdba429e933d29059a7ec143edebe2ef2a58bfec58be00b51dac0cfad08
MD5 797beb462bb3fef0be6d2ba11b5e23e9
BLAKE2b-256 75fe6c10818014d6fdd24ad5a1b00acc7682fe7596b120407ca59ddbd09a603b

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f9dfe57fe4cab5d67b7b7946f5bbd7225c8720b22f3fa704888176b8058d45e
MD5 840432bbcb5fe2db42e33c8b9a5916e9
BLAKE2b-256 5ab06bc5d8dc009d5025984332296f28cc47bf1be6108a36cb91ed80a71f95b9

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be5b040ebe93f4e017b372f226c4065840ada07fc1a19547eaeee88be2bd3a66
MD5 a86ac8a32aa82c45f4aa91ef9591a695
BLAKE2b-256 2a2dabc41d074264bbcaa8596a6e670e0a4b03adb28ef9f3f4e6f26f6f894c5b

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 566a610f8d5a2a8375a39c429b53570249530e170b99655b710d587dcd5f54e7
MD5 91bd3922653ac6b8216f40d95a5689fd
BLAKE2b-256 fcae47d449fb10d1746fec053640eeddd2dc7587dacaef79e6989ab38e4404c2

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 906b02a5842cb8db61abc228dfae953fe45dc275a1080b06e8ba9edb2d1ae268
MD5 a6706400d67f020fa0bdb00d0cd4dbd2
BLAKE2b-256 f40a565e9fdf8ef2bf730fd54c8c9c63d2a349c81c80cf63d9aef846ce2868da

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e604afcd809fb81524987205ba009ad6ca0a7f856c24618182f4c1e0c27bf763
MD5 b0e3b3d137b42c121f3655f73637ba02
BLAKE2b-256 5551c25c20dbc02c7b16c9bdd7ed6a7f0ad9c3e8e8c738e822875d6c3fa19398

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99198200719d6bdc032f8618037524cdab39a7f3260e7045a721057952372f28
MD5 9d5d7ca64bac58f0e07427a288911a33
BLAKE2b-256 58f97379294954908a84a4a70719a7af71b9d2822e70cec3eb289671a1a39c09

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b68bc2d3ca869d1c6f9557c6c9d8181636744128d28cd45c77a3fc706a5714d
MD5 b8b8de45d3e3ada6592e2ea4ebc356fe
BLAKE2b-256 1ee5222e32dcf5559c0431b1e63a787f59b22d7cbc58581911f3e8cc32880dff

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e819029016cc873d78b60c28dcf68aaa924390c214008f874587fd9624873d8d
MD5 0c6aa587d9b48681973970e367e381e2
BLAKE2b-256 48a1c433a0ee410f20367cbd5d1c9491ea76bea3d7456ffd6152ba09db492f9b

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d99185847fcb92ab21f3abb74a79909799bb8cd1c1d7e02ef8f503f7db5b6f64
MD5 8dc3ee1c7f8c21a0eff08a492546f038
BLAKE2b-256 98f531e7e5464843f183e13db56cd131cd76237ea084f8eb44ca2bd3e78b5548

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27f9f2e5562b49cd0289a66a81695db919873e56e598958fc5bedf3685741b6b
MD5 1c44d7404c5253f72f509d867f20b2f7
BLAKE2b-256 e35c1308285354eb61c60063eade8e1e0a3e67c92db13ea0fe90ba8771926117

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bef0c982366ff9544780a80a22dc01f3f30a91320d9afc3b77792dd3ce3efce
MD5 8995936f9ac90eea120b59ad9518b978
BLAKE2b-256 ac3031fd2228f017dcdb8eda4c03050587c5b0c80066ed25923b7a4751a0cad6

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20949a14491930596fdf5ed715701f3e1a26ed43ca8ce6410bc7c7033f7ea867
MD5 50d4161a3e9a29b53feefca3f034012e
BLAKE2b-256 1f0708efa0e9451a3f31ea03ccb9f6f6c4d04030eb9f35b5f0788843aa9d5f01

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 631959e6be1496989213282a2ecc66f2d8bdde38fc073b05139539f5329d41c7
MD5 20769f84ecdba265307462e6c2df2158
BLAKE2b-256 6460c49084d0f8d90b75bc11f1d607f607fa9586aba0f34f89ac0bb496ec2b17

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83e162d30a006acb7c2924aa8a002b43650f93e052649298d9406914bf6cc401
MD5 919eafebccf01d24a684f354e4a89a9e
BLAKE2b-256 397ce2304c1839c15f79632beae77a9ddb3562d708f3b48b36bd783ed50a0adf

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b46d2240fbc508e5e6a3d9a72f5aca134a7a731377d368ad9fa6f1502c5c5d7
MD5 e6125523a06eccbff93ca0772a22bbd2
BLAKE2b-256 60830347d9866f9eb6b89d028fd61dd0f6db5b756678e127238c6f65a665aa2b

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-none-win_amd64.whl.

File metadata

  • Download URL: hussh-0.1.2-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 278.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c458ecfc087193746864162048b06f1d5204ed6e3c1312976d20b5db0a6b284f
MD5 eaaa66b80b817fbfd51261238863a111
BLAKE2b-256 3fc2fae07433a8762c7cafecad6ce9b59a52ae22efae6d80f4fb5bd8e045dbf8

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-none-win32.whl.

File metadata

  • Download URL: hussh-0.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 263.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 277b016a9c89414feb2890ad4a69aa5b3b0ba297155698d98b9bfe1055c60d7a
MD5 271f98aa341c285366ec57fa91330f92
BLAKE2b-256 a3a886bea74fcfbfacf7bdbe8ffd5a85175ffb9ea48d815837a7a9a5253da498

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b13922caf3b89e28bd5b53f9ad8f790e72f3c4ae86c8bf230a9b3c2b75e7a2fa
MD5 b5fec47e07a7a4f27fc1666158385e51
BLAKE2b-256 0e87a798e9f3c0a5b24f9cb3ffa0e1be47e22f9ec500ffc03d56ab4c252b7ac0

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c224f129c571e6bc4d507a750c7ac1a026dbbef3aedde34794f9fdf90691e90
MD5 3b7be5dfbd28488c5a6973d78771eb61
BLAKE2b-256 ba5b049c5b177ece5294ccbd48e0f0fcf562b6a30efd1d3cd7a94760373455bb

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae89067ef406dff21eec3008ccfa1fa640eaeb8621fe3051a275b430b0531066
MD5 80e232a6956f26397ac5eb30fcab20fb
BLAKE2b-256 433e3bf7e96a562e2162d78ac2e67ea9c2369e86faf1a4b544fb93309f2bd4ad

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a270f8d78b5199f10bb9f43c67180219a23761736741cb8a48388129ff8514e
MD5 9e9496d4ff3708ac3492d38a18bd3ed3
BLAKE2b-256 45aab68decc33c0aa70fd44aef4fa98651bc171de78a67f28556f3a109feb696

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c100546ee83d64beca7c355d6f93fa1ee8d4e5586b2e0b7619ff71e8f48bba7b
MD5 7fe5f7b14a776d1a23e36d4e63aa9cab
BLAKE2b-256 b0fbb131971c24d5bdbb20fcfc691d5ad7ea3d60fc5d8a5fac5b9348ca673c9d

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32773eb7e6e97a4267d037efd9970487740ea556050e57ae6926276bc1d7a631
MD5 0f34c3c1bbccf2d6f073eebe9210d113
BLAKE2b-256 48661803bb00718693457dae7ce61545e42df2c405fa784a9ba4baeb56f486fa

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d680f97d3a98bf8ad76cedc984f71359f46ed6848b116be93ceba63080a07cc8
MD5 69cb82b9865ba31cbe10f04b04c817a7
BLAKE2b-256 a2de780d8f2ec86247a1312f447599a11118c7424dc0bdb228034b0c3b801175

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-none-win_amd64.whl.

File metadata

  • Download URL: hussh-0.1.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 279.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ebd841ebb19fc633a630aece2268040217585ab1b58c7a4f48b2c7199c86fe5a
MD5 9e6fa06ee47f76459c049b1b08ff05d9
BLAKE2b-256 31c2ff5e1866410b5e2fc3fa1a75df018844e5e7315a461f63dfff73e6b9fb36

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-none-win32.whl.

File metadata

  • Download URL: hussh-0.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 262.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d3280c99afde579d8ae2e5f42d5cf113af4c0dad2d1b2d1208b09055a529a930
MD5 a8163c0832ab9687fed4e849c97d1e2f
BLAKE2b-256 57cfbb7429c91568abe09734788ce2023d66fa5b7a6ca76b3b4bf09b3618af85

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c741dfe7809a5d7fcf86a46db30f2cca6bfb7cb13c2905dbd682cad441dd7e8
MD5 fc0341014b7ef758eac4c4fe0cb1c6b0
BLAKE2b-256 012b5cf2806d38e26bcdf1c2278ba622d6aa6885406639682d30780d56345205

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f02914dafa61bdfb2dadc66701f6963874de7df8be8ec5da9c5170b84669ded
MD5 3a580556c4279475f14b07ef3629105b
BLAKE2b-256 1a7e53742749a23dfa2c9be54b4259dd45047b73921c2199be80791a3e35a1e2

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d829272f85c610cc543fc8bc9719ce1f6f0fc9975061db9e99c509a22c404415
MD5 e6b4a15e82ab89a9a19fb50b7b99e648
BLAKE2b-256 f793d095be0af74602330055094820035409aa277450b8cdd952e80d933cc3e1

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6552d14f8a60f587add3e64b85407d1220ea561ee099490ae62cd1051e857676
MD5 71ee4244651df6be5111c9a24861591e
BLAKE2b-256 be444bfed8d394d6657235e082a93bccb0d41875dae2ae3dc3c8eee4d0a687aa

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87501f56b266e0ddd52499fdd71b66b0740d121be96d7ed6091593cc4358495c
MD5 196686de66288e3eb6512bb69edbbcd4
BLAKE2b-256 545ad4eda968bdea273bcc95b75b9a6796e8d3a77a4c1ca3dab70e91c8d853ce

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15ac408606d4adcb6c5bcbb611f3702bd2788b8d6705af4a5eca1b9686055cf1
MD5 968e17116b98eb4489393c083084c0f9
BLAKE2b-256 99cff4284befec393e40437c3374938e17c4a9bcc170c903ef86c6a7ebb6f1fe

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71ffadf6d951da6ba0c9829801a4654a1740b160e322900da2439f0820ed0a7b
MD5 af9bd26f5d93f7209a178b9bc9a5beb9
BLAKE2b-256 d4c32b8f3fee3546b950199c0f2ca2a98f2523d3e34ca8e85a1719b5e9462297

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-none-win_amd64.whl.

File metadata

  • Download URL: hussh-0.1.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 279.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8bc6805a82494bfff578c1ed5c41c9ec2f0192eb56cf800ceeac218b51b4b82
MD5 9bd77234ba30e1e1eed1ee8579d2bca1
BLAKE2b-256 4f4c6a1faed98b176f2592c472085a68e2230392cccfff982fb4fe490291b290

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-none-win32.whl.

File metadata

  • Download URL: hussh-0.1.2-cp310-none-win32.whl
  • Upload date:
  • Size: 262.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6783f869d635ded7ec0bb2f08a5aef9dc9d795182135ab5970e1e79d2678de21
MD5 362a952594cf47c37fd9bcec8214a9bc
BLAKE2b-256 5270510b0a2faeb3db036165f75bc2446f753aba61d913de845fccc6292d2a24

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70e335757fcd0bbfa40c157c77578959975d6fc3b2e83f91d7748479c8f986da
MD5 c03d5b9abcb383bc6e58627998b28083
BLAKE2b-256 01a0d87429e145467b9c8e438892cadf6f06a72bfec82c3ae73858e66ab890d9

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f8f452dc64cf9bdf6310950710b94d770479e9cd4d7a9c2bec5107ebda8faac
MD5 0f2249f0776a7adb3a62a9dd11df7842
BLAKE2b-256 fcf85b0b0af11527d3ab0a2751159932403c12d6676bc0b0c1e8341fdbf7e5e9

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 515250de71a525e8d50ff21d28a395e4b0c921241f3b7279b295187f40fdfc83
MD5 9879e679b4cc0b3cf34c06b17cc32390
BLAKE2b-256 cb25117972554629575df6954623f1642f6a3ae8bf1fbce285d3fcff481cf678

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9e70cf5a4691e7c7eb4af9cdf080c199353816bfae62b8f08071cde9395607a
MD5 ffc613173127a93a4949c2d3fbdfc97c
BLAKE2b-256 f1547c9ca17c6cb054db440e6319d0fb37d4695f91e522a38c954a1c21a03d7c

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3a746404437e46e00decde6f06432775d36fcbe2e0f99663152b9cc43550ae5
MD5 448ce83668a24f367506f8febb281e9a
BLAKE2b-256 bf949ab38add731bea140a2109b988af2b33447a600b9d6a7d0dd2acc9dd1613

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4525353747021cb59ad3f8bdd525f0ff263e492473fa4b1fa58f868c87d9632
MD5 63fabc994b9370df9c78d4ee2b645698
BLAKE2b-256 e03a9eacdd3e1a7c7340edf1108723fd9d8902cbee158ea73a246f6336fd1e50

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bef5d524ca2bada786dfd3ff4a9f076a9fd19dffc454145f47d7bb0276183221
MD5 e9cb1c1f3fcde84ae72310124bf86518
BLAKE2b-256 4c42b8b7ef7645189bc4307d3f7bda37df53b54449ddbf9c1420405415c5e5dd

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: hussh-0.1.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 279.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a223fa793d15d1d9062729297743c4fce422d76a3cb9566a2c46fa98f06815d4
MD5 24677d57a247e08cf64f65b35185c2cb
BLAKE2b-256 3b885a4383671a44a973c39205e83d33f6fd5824580b6efbb459bccf4523cb8d

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-none-win32.whl.

File metadata

  • Download URL: hussh-0.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 263.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fb14d7855e508c07f3791b71e83f946469c0f99df8d1db24670a2e51f2b7503d
MD5 2fa39c84996a49d2ae290ab11f93c888
BLAKE2b-256 cce34427ebb7f781d8a897c3f7947a872f06a8ce760d265a730f6ddab48ac664

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 932256ce488f4f6b4b7014bdf8c2fa3275494227a998102f87f01c312eefff2a
MD5 cf606b3a87c1bebf6069a6626e52cca9
BLAKE2b-256 73dbfb5f3626424f6f3f67ce7c2cd35c705f0d5de7196aecf9a36ae293c28b35

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6ebabfcf8adae5a6abeeebae6d04d681e45304f902fdcebb02c06086e2a6784
MD5 f87f516b5219886dc494802bafd7e309
BLAKE2b-256 b9ad85916ec196f4320cba13481cc984f14ee65e20b849d6fc74954633216ba0

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 359db277b96a05e28a45d3b0666b1f854f1257a8b332bfe0ffd0701aea147647
MD5 a7de8afd2dd243b599ac6491d5458ef9
BLAKE2b-256 33f4671186e36d493a5b989f0a0ba1c0bf91d161b1cddc7725bb6a957395e46c

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad8f86fc2df2a2c91c7755d0b1591fb4e6cb00108814c8281795a1a524904ee4
MD5 9ec6591bc130e305b81ec4d31a016550
BLAKE2b-256 054a051f8d7926afe432068f253c8158dbb511c478b520f85d29e9677a8ff10a

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d20391035e5e6ef3c95840d60c0b0a543c0a38d77674ca7ac9157be167edc85
MD5 4f60c8077762a6a854e3d43dcb3902bb
BLAKE2b-256 f4f5ac385de8320b1e0e15add0d989032d470e091e12435b2ca7aa518faae67a

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: hussh-0.1.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 279.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f92f3d19ff1bc192e9c96d661037a4e9e43c50bf310e0f2b169b45ae11b8df7
MD5 afff390e59caa83b73e7b826d97d757b
BLAKE2b-256 909cab0c811bee3b56713b1ccbbe8fea72d387907ff8e5ceb478290a113a2021

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-none-win32.whl.

File metadata

  • Download URL: hussh-0.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 262.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for hussh-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c173f52729b95bc40ab495b4c3a4629fb8ee27872ebccc99f00d7d3bb664c049
MD5 b78c4aafe701939a8cc16cbaad0924a9
BLAKE2b-256 3d9325df11cde439bc29abc3e3f844b8049708eab5ce62c29d08cd0d2bbe98d0

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7d6ea2edd55d9bdb65848ce5cbd951af20acbcecc053fd09f3c79db75b20ccb
MD5 a4e19e864351610ccb78d5ec214da101
BLAKE2b-256 c526c42f16a0eb37d5214697df3a1a285352f1b07f4b3a6debafac6b8aad0d14

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 122f5b0546338bcdbc9ff76c4f67bc02acc1f34586dcb7fc6a89dc1bc62fbb3b
MD5 93eaba38023386ac47f2eb2de805b95e
BLAKE2b-256 42da5e4337c3075e86bb4803ba90b77ba6209c3d85acffcb7645794a52997e24

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 473f6d1db1525a0a7c31470dd7a224721111efb77f88ead9ab4ed5c68c8b5635
MD5 29b784c4a3f239f51d7c79b64cae0191
BLAKE2b-256 b9176d448ac9dcbe907f310374f8830c2c2534c7c6f28bd31c354dbb26e4f69c

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0f2dcd5dc41f473d384fc74e901a7cad86dd6925c64ce1a7bc909a8fd7b6069
MD5 962dd6212cbc4a6f1387dafafe4844df
BLAKE2b-256 50d60e8d0aa20d51741fa0867b311d9ef1cb092b2d07ec541e71ed8bc7ceae16

See more details on using hashes here.

File details

Details for the file hussh-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hussh-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27a6cea4859062caaa2f658fa4c12a9bd9ad1e3eb45699f8b0cd6b1857b5b66
MD5 0d9ece7c8511a0f1698163d6fa24ca1a
BLAKE2b-256 fcf839f8e765e575267db66beaca914b0ce5c5005619ebc26dc38f92333f52da

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page