Skip to main content

SSH for Humans

Project description

Hussh: SSH for humans.

image image PyPI - Wheel Actions status

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

Why Hussh?

  • 🔥 Blazingly fast!
  • 🪶 Incredibly lightweight!
  • 🧠 Super easy to use!

Benchmarks

Hussh demonstrates the performance you'd expect from a low level ssh library. Hussh is also much lighter weight in both total memory and memory allocations.

Local Server Local Server Benchmarks

Remote Server Remote Server Benchmarks

Try it for yourself!

Hussh's benchmark script are also open sourced in the benchmarks directory in this repository. Clone the repo, follow the setup instructions, then let us know how it did!

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

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.

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

Tailing Files

Hussh offers a built-in method for tailing files on a Connection with the tail method.

with conn.tail("/path/to/file.txt") as tf:
   # perform some actions or wait
   print(tf.read())  # at any time, you can read any unread contents
   # when you're done tailing, exit the context manager
print(tf.contents)

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
  • Concurrent actions class
  • 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.4.tar.gz (533.6 kB view details)

Uploaded Source

Built Distributions

hussh-0.1.4-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.4-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.4-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.4-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.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.4-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.4-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.4-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.4-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.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.4-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.4-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.4-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.4-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.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hussh-0.1.4-cp312-none-win_amd64.whl (288.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

hussh-0.1.4-cp312-none-win32.whl (273.1 kB view details)

Uploaded CPython 3.12 Windows x86

hussh-0.1.4-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.4-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.4-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.4-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.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hussh-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (385.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hussh-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (389.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

hussh-0.1.4-cp311-none-win_amd64.whl (290.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

hussh-0.1.4-cp311-none-win32.whl (272.8 kB view details)

Uploaded CPython 3.11 Windows x86

hussh-0.1.4-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.4-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.4-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.4-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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hussh-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (386.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hussh-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (391.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

hussh-0.1.4-cp310-none-win_amd64.whl (290.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

hussh-0.1.4-cp310-none-win32.whl (273.5 kB view details)

Uploaded CPython 3.10 Windows x86

hussh-0.1.4-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.4-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.4-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.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hussh-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (387.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hussh-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (391.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

hussh-0.1.4-cp39-none-win_amd64.whl (291.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

hussh-0.1.4-cp39-none-win32.whl (272.9 kB view details)

Uploaded CPython 3.9 Windows x86

hussh-0.1.4-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.4-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.4-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.4-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.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hussh-0.1.4-cp38-none-win_amd64.whl (290.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

hussh-0.1.4-cp38-none-win32.whl (273.3 kB view details)

Uploaded CPython 3.8 Windows x86

hussh-0.1.4-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.4-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.4-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.4-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.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for hussh-0.1.4.tar.gz
Algorithm Hash digest
SHA256 9bc62fb38e367ac2225d2c241fd9e2b3f89dffab6f0bb490f162e2b0f216325b
MD5 72353ebe88ac6502205629e5eaab6303
BLAKE2b-256 d7eb3b2904c91573e62ecee03f1798743ee28a586367c1565d5a2f36e5b55c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdac00c396f5b2f0fe0694392a8800711e55018e6ad82f7e93c094f9240d1105
MD5 eaeec5564bf2c84bd4902682c7d51e1c
BLAKE2b-256 d183bcfa4c7ddc7124f5cdcfe10d4577911df5753418a6e31229bb3f3fd07fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 998b052231cb952294fd5a2797511e83850f47258e8d2f3404f038c3fa7e4e2f
MD5 854257f9ad3218d0887eb3974a5ba978
BLAKE2b-256 19174270cfb5ab628386c8e6916ffdada1fa18bbb28019dcbb30212adf50c79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee2fa53f86cd5011bf6dae6cecfaa48b5cb10793644bfe0756a69f4bfbd9fece
MD5 99d8c6456994bfa6602944cb0561ecce
BLAKE2b-256 f448fb118c1a0f92b0d10569d71393dd8a9b5f2607046dc2e2657834a9c68cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40feccbac5ca4733db20fc52962ef1b32322753ad4cdf9da4ac4d1c908af6d94
MD5 b0a399b9fb9de494021e636a9f53579b
BLAKE2b-256 197153ef7fc2229b3493c4c39f5ca63e3b05472200fffec392e0f39cf00a391a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8df591c1cf24f0b80c76e5b129a8705953dee7b6eba8d788bd23dd5cda5bcc7
MD5 d6cd5930e2f29267e2b7fdd7251b59a5
BLAKE2b-256 488f882897bf0219cf0fcf1b0cec833c324a2871de4c92cb07738b846093bdb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0521179c52e852d15efecd61843132024028ff3949d62cb05d8bd634cf4c750
MD5 1827df6c2ac52673a6aff4a73dd650cd
BLAKE2b-256 f2d72f05600290eca5700aeda12504cd87aae11c640be5f9abeffa6499226629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1ba7208431db26683353cd9fe991adc63655df1a21705c6190c1c1699ae16af
MD5 5aa7244197cd1f1e034166edb7ac2f35
BLAKE2b-256 635b6a37ec73dae23dbba1768ecec6400fe65f357cd34617784fd1068297038c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8b5d7151b39df33ab6a5b9172ffa7801a5e5f5930a8879224be99d187cbd5b
MD5 d4fb3722df47dac71cf835cc55d30def
BLAKE2b-256 6aa15db072344a0bcb377abb1a30afe63f200efff221ac9522571ad5b57a0199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71c6ee434013a3c7b03d6a04c55e856ab581ab9c99ebb814556913959bb89cd9
MD5 ee3cc23bb954b3f1eb6b73aaa1fa596e
BLAKE2b-256 a7949797d197cf005323208d2c5e9ca95652454c3e32468871e8054ed3c4d5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7da39d1d78fa5468113d44770e365fe0407e7719705f1e24fcac4873c504d8e
MD5 0b1ecad141257b18d6f433d4635a7b6d
BLAKE2b-256 048d44194f431c360a484fdd12378a666aa568c77d7bc8a3b2eda0f2fe7c12f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf65e184acef41479369596175af3f486158bedfc88c4438c2c6e77ce69fff2
MD5 8a3f5c18b94eab1c994d0ff7ec031809
BLAKE2b-256 a1849a11d65d1e4e22a655f935173b6f199bdf11123a313ae09d57854d26bdb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3547e3b857bdff7ec322dd55d020d82acc4b166f555ad70f51285c4e5be14f0b
MD5 4df96a16f3c47a91a38c4075701ef2e1
BLAKE2b-256 393402e5e2cccd5d6838e5b16f7ef215629324d291f27993e7f1c0251ccc8f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82ad3dc9448893c663164733e83d92237388cc1b6c577e39c6c8bc7daa9384c3
MD5 81f9e4ffc29ba04e0f559bbfa9d90f37
BLAKE2b-256 d0670c35dd63fcb40eb852aef5a471dc737479d6dd9684f480b1426468ffaade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4e46f27b960a3db4a114ddbaa7c6f3350a8a153648ae5376c9a554286de09eb
MD5 72001f3b4fd0ebcce3c40b1b306da590
BLAKE2b-256 eb843b39aeafcd03d7a5fb02863ab650fc46dd7bbc7214f18b51d3cd7ec218f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f168ea1a9b2c1a61bcdb4c38e691c803009ffc95143871ea0167e6f21a3d9219
MD5 c81d8a95a3398932f78c3d411ba8c316
BLAKE2b-256 89ce91b15ea600001343f577bca79f159e693d1235a390ec151d481014ad8af7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 288.9 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.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a5eaab1b249f816500561bf6b10c56268f5c53f6f4c3832d03abfd689561a29
MD5 2454a1157d723109d910a9c6a55cae2e
BLAKE2b-256 77bdeb4b39748d2169c6ee5eb59ff6837d3fa550b9988e0c4f66e0f9ffce88df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp312-none-win32.whl
  • Upload date:
  • Size: 273.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.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9f9385f13f0547aa382f3d7ea65bbfab34a03d2ae7b90aa26facc08be21746b2
MD5 1a479ff3aa6d4471d5abe8910ed48d2e
BLAKE2b-256 7c7c658cebfcec317f3cd15f4230deb27add6575960690aa677d8b6297a60be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b789e92e742c5a13137242c4aa2d47dfdec16630516d29f5e3ae7db0157a856
MD5 ac3d86bbd0f8175c5332ae3def631c1e
BLAKE2b-256 969339fddb72b5f04efeaca53ff359c4394c86af77b15a6cc17380bbd305e16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a3fe1ecb76d623bce3de4faa8fe1e0798142221cae01819f42908b51add8095
MD5 257f86d1596b1b5945edfd6c5bc9560e
BLAKE2b-256 d962faf86e82927c1db8769689e4046d0ed9c62bfc7d55259ab15eff1f109f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 097041557c43d413ab1e58cb48a351978d39de237f602d02f3983bd38c780559
MD5 79c1b059380f82966d7b04782a84a306
BLAKE2b-256 ca2a68004f604a6a300b9d536cf36bc79fcdfa6c332ec50367cbe64481ad2d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88d807e5ab4daf3f60e33fbd07fcf4a6cf40a40fb3200b8f8f91f505e997f1bb
MD5 41ee5aa749f1ebfa8f53b0bf9f808834
BLAKE2b-256 cc23a6536f8a5ef9a69702547584b5026e3519ee07f66c9a0ad7454ad9646555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e8efda13311de5c1bd0954c5092ef207bab9b971972bf514b8c4e65f5184830
MD5 e68ed3ab13daaa43ad7dd30654c1b347
BLAKE2b-256 3164fd95520284474af8fbd63470e6095a56fedeed8f3ba67cd7e837b474acbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a710dd23dd9879996ce547fee5f75ad26c2068d9a0e2ff4f638eebd67764770e
MD5 2b53631ce940e9c134c576bbea28749c
BLAKE2b-256 edc4bdc0bf3d504728f18957cfd7d6a3842cc26bd329f435655b3359f2444216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 642e40ee0b3b6714247ad671c729e2ffff2a0bd6f044c5962be0e61de9a36fff
MD5 59493d759c1f1bdee34a18613268d511
BLAKE2b-256 faa61d2e9dbf4694f0fe8d95f9c65e8a7c9c52e63ebadfb3d075c669560240cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 290.5 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.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c60eadc2f89aa2b5103b678b1b2f770d6d1ade5c9773bb35f7cd57718cca35a3
MD5 a8436d0ad94c280f9ae914df9a4101b0
BLAKE2b-256 829c88e5e40a65cdec1518192233b82c65c98c08eaa12edafbb91f4796b0490c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp311-none-win32.whl
  • Upload date:
  • Size: 272.8 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.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 808b7e7c44a4b96f2d115b06f214b3209a755eab3395c723c3152e28da03bff2
MD5 8bf409f2d420c997382a7937fe236ca2
BLAKE2b-256 76ff230c059172c40ec7b340aaa84d7f204143177ef5115b4b61fa5db501e667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 224f616784a6726088e2024677ccc8968b3975bee9e0360e7d8bbfb21e0600bd
MD5 fa06cea1ad4b53775b90e38f7daa1baf
BLAKE2b-256 73f1422cf65a813a95946528bd4f9fe2eb8f920ba72a42903cb29f0c92482f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b58548f2ea9295302be87ce463c8ae987fc5d99a99901ff6e0d68310de1030e
MD5 3f7ed10d2c016d70ca299988fd40da47
BLAKE2b-256 658e82d7ac48b0756a764f4cdf1daa42e704179e5cb8331b366a846639621034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db7dfe9ac54fb5c4d97305e5099147113aae9790dc4a8e412accb4ff8b48d146
MD5 8d85040932c96007b3fe13c17274e4d2
BLAKE2b-256 d750884b3b3642b317b153e32d30642680d445f2abc40c14d62683f3f259b830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae28778f06df4eeb4aa59a172bd22ed2aa3ce52c09ede60f5062df75ecb5e7fe
MD5 47db548246e8202d550b773803ec5f52
BLAKE2b-256 9d612b8336603ce56f3145bf2aabbab498abd48fb6ff029f96f889617f0371cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2af5a2205f772ff2d60360444481a8c7921a5e9e961a3e434ded9461534e18b2
MD5 4f5ae3d1a70db33a2027b4d59781f998
BLAKE2b-256 7389ca344d84204ff99965f8f4eb22ec49a7c547914b77af8b18faa3cd1b4bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86b3507c38cb39083d265a60f4d6dce4da45e63001cda13076062e14bbd29993
MD5 8bbfeb64d74aeb6698e66f4b7725872e
BLAKE2b-256 395dcf0335737e04c4a96c24001660cf482c3ee127001d3f9197a2ec8d0f3b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a02069402d62cab2aa95906d1ca793a29f434299701ba8a4827b1492e2a21a2a
MD5 791c0a5fc6803363acee6af964a58c6c
BLAKE2b-256 9bee762c97f0381250aaa56cfb8522acbc431bd548824a0f3924981db1cb7854

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 290.5 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.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd9f7aad9b185b82697be1ae6fe19e766cdb154013aac8a9b732fd3254e48d18
MD5 a7fff0ae473de5f560fb1c24a39ced78
BLAKE2b-256 cc80b521fe2f823d0dee7fda4d23c1c02cac027c73e31978d73ebd5a00d17519

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp310-none-win32.whl
  • Upload date:
  • Size: 273.5 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.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 28a783dbbab9b9b5c0194c57e8644b42a27cea98fbc19c5370d15327a2f782e6
MD5 38ae346e3263b0a59585628b79721cfa
BLAKE2b-256 46b6f6f0e59a08ef5bb1b8f77bfd4750aac749388d3999bd4677a58caff9b790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cff193abb46912e207ce0a589b84e9e099a7683dc43b87ad191ce2bbfbd28846
MD5 4fa956221d8209dd65b712a08492bfb0
BLAKE2b-256 eeab111b7771c037d1379365e03e77f6d9681772850e65a50493cb649e9c0824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4744807e4d5a9daa110f97a8b8fda14126c0830a8830d913146a176d3ebc8227
MD5 909305add4d2e737dab3bddf370abbe3
BLAKE2b-256 448c68c6c5d3386253647a3b28472b7cfd0d051c4ff3972079be650e3ce467fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b16f8b9a306ad201723296ab808f1c06c54f5b74b333448028037ceaeffe459
MD5 e47fc401740a10fca0fbb4420193c7e7
BLAKE2b-256 0f63e8860ef406aa6761463a61bab545dd0bfc9d52458477cdca628db37b0661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d052090691ce3ec9e4967a2e78d67afd4037142b44c1facc79125f5e4f1c9e8e
MD5 18ca7dc981551aa8d4de01cb89c0d7e8
BLAKE2b-256 783ebe0ecc460e6688349e7ea68a29fc710931b12ce98869eaf7246196a0b53a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 014ed1c8f81b9620af708bf4d4d8f3382df1117fc1f2385d50e8a711f08d365a
MD5 bce9f005bedae20f54f4bd512ba627f2
BLAKE2b-256 3abdc52b0615f7cfa138cafe53f14cc87fab49894f51018175ca703fa1604a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4bea12e386055f4d8e35e69955d78eb6aff193ecc27ba4c2da3f1d4913cff70
MD5 4a82c3dd7a050bf76496f88031a21103
BLAKE2b-256 ae7937e2d5b528f976b6dba6564ee988b77fe64c500f60887fba0d64403cac8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e159bae1095d16f0543ff7b1a66f0b17894bc71dbd74b40d038052e18d893ba2
MD5 0a9d40d4d9f6735a2a04bfb924e0dbbe
BLAKE2b-256 b0a09b84464a1adf7e5d9ed29a2820976615b2aa489df31f8a0cac6f56a831e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 291.0 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.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7898c827d4aabe478a00629b9fbb3e64e42d417c28b3ac994e19f5ae795da63f
MD5 2c81ce106caeecc41d3baf3bb8da239c
BLAKE2b-256 844371c45bc9c8e532c0ad8c38d90e1430b6f96086b10f17033ba897ce3e0b52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp39-none-win32.whl
  • Upload date:
  • Size: 272.9 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.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ba33e7153514cdba55965369a1248d523afac1b6a673b86d5adf62614c30d808
MD5 4388951737377db25057093c173b6b23
BLAKE2b-256 bf848504152c8f0162e199bdce27be8efb2727467b8a5818d66dd7dfc8daa246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdffa66a1eb6a66916dcce22d1e2cbaa7e045389a7f7860b494647d5f790baa3
MD5 5152ba42fbdc1ac690e414a9c123531c
BLAKE2b-256 f5cb324b2be0e872f0fa9628ae226203ec2cff2c2f0b37b4db1aad050d2512dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3013ca381d8792932cd9a2ab6250cb9720f2fad0b963499f4ba512a0eb7eb386
MD5 66a8eb63a307f99ffca971ea50d4f1d3
BLAKE2b-256 375fb1275e0f02d38ff614ab7a87adab5d5ad26a2e283adcc3f87cb6e0ebde2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4addb57d87c8a9200f7180c199276a194e8b315a94608e4b2d127e6e0a076b14
MD5 41f4d35c3bf856cf72811737736194b1
BLAKE2b-256 aae481aaf6208b65843e827363e0c9a632fd72d0520f950300f2c81d0a6cf028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b0d84879a9cd935a86058ffa59964099464bbc3584c750f55e4dc4aea5f6ee1
MD5 66a18e2c4dcd9ffa1943e02203a3faa5
BLAKE2b-256 62cd8d5732ab082db86d4aca4a11b089f537f193c1ea30ea954cf90dbada1e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9f724998eef4c0895118651fb5be72b99041a4b5f966601dd9ad19cc79f86db
MD5 27dd329af208817e6849c044c1c9fb9b
BLAKE2b-256 bb363277f080d0e83633dc385b169e7bd1fba661755ed7533d899f10c55a57b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 290.3 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.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c9a0769e19dff0cf4a654453bad0f2d2d6c141993ad65ceaf7d436a28e038e2e
MD5 1eac3273d856ee24030072e83b90e65e
BLAKE2b-256 81b54673446de7af093ea239226096c3ed0792db87c1e432417f49ff0d42fd52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.4-cp38-none-win32.whl
  • Upload date:
  • Size: 273.3 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.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 628719c0f3df081c3d2e8b9a5cd942b88f113b9a7904b17b4281268cba7bf3aa
MD5 d708053b55639f7b183cff7245adb2f1
BLAKE2b-256 b327106d5686b612c65d84241dd3910de04cdcbe2de65eb41cbbcc197852857a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9ca70d2b3b91155896d1674a94e562f7d9979c023ea8d567e9e0f1ba84c79a2
MD5 0a2978581a9e5b6e53780c5bf7e7c4a5
BLAKE2b-256 8e96dfdb1d8ade76f41183be701ca52cbdd56a8a692573e5b410f8907ec263bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7ff90fcbc429da661b40bbf1298a0ff62e028885300544a2cd4eae494d2305b
MD5 dca0396ee33b19127b82c95295c152db
BLAKE2b-256 77ff48f50944c2f4444e1a80b7ee5de6e6dd96976af7a3cf44e1302716a2e8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d4f61cb345c0b5a183576b676eca4bfc2efd2dc3c7c2fbaa264cf5d21a32be4
MD5 290a39f8cf9ebb61a3ce1f67d0c6b646
BLAKE2b-256 61655f5d4dc39d3de6bba3d7c7f5a88d6aaffc710590cdf77abab245524ef589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af53c5b1a611d493784aefef2fd174d473fa6509a035f6d68989c9bfe570810e
MD5 7888813443fda1cc88d6f9699498e3ca
BLAKE2b-256 ac6c0f3ee548cb661ccf41330572a66b1e5e7ebbc083fa74237837ddafd66ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41429aa34684bc97a1dfb805c078553fd8f497053e9b6047519cab4b9f35511c
MD5 1336a23547b31327fd722d0bb01a0e38
BLAKE2b-256 5f9d99d7093c611582e540e9d66c533b394435a975db62de4c18549faef479f6

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