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 result when you exit the context manager.

with conn.shell() as shell:
   shell.send("ls")
   shell.send("pwd")
   shell.send("whoami")

print(shell.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.5.tar.gz (533.6 kB view details)

Uploaded Source

Built Distributions

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp312-none-win_amd64.whl (288.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

hussh-0.1.5-cp312-none-win32.whl (273.0 kB view details)

Uploaded CPython 3.12 Windows x86

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (385.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hussh-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

hussh-0.1.5-cp311-none-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

hussh-0.1.5-cp311-none-win32.whl (272.7 kB view details)

Uploaded CPython 3.11 Windows x86

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (386.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hussh-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (390.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

hussh-0.1.5-cp310-none-win32.whl (273.4 kB view details)

Uploaded CPython 3.10 Windows x86

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (387.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hussh-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (391.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

hussh-0.1.5-cp39-none-win_amd64.whl (290.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5-cp38-none-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

hussh-0.1.5-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.5-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.5-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.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: hussh-0.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 b5ac79f2355de7935e272081b2bdc3fc97ad5733682318d9bf724d509caeb431
MD5 78f945eb7445b064a32af8f1f3a59ec1
BLAKE2b-256 a8d670d21dbcd5da6299e6d7bd65f24f8da053049f3e745c0a781e7f6ed5acbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a42189fcddc8e61dba0e90e3aa7ee317a5aaad2e0f4c7fefb91db423596c3976
MD5 c76af89471e7f394e3255ec26fb92832
BLAKE2b-256 3214b67f8b4dada919c6fccf6750e723d8759acfffa9f62aad2d5f40cf6d7564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfb1a1288dbe1a6bbedd09e1e937fcdac665db4168ef1e84c3e1cf533d3998c5
MD5 4d65ca02a95b8eb82361218d7f3d6044
BLAKE2b-256 baea285c74d9b1d9fb87ff3c84d5cf217a09514a7fbf3904ae4a37f16e556afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 129731a754729ca0543d2a84b97c55f8c3dd2690e5af7a614ccd8b7cd6886529
MD5 40ac6da2d416b7b8acac22f977f9d4cc
BLAKE2b-256 f681b46c9a3850f00a04b3dbb52e8f33fa0779af301082453f129f518a4fe39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04febd7fa522664792e106a5b018b16914dfa3907bb6529446b7b96756300c31
MD5 5e355a597ec21ef368f5fcb2bbc02109
BLAKE2b-256 bfc612d01de03b2ad4e29314d8599217eacc75d86e2990f61a52868fc3ccd0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f58a519780fbe9c35fe65f60fa1f821dc5f76f6d84f2efa6a47a8e8bd2ddda4
MD5 6e3e755338c597b3bf0a3ecef07d9651
BLAKE2b-256 1748d92fddf71037e73aec9069c655d84987a043450490bec52ee32ce99686a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f00b21ef8a29a422af820481241bb26c1825ddc3166a58db267ad23b57566321
MD5 86abdc09b9ef4245bfeddc911935a10e
BLAKE2b-256 82bae53ab9e7a02f060d4f9ea9a810d9da3699358896232527bbdd47d0eecfa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ce2b8145726ef5ea711726faf8cbe6a59af16ebddf5cd5a6334a1238faaa642
MD5 f23cddbdb4d3568cdeb7fe6f71b131e2
BLAKE2b-256 d9c42af5a4fbc889c8bc6b931766cfbe92d331be2cac65379986ec915bcb6d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4599f9823922e518844a5d50484e8ac9a3f724fa3087a8978b56395e5f5ec3f7
MD5 7cf35f02b99d42fb5ea7af6d0ea9d827
BLAKE2b-256 eb9ebad5e4bb31658bd2754f727fa37903202062cf4c798f3455f978b5ee379d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71b7509514e897d80c61ab3251fbd0e3da398ddeaf2ad7cdb0c15253ccee2428
MD5 81b65ffb31b3064bb623ef39be3380f8
BLAKE2b-256 499941a47f75d05df5ced21f1698dd69d5cbc64ca648b437a00ba39d7a490cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e5aec68bf92e68243840f8bb879c3d374cff83b9c9984707f23e4293fee6277
MD5 86aa31bab0b8c39c0a1b7e0c32598c0c
BLAKE2b-256 240124045e313a4beb6a55f7bd41f78f93e1bee6fb78003feedaac59b7dabc2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33d8c546b3606e59bcfbea7fbf74357e2dd9aa8631df980dae32ea67e99e72cb
MD5 bf7a7ed51e90875917a00c39bbab0996
BLAKE2b-256 256c83b1f4240adfe1e30625579d17edcfef87993b19d7d3e5417031be280a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 728ce4893cfa4ed09f244f9181ef6feee683fb294f27c1240c10d375fcce3cb3
MD5 10a0a44deaac8514e0825656544fa175
BLAKE2b-256 aa718d4ded06996f90c7c3d64e4792e7257b99d4ee8088aac4f147c798490be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7502a090404a311fbf803cb8ebeaaf9a391bfed26d246bb3f66f927444e3ec69
MD5 af0fd787b7ef51a44e1e1f00299ea48b
BLAKE2b-256 1033fa6762ee87890478e794bae63ea726dc5fa892264b7b50804f97f6d53bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d708de7f71f87a9b26e1f8e64b9410c66fc2faaa642c89c6c28b852520630294
MD5 bc92b7bbca181ba807bce42377bcc15a
BLAKE2b-256 1e209ec46644c86b2f5db11ccd2b8ba8824760344d04048ea8984185d1f313ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4650a0d74c3cfd7fdbf6f73dff7af5fc551ac7990aa6525a7d640f13fe0a92d4
MD5 7b067c9c8a446cdd0ecd22b74adeeb85
BLAKE2b-256 a24315886374c7340ef0c2345dcd76f4aeee8646ba0cac2deb1f5c967037cf21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-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.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8ef540df1e8130f92e036398a72e636662a0fcb388b6ab670d0305476e3aa0dd
MD5 2863301d8559883a5f7c1117b2e56c8d
BLAKE2b-256 4e8f88fe1563948a7c2c5e57cf33d4ad01f12fc0ff060d9825a20912374b005a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp312-none-win32.whl
  • Upload date:
  • Size: 273.0 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.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 608e2a7362dc0fe875b332c29f5daaa65b28bd802a76759672419dde680c210b
MD5 dfedb9f58142db07bb3af5e5de82c3c6
BLAKE2b-256 38594df5712cd3f510df8a08626a87b29a6de81779f0ed9bce601be5da858b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cb1e5695004780966f93d8db8fc23db61e8af90fb1c39f48dda54ab863ef63a
MD5 68ba6a8433bfbf01525b030ae12bbf54
BLAKE2b-256 ff9360099aee9490e6a90a4c588d7c1b7a1f6f573f975c799a294eb8c4ecd207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b94b9eecaa67602147a1699371f7cdf04a74c307953d4d80ea8d17c46278923b
MD5 4c8e64568ceacdb4cfde35a51b845e11
BLAKE2b-256 1ef655d4f865006df1b3e3dd025c67d85e59b0fd69f5e7ea4531a822a2fcf311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 892463926438bec0cb936c97c52c18f525dc231339d7f991707f746e8759f1ce
MD5 16292d94bc0c12956d776632feeb118d
BLAKE2b-256 b1f1dfed78476c02a31f550725c5791c7b99d397b6723ab478ec27479f136832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b715150283e40178301fb37d55dc84150d1f6649e388f2abf250428311a2a3b1
MD5 64208a949de0e8c5bf96da58991614ab
BLAKE2b-256 00bdb5bee1cd7e4a2e16e68c426ebd438fa83611ae4a28a4f542a4c00ad09892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fee3bbee48a44fd77260edc91da09d215fa2a63f21a1ba7429b674b82e57cc73
MD5 755ae05a00bce6b5a4f95a2643d36726
BLAKE2b-256 dee8b7228166a63e79e8612c06c97a713a8f46f5f9952e9f610e851db91b5661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839a987fcf31f8378c7de2a06998c4be980c14d44ef689b67331b9dde41642c6
MD5 6bfde27dff49843e844bae315aa9a0b1
BLAKE2b-256 315bbee6e3a2a2c509dc3f60a253cb66f9c6834c4b6339e2336a871c698a0a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27e0bf009a7ad99ded57ea00016963056acab32a478af1c769bbe21857a4b1e5
MD5 17f10c070f3426c5ccef45888c0c1d8d
BLAKE2b-256 7ce68adcec1dc5235a7cbfe84eea3876682e7e5dc0e4f87e0ffc0ee57bb41481

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 290.4 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.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 41292be8577d0be675419df9b5f54358e608323ba3ec6053391ca47f6a38faa2
MD5 b26031db9b6cd2d7194e350785b04b9c
BLAKE2b-256 eb67edbafef1a3a3b5d6c44fba2bb981367d4ae2276aa8319339759e94e2274a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp311-none-win32.whl
  • Upload date:
  • Size: 272.7 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.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 99850118215f6fe088e3b172d9d300395fe0a3747e21f6f908ed70390c3371f7
MD5 86e1e50a55908ada4a70f11140f9cb73
BLAKE2b-256 954410ab23fc79e1515436a2059c7e272d9cb4ed395b7c821850810855c6a82f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cbdcc5a88c9a32b096c568564a75c2ec9a097bda46d20efcbb6f22da805ca0e
MD5 b2d563a2efa815df81b672c1cbcd5e75
BLAKE2b-256 bd6c46df6b3cc71c3a4535387c26212c7fadafce83c65d3a0eb07aeb1f8cf5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52e229cb695e233af80c1082052f53076543f5ffdd0cee8d35189876c6db1f3c
MD5 c5bf0cff111259ac861a8cd001119d0c
BLAKE2b-256 0219cd5025c1bf4da6f8b0e29f07a4ff2d69b81a1d9c161bc78ef885589a8d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e6efd65981691c5330ffe9afee056758ac95ca2bf820f179297e0d1210e652f
MD5 fc80d1e752a248cd7cba0215462c9161
BLAKE2b-256 ca74ea5a2269abacfc010e8b295b6285ef47b31744733f27e3bc90760d3ad0ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1470578acde286a73ea8a1b1d417811262212a077bf4f0b28f5cdedf59f6b94f
MD5 0c0106edcbba829e9a65d63c2d56c75f
BLAKE2b-256 52091b10ea6bfc3129fb12fd8c6e5288b72a1a247f607df48c461941c0b27869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14bdf80fbaef1c7148363ed4ced8153ea5d40afad1b6407434b8f6c980ca36dc
MD5 255ee7c0c1315d05073971e144fe072e
BLAKE2b-256 89c77ece85567cc9a82467d44cca3fa939582f4b81eee0b088f9be8f667ebfdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ea7e5bde9e5282b1af87bd7ff77950865c85681aa8f2f871e7063feac9bd8ee
MD5 aedd5c5d689cad508b75e1de937918a8
BLAKE2b-256 8a8eedd0865289476c2d014671ce527d0ca819f0e59db42876d202c16ea6636b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48619250dc6fb888812efae19a4e1404b43ea0b21de671e5bd834557b157353b
MD5 7fb6daba949efe5454d6a4d3e73abbb1
BLAKE2b-256 f3a25ae0614d1be0c8e3e7325268a894c60290ebea9fc57d0b0c2fd590f1b971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-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.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6b8a192bd64dcc84c278db0aa3f657f2191b28cb7a92b64c3b4cf502660b356
MD5 15092123bc4f046cc1b20bf941c81522
BLAKE2b-256 ecd1e69e0247f30c2f0b75b51d8b902e2c3162c1a000497f904f0249afcb45a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp310-none-win32.whl
  • Upload date:
  • Size: 273.4 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.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5510f1d87b1f44406f02a155e6c785dbf5f94ea87b90d2df129bb6b3286eddeb
MD5 9b4bbff382b1573008ed7799ab618f0b
BLAKE2b-256 01acaed9e06dac4892ffadfcf63f08c06958d0ab40ad176690d88ac49a3fc513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 595eef7957511b2eee04b243b678622148af267809ea37dab725d5e25d6c7702
MD5 37479393180828afda93af9349f8a841
BLAKE2b-256 5809645dbeac8a00f7161c5695440e7ce6beb6301f89239f33cc69693517b619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ee72b82818a7d6c4ac7365bf3792dd3ef3a4631e53b85caaad3789d6ab3f86f
MD5 e339c95a0f4148910438839f45fe4ecf
BLAKE2b-256 ad25e68a88f8c9338eb632f6166d63e3725133ada70056a15f09e3fbe8243432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 551203677ea8dc5b51ca0e303e002fc2a826dbec5c20af6ab43c8cbb58f259db
MD5 c59f16b140ca10cea6eb7977a4bb6f80
BLAKE2b-256 562445ee6ece1bbb9b6ac028f52538c413f3e8890c1e3ad0e9c1bccd14e2326a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0fb4502eea8992e168fc5bfe32959b1586822ddf887942238f4c6736b6a7e16f
MD5 bf60109a2feacdad68bc2c99aa03582d
BLAKE2b-256 90d9880cfd71dc270588842775a8fc13fc7c46147226fa2caeb52956924d9d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42678d81c9f77ec803bf1ad2a19743bcf5e764af94f4a6467092ab95ccd72c54
MD5 c5d1438070b3c2b4400e7dbaa9c4b1e5
BLAKE2b-256 9a7fb2dafcc90d6b72922e306fd94b255e32cfe171c80da2d654d62c3b2023ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2afabd9408723a55f72d9b5e4afdc784ea685b3cd805adf2b335db35a03eb48c
MD5 ead59468da279bf47ecf3b92dda65381
BLAKE2b-256 77c21b2c094827c0c5fd709b06b876623497ce07c211de3ff69753ad55733834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f0e3c790baa2db14d216ead7cb8f77cb12cef31074ee632a3b7a320b2890aad
MD5 70ecfe344f341bd798560ef70df6f6cb
BLAKE2b-256 39a620c9ccd923f76d26e6b8dae9bf3ff0a2320ab3211e93fc803e269c7e1e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 290.9 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.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c967aa7b68438560f356449cb96e06e04d0c6eaa2783883a7278d5aa010ba626
MD5 67b1751786028eaa7a804b185cb76e87
BLAKE2b-256 ad7cbdc89c9ce2e83ba8f2bba10113d582af2176353c9fcdf204bec91d1f29f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-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.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ed9f081bd5a7fa1d925b52a0febbe76dd2a70ce5b61ccc0fa809067fa559422c
MD5 df24ae024a52fecb90b1ce09f62632b0
BLAKE2b-256 6c5afccc7fbdfb164d3169d968ac3eccfa001cf2fb45c8fbc4cd5f7ec4d9c95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36619c479003419ae8c274f8c14ba795335839a9c0da07684c69ec5357c09e4b
MD5 5e7894aaa08e6d04bf01db13482f88ef
BLAKE2b-256 9e11c603db942b726a815883892b7a3f80a49a1306094a36971e00daaf6da537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e655e20edc80370bf04326a05d007103d743c3ea35fdcb96cf563b2f0bed3d76
MD5 b37a7a672a4c777e454c3864332cf134
BLAKE2b-256 294b09157738d505105de030ddca17b2a580db1c42378781e2941bd64e634f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b59278b2bb3b11a19a83d688bbd22b2f1a28ea198e4db79f9a21d40ccaf00956
MD5 0aab17ed1d379125e3fe76dc80f084da
BLAKE2b-256 b6b6af313118b74dcdada0a8a233323c32c4b85bb45942bb9ba2f78d170d22b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 838b351578d33f6bb177a63deb93ecbd9e108401f41149a7b9ff6d9662e56075
MD5 1eefd40fa7c6e840b609940a78c1ce3a
BLAKE2b-256 96fa05e4fe14f825d6f49695ea38746d34494e91e01cdebc430591068681e499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7f027bbe650bafebf84c1ad85a694e21b09c2f4dc6d4599bc1ceb5040645ee5
MD5 d76103118bad9cb1b7a410b8188ae9cf
BLAKE2b-256 dca06a8ec3b7763fa145fdfb1ea8a7a18764101daf88be38db4751d77eb63260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 290.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.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 806fe252892682879436cb3beafc9f1e65bd067eb2f00d8e47ae34efd3cc1557
MD5 47028e9646bb38337cfdb9e087838943
BLAKE2b-256 1a08cd97ef7e4fc5931f4f14980c02d78c5c183c78ff4a7d56867c0cb1921302

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.5-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.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 98cfc739ae0d545a12dca06a1915e9a74a62197e231cb68e46d286ede8957eee
MD5 4562dd06136c05b30171ee6a1e7916c4
BLAKE2b-256 78833d01424f6b6b4325aa42744eb6d9dfd730252e0c8edbdfc617916c2fd109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6ddacdf0d6caddf85ab77588228605a084a1632d11a434fd52f3e8d4158adfe
MD5 7219d6e2bf2520a9b61235ab4ed5e1c2
BLAKE2b-256 9913416d77a07de1532936cd39244e6fcf668a3853cf0725c30bec26e8a4591f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1081c61b1610c806960b2a6f620d8b5a725af9162f5260b3a55592847f7549c
MD5 a34ff0ee7c8c9924f59ae84035335b5e
BLAKE2b-256 b2a3dff545fe412d4c5ea81a213324171c7929de27e8c5109514103b703ec4e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80629b8d95d8027da026ea3f47c8d25409ad3b5e3c23bb0deec8c0bb47bf91ed
MD5 b7d3f20022954e645cf5666189b1d753
BLAKE2b-256 87b6d3e0565b948e7286e000d88bab9333eb594f39ca8ceb3c91d4e5d0a5602f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70e80194e27afae0613456ce04726ffd39dc9d4a32e006580955104d515fcf14
MD5 23d46f5aeca33c4cc723f9aaf98d5db8
BLAKE2b-256 348c66baa2c0f09bda982212e10103ab66f205402b95752f630e08a4f8e2761a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30bb036ea5f44ba29d4f78ffb4c7ec17cb9e4c8714fbc15eb4c5cfdac3994af5
MD5 8d0b4c8505941705f30a6ab81cf26ee0
BLAKE2b-256 28e9613bfebe807372f8eba20dce64877f33ccf18f53573de0dbd8f5abd71ef4

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