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

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.1.tar.gz (397.4 kB view details)

Uploaded Source

Built Distributions

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-none-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

hussh-0.1.1-cp312-none-win32.whl (260.3 kB view details)

Uploaded CPython 3.12 Windows x86

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (372.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hussh-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (381.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

hussh-0.1.1-cp311-none-win_amd64.whl (276.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

hussh-0.1.1-cp311-none-win32.whl (260.3 kB view details)

Uploaded CPython 3.11 Windows x86

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (371.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hussh-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (380.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

hussh-0.1.1-cp310-none-win_amd64.whl (276.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

hussh-0.1.1-cp310-none-win32.whl (260.3 kB view details)

Uploaded CPython 3.10 Windows x86

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (371.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hussh-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

hussh-0.1.1-cp39-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

hussh-0.1.1-cp39-none-win32.whl (260.3 kB view details)

Uploaded CPython 3.9 Windows x86

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1-cp38-none-win_amd64.whl (276.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

hussh-0.1.1-cp38-none-win32.whl (260.1 kB view details)

Uploaded CPython 3.8 Windows x86

hussh-0.1.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for hussh-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1349fe117be98e82f39fbc2403901135c7b306a93c8e840c515ab79101775241
MD5 2bc4b74b2cfba588c1902d01e1c380b9
BLAKE2b-256 9f908d9d04ab629ce1db6563acf36b71e8582a14e8425e58fb32c63853923c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2294a2af8995f34315b8010f5675e030279bbc01e7658040223a235c6d3a245e
MD5 c037a71c8d159eef684dfebce2726d7f
BLAKE2b-256 f0b34810405639b6ecb32f57a4ab549af2f7bd1e2d0aa02081fe64ff1477f17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5d1aaa606fdc10f71dd5f30617cb86a092cf26e68acf833bfaf119c6268df33
MD5 cb62c59ac1ad59c688b60115a695be6a
BLAKE2b-256 7ce64c5fc57f79f9b66a7adb971e41c28116dc392871a340bd961724d075d294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b338d6aecbd5d128073f1dcf94d487596ca1966ca750b8fe56538459bdab9cbf
MD5 b24438b596123b8c3a5a15ecfe34fd8c
BLAKE2b-256 edfe707dcc0d653a7c5c7968a4715fed0ba0b68a57306475c251b500d777d3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f166398be3ae445af2dfe4e8ae2abc82531d4ebdc904341c48830280541ecfc
MD5 fc71420ba05de570d33026b998738be5
BLAKE2b-256 55ec6ab13ceb4de0dea17291cf577af32f23e1c1c3821c157aeb9247881ef014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcf80b988c9c0f3dbd9fc9b84dbf8d0c88a6531e5b63390ba8ab76923a6d2d5d
MD5 6580feba4fbf31c53ae2ebf2a1d978d8
BLAKE2b-256 2cf50b69a5007fd25fe9e12c8252444e8fc7a09fdebea2b32ba60bb080f85167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a468ac6809ccc13b5549a5edf104ccc12058f882738a82bfc8ee0b87d797d7b6
MD5 4c0df7c76350a4094ccd440156395533
BLAKE2b-256 977a1520771dda0e94c64205424e932dec5c1aa15cc7e9cd5a209825d1bcb5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96cb0d3759944b815920bca38159c70facd28197aa179c07ff01a926ad597a19
MD5 cff424732dc29ab91fccdbadca60ee88
BLAKE2b-256 247e7bd227b6eb7a9fa5e000dc083fc69764cbd2b5749562b244f6738979ef01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fa3fa8b1307b14c2943996c731d0a357b29fbd7545b9ad1d078ebd1977eb314
MD5 9ba5b26ecf0842ce0af810406680c809
BLAKE2b-256 1c8ff06b40033463e381b70c0901231a78d4c542b6e5ecccadfc8a6e1c950404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4939caa2bb3367a9b6b6684e9638583cbee76551839ca47fb147b56383ef9e7d
MD5 17f578379a918176f4f617fa49bfe284
BLAKE2b-256 371a3400098a01b69471fd863fd113326f3285fa94841ad1835e9bc9932ee793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ab9e9f31a59c33825c251fabe08f4e394799dd8c1abb849963f6b59fa57c985
MD5 2ea87f8d9b017c1af767605a722320b2
BLAKE2b-256 e6209ab4c4087a234b6d5d8f3cf4934d722a5e3f3d652095e08d577bc9ff5ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09e317e5afcae0697ec745580d1704faec1edae7c981e3afd7a65a13ea3cd211
MD5 50b4e6d0c57b35863b18ea14ec7cfc8a
BLAKE2b-256 417007852380cd0678ffa454b6b93dfc4f099867d8f84a591ef883c7d854ea1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28bbb200375312a933d7c0799b2a078df830bd4a2e5eff371031dbf6b64222b8
MD5 02c9a79c8bb0e25c754b3cfffda722f3
BLAKE2b-256 dff7c77231c3ceb60d51bb52ef41e26caa94a74fa0f87cc01bb54d9f249a0557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15ebf3aba202a2dd60e759f0649ed2abc16c50d09507f74b007f3f02a6c622bd
MD5 be7399f3703a4b0d0ca62ab14784e399
BLAKE2b-256 7ad757922651b2a95e4154e3d4bf79fe7056da4aaa91939ccedfbce91ff6a8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f5ffa0d736286a25fb085a6e20474547d963d0dfdfa54826b3b10edf9c0f235
MD5 3c45006ac075746afb496b47baf5ea17
BLAKE2b-256 c894e990e9f371198b3f74742d5d8ee7439dc6d3b6433b5eb1dc5ecfea707d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 424a7cd9f2c768ba83cf14892777bca4245d7cd2974277e5759d43140da02991
MD5 2dc23a2f1890991146a9ae96136020fe
BLAKE2b-256 3c04d1e4e9917882519127be07edc883cb644a0d48f34703fd5769359da7269a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 277.7 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.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3864fe548dd19935e128dfbc4afb2be495e82a509f8c957886c1d206a272e9e9
MD5 1ad83f59ce26329e891f39b26b99f073
BLAKE2b-256 e0351fcef65bf84f1540c74f1d2f72f55a68ce350564e1d3f03c54070aa65a36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 260.3 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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a468257bd5e23d434c4b92cf8cd6726b7c44d0d7b059ed77536cbac22aeac31c
MD5 bcc1765f0d9142098072050355edb5d4
BLAKE2b-256 ee5af694015f4e88a8381616104e9f8a75e12d6c25669ca2c42bad2392bb99c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55d889d94492cd7a2342ffdc2485ed9cc2ff8cd285fe45f296d14a974a4f91b6
MD5 d3737b3f12c3b8ed7e041f230976883d
BLAKE2b-256 e1d3abafe004c2415c25f85b5191cc0925d28018c22f7595c405f6f61b8ea37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc7b9a0264459b9e6c7b8a14f8e85fd69b34abd9425baef14592e3e50c803a95
MD5 045a6652ef8687c82264b81a929007dc
BLAKE2b-256 2f372451632562554169dd2071fff4d834fb02e0c39eb5487c5ee9ceb14343e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 062d30b9fb87685a37b3566acd290d91bf54b97f90c57e5e04b9aab3dcb930df
MD5 f9dfe6166d1fd19b8e620a5c47f5068d
BLAKE2b-256 be63a565b8ee715006e65cd893ed150e3e0a4d3c3d2aedabd721c080668999f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7eacf3aabbc23b27fee4b6b51a2f814fc91b7208420e1d676b423710baf300b
MD5 738c81442fef355965e1c782469b7043
BLAKE2b-256 c32cdbe91230eaeb0d05eec78eec201e3f8c4c0e92da7d4a75ff09d1db2093b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be2bf13f50178347c60984a515f94ba0f66db05c6ba1ebc2f7c16423167329bb
MD5 2b8a4b39af195d8505c4c63b8d288b82
BLAKE2b-256 80c8818095d5cb595e54a114d36b0778fb07ec8555d5e651a509d660a4e56bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be766c2e844e73418753888e0bb750c05b004e06c5ee2d6ddd1f6baf2de1a7ac
MD5 5f4efc8026f0b0a3341b535eecbd3884
BLAKE2b-256 69c616d4ad729671774b1596f6e6867d77515633b978146d4b5d666f07064a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc056e988a3e8c3f05927d1c4ca2cfe98064a533cc592b9fad08ff9a0a742953
MD5 7b1d92af775bc00b742e21202172ec39
BLAKE2b-256 d9a558083dde9910e0db308e4f7c9bdb282e6d19d20428a4ec452a3fb8c6aa41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 276.8 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.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 fed091290726cbba164c1b1c861680b88c2007e39c1babdce8872a0060ae9bbf
MD5 418ac525f8b748a88f1ce0daae66edc6
BLAKE2b-256 d9a142d9b1f171c79d7be5b82131a321722f9c4d7c0de283220c3587ea72c386

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 260.3 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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1d66eb7ec8d7fafe149eb719f214b953a7de43fd514e1d02b2bae667e164fa99
MD5 25cdeab4bb140e410a4bbbd129bd656f
BLAKE2b-256 5fb5f0ec425ce038b54542936d71975374bea2e6e17df558f25e29e03069bc8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc44cc3645288c371495b7ddeb230956c467a33bab92df7fd864cbc259c477f3
MD5 af2307c8eaafaf4eb57820d73de455c3
BLAKE2b-256 be13365547326b70179bb86027436d2108acf926b9780a4ada1d0b2d8b8ec7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e40ac1c17ef79c3f1e37159c079dd08c7c935bacc75ef70cdc63577eb42cb32
MD5 68e4ce98e9a8267c6abf275d13f593da
BLAKE2b-256 c789aaf29df9e114e024469553eb8a93fc24b11706970228f5ea1ca32a2c0f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dacb5f28f5578f9c57d1b7fadd9bed1900f10dc1a53da56ef6bae974896f8065
MD5 3bd4066d16fd828f571840e46fbe5a4d
BLAKE2b-256 afadc235947a0358321bd5a56f6b8cad8408e6e92ac5ad9d187e27254450503a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80cd2b3e883deb4eaaa7d47144633b58ca3aaed6e224b04047b0eaedae879132
MD5 f4de4f0cdc8eb43a2ee1f7f79437b999
BLAKE2b-256 0b54c112c9c531243ff29307f64c7d5903f2462945c50596d7c073d8162978dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d827c44a913612888a9d15fc3af06e8bf2d1d3f0c0c5364dd344383e8c8f23f
MD5 40a58c41958e2a5f90b4d9633d5eab92
BLAKE2b-256 4edddac98dbf30c7dc822dd8643b21b23a7b3c2781025d1500fa74c2fd1591b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f4c01a8313c2c6e36594782bf56da78ccefa9cb6ae36a5fb7719d57139a7cef
MD5 c903c0fc3c2557b68edb1a4d105b5603
BLAKE2b-256 283c1d1f74a650ecc634a1c65278dee3d4bc44f8d781349a361e6266b3651e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd733521c2c140889e5d5555aea09c76d9bfc316674ebc89b0cfa80221b2cca5
MD5 0990f56e37a898c51fc1fd132987fe05
BLAKE2b-256 43109729abdb526134013048cb1bca871b45aa084c3f01ce9188ba47b846cc59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 276.8 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.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f840284528abbf36f0d630b7175e952b96b575c720102fe7289bf01c8893650
MD5 38fbf1237baa31ffe01086d18ef8214d
BLAKE2b-256 c35b664d5b9c8661d1f38d5016505990a1934cedfb9f09095f6e852c1f3ca38e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 260.3 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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b17b7e0c23949dec4bad075146a3c8747b891d8bbe8f8ea3f648761903b34c6f
MD5 595fa32e604dee94533ad5272b96168d
BLAKE2b-256 3589957ac26e1fd691a739d3892f0726f72d5c4b94505bdf3b76fa4d1f457ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d9a2857779c5b4aabc4d08f0812ea7dbd2c656b6a0c9b4e74d0767c7319f99
MD5 bf641b56f27b2b0b236f29f9365f919a
BLAKE2b-256 c9f86ab1ee12d073ee261e17f4f0cd76881c792706429c7535a3850ec46201ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c945a341cb6e3badc0c397d49d8da22610f978d1abce1933db47696685e6105
MD5 c4fc737665e9c0ed99b0c1f37e07a000
BLAKE2b-256 caf86bc9b65512cb4ec101f10d31ae7868186b068f5537b271be70c581722028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebc42b5afc0bd95d17d0f482739d001fb2cbe1c2bc2c1a640e5eaa8e06ab2fad
MD5 e0b2df7fc1627fc990e1d6e6a642d342
BLAKE2b-256 2a4f01ea5fd23d0bd290444a8f1e734a804e12a2c4ead8d958a97cc55c22ac75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c20c30ddd6e7e7cd73a347879e2450781e428399161d0548aae9a662701d65d
MD5 11e8fbaf52be3e0b9cb876774ed1b58e
BLAKE2b-256 dc32b5e2fff98be0214c4928581a706a601d08816d969146840b6ce1168fbe24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed6e96ab3564916102def4663cbc6c3fd2be2f63bd9d5cf54c8e867e8b5cfd13
MD5 13da1af08c874998bf2bc0034ce59d9b
BLAKE2b-256 7aa57aa492d1f6ab3b55dd9687b1ae488b80f7ccda4fc8126794d720405778bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c885302a20000e7b620d2b5ea1bfb57c0d67fa54042b3381ab02d84de64a38
MD5 83fb13430be0e5c20b10a3545ed5473f
BLAKE2b-256 d006fb7d72be6d63023173cd623b04ca965316cf12d93e06f756e5a06659965e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08e0f5d2836a625670a04701470132de06cfab8ecfcca7931c3bc24debb7bf11
MD5 62979f0eefd9e1d841f719dfb033d5d3
BLAKE2b-256 83ac9284e69132eeddd2e85fd1f78c0c0521a5a29893e573803ba91b0da9365b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 277.1 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.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a2692edc939fc22837ea2fa39e5eb54af13635d9202d89975d6216c851fbebc4
MD5 e0f0dd2147cf82b52ae67a1f349d9ac5
BLAKE2b-256 130c422c758186697d7c281ba429f88ba49b348c2b94525418725587c88517be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp39-none-win32.whl
  • Upload date:
  • Size: 260.3 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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6a1784453a862d6c02ec98510ddf03e36f0dfae40cd440307b5c6ffa022d2511
MD5 4bacdbb928b6da668cb4466edf4c51b5
BLAKE2b-256 82cbc5bf9a53a0788a62eea6be38f9b6dd681d7e40fd66194271096ad56f4a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de759071580c8b0525b7897b08c97ed6e3b51fce0dc5f40a68a0fa0cdddb0867
MD5 80c9751248cae53552375543a082aec5
BLAKE2b-256 050308994059c52e47be34ca07c9ad16b6e8bc74e7dfe817ab1153e174a5e0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4ec6f26dc7632dcdc30111d5b54b8832e5b3bec428c98f9d7b2e0d58227c8df
MD5 3b4425748bcefbea0d8811a75abbc734
BLAKE2b-256 c0d88e5a1359a1bd3ae3f4a1f3d5b051e1cbae7d20cc021e8677a93a3aa5ebf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9317ef104f1c5659f7ab0b0613421292d872bba33d018bb0017e66efc3a7ea2
MD5 a7868b6b0d089319c43400d422420326
BLAKE2b-256 2982a734309d5c1f8ff669a57c61b23620b9308c5eca0f71a9812ae23ef87165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5db595cf6c3905a772b743f9761f1fa609ae9785a7c781bf45a679028a4fe6de
MD5 8f2746d11890c08b9484a5e334e487a2
BLAKE2b-256 5cc4131f4db0c696f49c4a90eed8cb15a1fcf695970a17890912032312ed31d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80d7ea626379e68424d2c4b096c60aec053bec47b397f66bbee5baec70015e14
MD5 2c268a71671032437cb5db2db8050a73
BLAKE2b-256 98f8933ce96d6a49935e970256062980f3b80537dbfe89dac1f92db5ea90d40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 276.8 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.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0cc50c0951e68e7e2ed12f1e3c1ea7ccaf8a3cf19b3c6c29597d007b89c0c1ec
MD5 88066035297185a0a9868e9ce612b018
BLAKE2b-256 8f36a22342ae646891ba613f38f64ad6d392460fd69b68df96940a2032fef7c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.1-cp38-none-win32.whl
  • Upload date:
  • Size: 260.1 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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 043b7abd251748a39543493b5dbce23b5f924deff3f85285c574e64b21763330
MD5 25ca8d2ea7182df4a25f12bafa0a8593
BLAKE2b-256 d007f5e639cb09dcaf016ddc8a1bbc8fd7d860eca885b3beff536685d32fb9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9244a01241eac1bb0a1033249b7f43be8d30659c6f50d42a9f5ac79880916a63
MD5 ce452f8f4af6f255265df30c395a8f8a
BLAKE2b-256 c12b197c4cf692e11f7cd66eeaba309b71426163c22a50de71d55b60ae4600c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 636dc76eb6da916f62f8ddb0a058378ce94d158ff6e83891b0ce52d73da70cda
MD5 987c801fd4a7e5a5bff562814e022369
BLAKE2b-256 5069fe2fc42e9804ad8e5a8ab6eb4bf39d90077b445f947468838d7cec0d57b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c5946b5fa45ee87e212d8b4267d524c63baecb3675a124230aad3a6e1e3526f
MD5 57af74806ec1e0d2aa3d32c268444d22
BLAKE2b-256 3ff4b833257c6c86548e2e998ef9fd7d1f56ec31d81ac57fa34fc131dcb31ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cf1da21849487c6cc1742e989f9beba71100ad30d519af919631a471b0e55e1
MD5 2b56b74a176e8ea5918ae75d55a384c6
BLAKE2b-256 ad95ebf160f2a29c0b6c8b7c2e9507aab9ef14174eed8b0c383fb92d7dd2bfa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 703fd84932c92dede1c0e22ace1152534113781963de5a89c1f1ff44f43a46f1
MD5 e9eaa58eee772fa0bdc6174641649023
BLAKE2b-256 7f85179914a42b6ce38f23991427bdcae382f43037edac3f1a699c0e3d89d234

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