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

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.tailed_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
  • 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.3.tar.gz (399.4 kB view details)

Uploaded Source

Built Distributions

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-none-win_amd64.whl (287.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

hussh-0.1.3-cp312-none-win32.whl (271.8 kB view details)

Uploaded CPython 3.12 Windows x86

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (383.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hussh-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (388.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

hussh-0.1.3-cp311-none-win_amd64.whl (288.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

hussh-0.1.3-cp311-none-win32.whl (270.8 kB view details)

Uploaded CPython 3.11 Windows x86

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (384.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hussh-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (390.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

hussh-0.1.3-cp310-none-win_amd64.whl (287.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

hussh-0.1.3-cp310-none-win32.whl (270.9 kB view details)

Uploaded CPython 3.10 Windows x86

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (384.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hussh-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (390.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

hussh-0.1.3-cp39-none-win_amd64.whl (288.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

hussh-0.1.3-cp39-none-win32.whl (271.1 kB view details)

Uploaded CPython 3.9 Windows x86

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3-cp38-none-win_amd64.whl (288.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

hussh-0.1.3-cp38-none-win32.whl (270.6 kB view details)

Uploaded CPython 3.8 Windows x86

hussh-0.1.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for hussh-0.1.3.tar.gz
Algorithm Hash digest
SHA256 bd5c1c15888d2322667e75d4ce950f6c15a07bd6b59688b56006a768a1f00f7c
MD5 a678e9421a2a44ee003d48df1b62eb95
BLAKE2b-256 6571a6464ab05fd2178d004917ae52d348f23ff688023316d6eb9301ff7d75a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52dcb51d041aafc0d39f3dabc583d1f037393d6f91e3e50f12bb3c6cb6e45b44
MD5 6a5b7f0d9fc09b7f7edeb06292f56690
BLAKE2b-256 d0359919d1a7418b648c221e49413de885173af80b2bada0ca545be739c2fa58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9079dffea585e671d91e85237f7ea9e3029826a632ebb444fdab760e469159d6
MD5 84bb5588611aa0198ac3e8aaa3276017
BLAKE2b-256 7d1444e3f41c3bbbedeaad4ed44f702d317a65b0096ca7eb341192f870e4a876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fc5280dae2d026e668fb9659467c3e78c2089b9fc9e9ea4dcfbf4759464729e
MD5 c3ad3348bc75b147700e40282bad3b5a
BLAKE2b-256 26cb3c3fbbb5c52a870b0c319f701653bdb103a97c0adbddee47550a18f423b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40a42fd1f383dfc5c45d2de92aeefcdef76460902bcfd215a250fac71a8fd56b
MD5 bcfe2fdf13416c213571a783636a17ac
BLAKE2b-256 c166ae1cb4c2c410b61ca670a931290ad41fbc456826340dd2e74c859491640d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d284a174dbe6ea2e2bc774f16208ca576bc0559e51f0bcc0cfbf90094a894db0
MD5 5a5a1adf3ff0db5c368056f66d0a645b
BLAKE2b-256 3774827cba3ba550c7609d74f3eb888517d647dd0b851faaeea524debf39f7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 030f62bd2411a18a081f9864dead92c5444135aaa4ecf80f8cd1f8548647d10e
MD5 42711acefc660f9b15508aa3e4303e4f
BLAKE2b-256 87f5fe93e2c15deaf33042357f8ee1a5fbf8dba0e5effdaddc03f24b7a3d6cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f9fd4a664708396f71c0bac84d216dc09e7a8b1dd5adfc1aa141a18f6c351d6
MD5 6d9c945043a1e69a52403b9c96df18b4
BLAKE2b-256 7d2bad4e716b8cea9d8052d310d237beb215eca3a36c9294f10ab686789e2a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 542fedeace0f8ef3763c157bfbe51eedbf4bf850e012ded8891275cbcf40df95
MD5 7ad3318d19888ebe45487082059ddd38
BLAKE2b-256 d11bb9d53536f3457fb5f5f8a979b36042a3b6e365fe2510ddaecb8ca821ddf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdc272b442306b3664be2e138bf5735a0e845fc5856f4b5a60a7dc5f68f27d4f
MD5 a37781253738018b13b21eac2447f21d
BLAKE2b-256 5a46ee643e20780810d6a0b0bcf9eca602f7935953a77cd7d36a93bc4a19307e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4cf7d1955b79d0f4905146158ef48c302ab316fa87177d6f2a0a93cc8931a9d
MD5 2b23cba77e8c4a1c930353ee942361b6
BLAKE2b-256 ca38e144ffd7b098dd61e90503d4fa44672a1085d7b89b3fed8fb8ac7200a306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a6de26f9ec0b406a48c171cf854ce338346ba8430556532bea0147545ada75
MD5 0c71e3c306d3c8e1ffa1404cff3dfaad
BLAKE2b-256 650f3af408462833e5edef3a67b60f7bc0c0ff808f4f0971eb216a72f72b7643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6c852929a995da0ded67f5da0054307fe07355556005eec9ab477803567fd78
MD5 2d169d97ec1f04a02ab4d3863dd9888e
BLAKE2b-256 a68a238b607c32d8c5628bd0737b91b3af1b49315dfe82d4d0189ad1a7558ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e608786b9bbc84f1f4ef0cba166d9376b4e951564d920d289c08eba598d29cc
MD5 c549df12a9f89549745fdbccab399c09
BLAKE2b-256 37f521377759911386dbbe27bad7a52a820165d4408e3e1660f54040fca10f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce38bc17c09e6bc1a54b7ed25ac1a0ff2d609e5e8138659722fd96348ce0276b
MD5 0844663cc7f59a15af5d64de4cb7ab42
BLAKE2b-256 e632dd6f44819d910f159cd7c6b5aae1f34625cb543fa7b79997f0f218e8250e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdcadcee4ccf884fe6103c3bbf3e6e0edf065a28ca102202b39e3a0d465aeec4
MD5 f485c536ed75e110e6e0afdb1ae823ab
BLAKE2b-256 ae2c0cd5faf8b729c7f7c596a4197b0bd8a319f9f7606d22dd53928a534b5da3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 287.2 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.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3c20b7b64fe74a3d56ed09379ca509981df1541cfed742e0e0ed117fcc11d181
MD5 767a97fbfc9ac3aa5777a33f36a84b22
BLAKE2b-256 853b4e5a8f183cbec71da20ecd4ad912e7534ef18ffc23eccc136ef3b416ba3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp312-none-win32.whl
  • Upload date:
  • Size: 271.8 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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9f396e57784c96d00e53e355385aa2b47ee2e3673cf4f8b30a091bf97de1ade1
MD5 77425ff1fbee01687fca3378d0e783fb
BLAKE2b-256 f05afed884011eb0a25feb16638735039d349287465fc2c4fabbe09c4842b988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d324a4a2789feee8f3b8a471917ca04cb2dadb20316c3c3717836155f24cd9dc
MD5 691e59cc95ca747dc55c279a61b655bb
BLAKE2b-256 8061487f895000011b2a7290c2e35862d5221d71d15403705c7608632e934fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 972f23b6743927fb1f499b46b2a21674e57bb6eb9eb455bea9b3bb8679c97a4a
MD5 f96c2a0cca30b55bc2fdd0bb75c4c986
BLAKE2b-256 01d159a5f630b4c1dd3783cebe6b96efc8bbdd67cd4a8b1485ccd819b82eecb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af554034befb3c803512cb37b5e0fdfacfe4f32071ad0a963bb525c238d12760
MD5 9e2ef0fad4404107b09ca62982d33b4a
BLAKE2b-256 27bb55b602f571978ac169f51919ece452f61678d55e23ac57a3e7886f7c6190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d155f8e9e5c78ea28f9cd5c509d6adfe86fc9a29e1f5d25d433a6acc1f43abf
MD5 70d208f725c6ff04168ca7f118427e7d
BLAKE2b-256 d4f61d2c92d717eea486c77025d440622a3fa8a644975e7e3e08d588523b2a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09803aa0b3cea221657f940c3b691fbc44601e80b156fb0a628f8a4c99bb3ca2
MD5 949499c876cd9b46967d94a80177b4da
BLAKE2b-256 60e658b0f1dc63e4a937594b1fa3b1d7082377fcd8fe07d045c57267f42d559e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0090a796799edf1f496bae9d90318838fcbed3b29ca852f54986a968caa6c90b
MD5 112c523d046e5b25775eea52f5b60ef5
BLAKE2b-256 86d93cfb3f6ef138b12a955e58ff9afe7d5361b7583d4e1ba76184e991ace334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b290ea4f48d0e5d9f19794a0b0d0378aea0ff2d26bae58412c2e8d8ee10ec0ff
MD5 aba2493640c753a2b7f94eab14c9c7cb
BLAKE2b-256 ccdeb7d8ea3ed382f0c8f30e20cc0bc17ce56d14b229c08e1bb7008326fa8313

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 288.1 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.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1d25403891a307755876e3deb30dcc4c56365bdfc4a33ee2ecb7425d300ac7fd
MD5 80617d046a975a9211a5d9f92e1455f1
BLAKE2b-256 0220e8a68b3ce23b44cf8fef6d7cd5c321e9cc50872af609b56ad2a190279b68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp311-none-win32.whl
  • Upload date:
  • Size: 270.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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6d4bb88e619a8fc25cc7c075a8307b3934b73e9421e03edf6ff1bb6ea9dcc91c
MD5 044123ea2f03fdf70ebe8bce151cd73c
BLAKE2b-256 397d1c248652210dcce7e950d4372a571844bd047de2324583c95c1cf746cb4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970b1f0197a145700d2b322f8d06946493451aa75d67b1d16dbc8ea4e100a745
MD5 3cc462cd27a2a32bfaceea67e40b8bf8
BLAKE2b-256 930aa68a08066f07f5e1ef55dad4cb1ff6ba58adb1bc1eb2c4e0a33252fcd8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f53d4b34782365102a755f8885578c9cbf29aba3920c9ad50a287224a7ec8953
MD5 8388591f00417cd363c9f407d7cb9347
BLAKE2b-256 142978ec45dbac535c5db6020524d360e1985a7152fe90294150432cd0be13e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2a8633eaa8af15ed79f017959110e83ff037d84b7095f0686b9286b81c61e6d
MD5 90075de0db4299f5077f667ab70e6e10
BLAKE2b-256 00af65493fec5d90b3caacedbf93c9f0ccfe283d43c3360f933e8c0bd5ed15d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4be9d7c1786f63cc9a434ae43f006021b485b91c2cced46794603572e10f12ee
MD5 0fb690b3b089b15cf0ac8454fa5d3b9f
BLAKE2b-256 773ee975dde132dc8f11c7934414654014e5124a53c9962dc05fbd19e39cb05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fbb9202807252accc0e86c278ff8a7716d97bdf1d9218d4e5e8aaaa09ea6f7b
MD5 79b87b9fe83f5b5b32d36d80857282f6
BLAKE2b-256 0ab11d781d2596a218f09adc21421ee654ed5920056f70fc102a533af7abf8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0065bbb9f2ac76d956b91a88769c1db81ca7206e414fbde1d82b0a106a24cc3
MD5 6bdf9df386ec21eb69cfc560d91d3cda
BLAKE2b-256 152577446bad2969d911e5f41e71452f9b69d69417afc83c73811e9a330017f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e5d37632b6be56ec82a67c6ad79ccbe82cca96a909ed5fdccaec989e3ad8531
MD5 ca81beced58aaf88a1e09951855aea19
BLAKE2b-256 be899381fd45aca99f4094678965a77ce91b0e7156f62ab407856398170e9989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 287.9 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.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1510b4cd0ea0d05f6a5587ce5075008d79356b95b19bf100b4259de899800ba7
MD5 fc33b91e514d884fd8dceda238226dc7
BLAKE2b-256 249c4f59d7dbd76dd9030ed23fef73721f49ecae9c654ad0a09f7f87c905caf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp310-none-win32.whl
  • Upload date:
  • Size: 270.9 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0e001a564f672be9200fae46d4727dd16fab708623617f79478b5183c1bcb28d
MD5 89ae9ba1aa066b2c571ff5a439ee628a
BLAKE2b-256 760d7e26d9b8911e8fe1a0faeefec8f1fee53961e7b46ace0af7a82218961bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6963d4571da461b3ac0e16c260d9c2f6fa525ad2aec581fa6b9ced3c6ffe74e9
MD5 afc095db93066d0fc77a82dd0d681881
BLAKE2b-256 537f5b22b80a99a897db4cac3cac4ad7e65c31ef04dbd6fc8212f1bbc1446c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fcd65d6da3405d8e3d672c7134d8526562ee4d6a9439b29edcee4664d3e9cc8
MD5 442075934f8e058444ddd7ce9a08dac5
BLAKE2b-256 fd31599d61c2d92af3a221930aa752a25f924eb85ceb77efad40c4e3d589d2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98ac8a1e827ff3f47a34222c45794fa2ed4e23b64dd55dc143d1dd09c5b41549
MD5 2d52dc1cf81b082d27d58911cfd0864d
BLAKE2b-256 fe72c75de56c5763903156554889df491545074adb7069c3ba3cde1c825748e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1edd4904d4684c0e187c584558b85fbb4a98b7a3de4278d7ac249a1d87bce669
MD5 e09aa8178c180eddb8fcd93dd8ed583a
BLAKE2b-256 cc4386cafd486aac0a92720d1d2a79b161da86e56d8782d90cfdfd8f5f45a9f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 745d7643dde2256bdffc8565d7d48f8c42f6353b73c9f52a95d40dbb273a6909
MD5 ca96d16a883197394b8b3dc0581afdb9
BLAKE2b-256 0d433758739d11b6171118dec67ce831a4d5d72e5466b24745e8d3381ad328b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f85180103187757b33198ae956656cfccd394633ed3d5ab8b722aa41120b0275
MD5 34d5cd4ad4e1bcade4cc13698e3eca30
BLAKE2b-256 be6a9ea075d746fb82771a7cc2e2a7b3b0c9a59a96fe3cce5db1a88329dbfcd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d8a5a9783e8cee814eb1b00738c8b3febae0ea5f0b35044f582e9db1037a981
MD5 1cfd257fa539e7a598f2bafc345255da
BLAKE2b-256 56782c1d549583272d38dc2112946237d0fc5c55d7c513f74f97e2fb123ef45b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 288.4 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.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 52ffb0e0e651555af130876892ee205c8ba2a0171d25f8da9a0b3c3f6ea60979
MD5 1a325558b7272db075802bb01dc15bdf
BLAKE2b-256 a9154b4d22c8e7e7cba211ff6105c3af0e4e0d3b5cd764c6f0fe038019f69240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp39-none-win32.whl
  • Upload date:
  • Size: 271.1 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 937e0362b497cd86f7eda3babccde36cc043ed741b296ac0ad3667e20cc53e5e
MD5 29d9894cd027ea22e62f9c346e82cea1
BLAKE2b-256 d7c53896a77e0e3882fd0809b5e16287c7ce491468234f91ecebf46d0bca9aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca0eb9d65cc4da4777957c03ac13bf5c827576bf99ed8914c79ca1435a71ec63
MD5 11fc3146d244b063ada771c0d5b69c0d
BLAKE2b-256 544a1f3175f1908f794788f220b9fd07cb2576949e439db0c3a177a050c484ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6043a1b817261ccb84243a5e6d8ad37a564f44f36ccee96fc7960a0586c4ecc
MD5 9cb2a110af6506cc8f593f7b27831838
BLAKE2b-256 a5d8bc0922f178a009356810124ca5a23d3bcb1932d39c6233700029ae372343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d92e4140a0640a5ba2c4afb7fd09d5f6895221b0f349b016c64ae0d269035e55
MD5 678d498c3a8697ce279ea7d483c6cdaa
BLAKE2b-256 6a05440b37e768defbc850ea4966cee28567f70e92d99f40570cc5e0a81b363b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94a48e34c86126092d79505676a7d2efd94ba071a245b3583d1f49bb5abf5b24
MD5 58709dd56add5261fbb3b8e8c89c625e
BLAKE2b-256 79eb4a872971c5b6622b7390067477c97f2dfa190cc1f7577619ead474ee0144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 887238b134374f704e8b9df31c487f527e70950021ff4dc04c6ca6053c4754ab
MD5 59dd31620e38b13cfc25e9afa05456bb
BLAKE2b-256 46520726081eda6dadbd6f5e09e51bf548b487faebba365f6ce5b14c36bb0e18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 288.1 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.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8d42377b553535410b842b6b96bb120f0e2b2be57fdff4db2855f7236a45b0e
MD5 d59c8690e5b18ba05c1b89841768259f
BLAKE2b-256 9661b1a3f26b42b82acd1a0e0c86b87242dc7306df10f08f09af14e23e91a999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hussh-0.1.3-cp38-none-win32.whl
  • Upload date:
  • Size: 270.6 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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2f2968245e3250b37f613fc5da5a830e5302a60e7753192852975cb8f5588416
MD5 05bf8c858bc4373e894d089d487e40d5
BLAKE2b-256 dd32a18a3bc0623a3c5a16e7981ad60d2c365c9c567188a32870732dc5a8bae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abfbabbac50303928c1b1f0d095af241027130c6100e6ae60749de56a6ed7f7a
MD5 321c61c056b59a6215ddac88117f3172
BLAKE2b-256 7c5f6d45e7f3f0b9e7ddbf89950ec3351d1b217a0e920c93d78fa519df2c7fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30ffc53484372a9e540805a0496ae25c7f59f296329502f4f33a3ff95cbb768f
MD5 9c6aed1d6e7e7db97b9b2406debdb0d5
BLAKE2b-256 afdcc9a0f22e3db8dfd46bfe3922236fb55258191589b2e8335989f68e58d1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18daa1b3c8c6d61f9bfe5410fe433afa64dc0eaf30d2fda057e58d68b5699755
MD5 ee5f7c40ed9e895db56c26895d057bec
BLAKE2b-256 715325a63428d228685ff072a48b5ad22fc5c23acaf278ec5411a773baa1029c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80f3ec8f7fc8c35add0633df78942c31a442ef9930a987418d65b66cb138ebf1
MD5 f1dda18f29180fc356a7b2a4aecbbfea
BLAKE2b-256 704c01bf3d58f0b57e8213161331679e8ebb12405eaea037166ef78babd8ef66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hussh-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 591f53a2d121ba41fa8228190f6299a18b27ff6a5504e0f2bab781270b6563b6
MD5 494634740e35065c60f45f99ff291e06
BLAKE2b-256 6673f33fef2a4662f1ee1902d0eca0db70eea456ea0f997d11f5c207eaffc14c

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