| Name | hussh JSON |
| Version |
0.1.9
JSON |
| download |
| home_page | None |
| Summary | SSH for Humans |
| upload_time | 2025-10-09 19:50:49 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.8 |
| license | None |
| keywords |
ssh
ssh2
rust
pyo3
|
| VCS |
|
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# Hussh: SSH for humans.
[](https://pypi.python.org/pypi/hussh)
[](https://pypi.python.org/pypi/hussh)

[](https://github.com/jacobcallahan/hussh/actions)
Hussh (pronounced "hush") is a client-side ssh library that offers low level performance through a high level interface.
Hussh uses [pyo3](https://docs.rs/pyo3/latest/pyo3/) to create Python bindings around the [ssh2](https://docs.rs/ssh2/latest/ssh2/) library for Rust.
# Installation
```
pip install hussh
```
# QuickStart
Hussh currently just offers a `Connection` class as your primary interface.
```python
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

Remote Server

### 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.
```python
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.
```python
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.
```python
conn = Connection("my.test.server")
```
## Cleaning up after yourself
Hussh will clean up after itself automatically when the `Connection` object is garbage collected.
However, if you want to more explicitly clean up after yourself, you can `close` the connection.
```python
conn.close()
```
or you can use the `Connection` class' context manager, which will `close` when you exit the context.
```python
with Connection(host="my.test.server", password="pass") as conn:
result = conn.execute("ls")
assert result.status == 0
```
# 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.
```python
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
```python
# 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
```python
# 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.
```python
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
```python
# 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
```python
# 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.
```python
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.
```python
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 expect some Rust panics to fall through.
With that said, try it out and let me know your thoughts!
# Future Features
- Concurrent actions class
- Async Connection class
- Low level bindings
- Misc codebase improvements
- TBD...
Raw data
{
"_id": null,
"home_page": null,
"name": "hussh",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "ssh, ssh2, rust, pyo3",
"author": null,
"author_email": "Jacob J Callahan <jacob.callahan05@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/89/42/427dfacc08b7e4332cef3c0bff11586d94c34d6144f98a9a95c0f19644fd/hussh-0.1.9.tar.gz",
"platform": null,
"description": "# Hussh: SSH for humans.\n[](https://pypi.python.org/pypi/hussh)\n[](https://pypi.python.org/pypi/hussh)\n\n[](https://github.com/jacobcallahan/hussh/actions)\n\nHussh (pronounced \"hush\") is a client-side ssh library that offers low level performance through a high level interface.\n\nHussh uses [pyo3](https://docs.rs/pyo3/latest/pyo3/) to create Python bindings around the [ssh2](https://docs.rs/ssh2/latest/ssh2/) library for Rust.\n\n# Installation\n```\npip install hussh\n```\n\n# QuickStart\nHussh currently just offers a `Connection` class as your primary interface.\n```python\nfrom hussh import Connection\n\nconn = Connection(host=\"my.test.server\", username=\"user\", password=\"pass\")\nresult = conn.execute(\"ls\")\nprint(result.stdout)\n```\n\nThat's it! One import and class instantion is all you need to:\n- Execute commands\n- Perform SCP actions\n- Perform SFTP actions\n- Get an interactive shell\n\n# Why Hussh?\n- \ud83d\udd25 Blazingly fast!\n- \ud83e\udeb6 Incredibly lightweight!\n- \ud83e\udde0 Super easy to use!\n\n## Benchmarks\nHussh demonstrates the performance you'd expect from a low level ssh library.\nHussh is also much lighter weight in both total memory and memory allocations.\n\nLocal Server\n\n\nRemote Server\n\n\n### Try it for yourself!\nHussh's benchmark script are also open sourced in the `benchmarks` directory in this repository.\nClone the repo, follow the setup instructions, then let us know how it did!\n\n# Authentication\nYou've already seen password-based authentication, but here it is again.\n```python\nconn = Connection(host=\"my.test.server\", username=\"user\", password=\"pass\")\n\n# or leave out username and connect as root\nconn = Connection(host=\"my.test.server\", password=\"pass\")\n```\n\nIf you prefer key-based authentication, Hussh can do that as well.\n```python\nconn = Connection(host=\"my.test.server\", private_key=\"~/.ssh/id_rsa\")\n\n# If your key is password protected, just use the password argument\nconn = Connection(host=\"my.test.server\", private_key=\"~/.ssh/id_rsa\", password=\"pass\")\n```\n\nHussh can also do agent-based authentication, if you've already established it.\n```python\nconn = Connection(\"my.test.server\")\n```\n\n## Cleaning up after yourself\n\nHussh will clean up after itself automatically when the `Connection` object is garbage collected.\n\nHowever, if you want to more explicitly clean up after yourself, you can `close` the connection.\n```python\nconn.close()\n```\nor you can use the `Connection` class' context manager, which will `close` when you exit the context.\n```python\nwith Connection(host=\"my.test.server\", password=\"pass\") as conn:\n result = conn.execute(\"ls\")\nassert result.status == 0\n```\n\n# Executing commands\nThe most basic foundation of ssh libraries is the ability to execute commands against the remote host.\nFor Hussh, just use the `Connection` object's `execute` method.\n```python\nresult = conn.execute(\"whoami\")\nprint(result.stdout, result.stderr, result.status)\n```\nEach execute returns an `SSHResult` object with command's stdout, stderr, and status.\n\n# SFTP\nIf you need to transfer files to/from the remote host, SFTP may be your best bet.\n\n## Writing files and data\n```python\n# write a local file to the remote destination\nconn.sftp_write(local_path=\"/path/to/my/file\", remote_path=\"/dest/path/file\")\n\n# Write UTF-8 data to a remote file\nconn.sftp_write_data(data=\"Hello there!\", remote_path=\"/dest/path/file\")\n```\n\n## Reading files\n```python\n# You can copy a remote file to a local destination\nconn.sftp_read(remote_path=\"/dest/path/file\", local_path=\"/path/to/my/file\")\n# Or copy the remote file contents to a string\ncontents = conn.sftp_read(remote_path=\"/dest/path/file\")\n```\n\n## Copy files from one connection to another\nHussh offers a shortcut that allows you to copy a file between two established connections.\n```python\nsource_conn = Connection(\"my.first.server\")\ndest_conn = Connection(\"my.second.server\", password=\"secret\")\n# Copy from source to destination\nsource_conn.remote_copy(source_path=\"/root/myfile.txt\", dest_conn=dest_conn)\n```\nBy 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.\n\n\n# SCP\nFor remote servers that support SCP, Hussh can do that to.\n\n## Writing files and data\n```python\n# write a local file to the remote destination\nconn.scp_write(local_path=\"/path/to/my/file\", remote_path=\"/dest/path/file\")\n\n# Write UTF-8 data to a remote file\nconn.scp_write_data(data=\"Hello there!\", remote_path=\"/dest/path/file\")\n```\n\n## Reading files\n```python\n# You can copy a remote file to a local destination\nconn.scp_read(remote_path=\"/dest/path/file\", local_path=\"/path/to/my/file\")\n# Or copy the remote file contents to a string\ncontents = conn.scp_read(remote_path=\"/dest/path/file\")\n```\n\n# Tailing Files\nHussh offers a built-in method for tailing files on a `Connection` with the `tail` method.\n```python\nwith conn.tail(\"/path/to/file.txt\") as tf:\n # perform some actions or wait\n print(tf.read()) # at any time, you can read any unread contents\n # when you're done tailing, exit the context manager\nprint(tf.contents)\n```\n\n# Interactive Shell\nIf you need to keep a shell open to perform more complex interactions, you can get an `InteractiveShell` instance from the `Connection` class instance.\nTo use the interactive shell, it is recommended to use the `shell()` context manager from the `Connection` class.\nYou can send commands to the shell using the `send` method, then get the results from `result` when you exit the context manager.\n\n```python\nwith conn.shell() as shell:\n shell.send(\"ls\")\n shell.send(\"pwd\")\n shell.send(\"whoami\")\n\nprint(shell.result.stdout)\n```\n**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.\n\n# Disclaimer\nThis is a VERY early project that should not be used in production code!\nThere isn't even proper exception handling, so expect some Rust panics to fall through.\nWith that said, try it out and let me know your thoughts!\n\n# Future Features\n- Concurrent actions class\n- Async Connection class\n- Low level bindings\n- Misc codebase improvements\n- TBD...\n\n",
"bugtrack_url": null,
"license": null,
"summary": "SSH for Humans",
"version": "0.1.9",
"project_urls": null,
"split_keywords": [
"ssh",
" ssh2",
" rust",
" pyo3"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "fbec56b6f5bba3115f91f175e84f0df4f6fbc892f236c0f0e21be8d3aebba875",
"md5": "52f46244ea52ed9ede83b4d2b3b0e2d3",
"sha256": "6f857d70ae136a46977e420a4ab0a9c0d531776100341faba1d9467c9b1a992b"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "52f46244ea52ed9ede83b4d2b3b0e2d3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1797065,
"upload_time": "2025-10-09T19:49:37",
"upload_time_iso_8601": "2025-10-09T19:49:37.511628Z",
"url": "https://files.pythonhosted.org/packages/fb/ec/56b6f5bba3115f91f175e84f0df4f6fbc892f236c0f0e21be8d3aebba875/hussh-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d502204e4aad7a5ae61019c32f97d547dee1c2fb8d650fb786c10a35b66e86c",
"md5": "10d4f265700af776c7ba30cdb7c51949",
"sha256": "0ef0583de7a0402b21fabc7fee7072170d9e67452ebcca5047eaf20290e91d1b"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "10d4f265700af776c7ba30cdb7c51949",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2108673,
"upload_time": "2025-10-09T19:49:23",
"upload_time_iso_8601": "2025-10-09T19:49:23.774157Z",
"url": "https://files.pythonhosted.org/packages/0d/50/2204e4aad7a5ae61019c32f97d547dee1c2fb8d650fb786c10a35b66e86c/hussh-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f7798a4f843d151d3b393fa25f61e388f2590725b1994cfe69be5de10f4ab9d",
"md5": "fd655ab8bcb80820a619acf33e44fbcf",
"sha256": "b6fee150c3f0b6a5c9abdf87e18c283837a832486ff0fea852da7d52eaed525c"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fd655ab8bcb80820a619acf33e44fbcf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2320447,
"upload_time": "2025-10-09T19:48:19",
"upload_time_iso_8601": "2025-10-09T19:48:19.319279Z",
"url": "https://files.pythonhosted.org/packages/2f/77/98a4f843d151d3b393fa25f61e388f2590725b1994cfe69be5de10f4ab9d/hussh-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9d381dfc4f903dda74db6cb35d1e67b8c45070bce88ec90db617c7dde739507",
"md5": "56ae84879b02cff254e5f5dabfa3e423",
"sha256": "d2c465dce3c855b3658c9a885a2a51317fcc0ce9db9543c10a43fa65f32f793a"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "56ae84879b02cff254e5f5dabfa3e423",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1701182,
"upload_time": "2025-10-09T19:48:33",
"upload_time_iso_8601": "2025-10-09T19:48:33.486974Z",
"url": "https://files.pythonhosted.org/packages/f9/d3/81dfc4f903dda74db6cb35d1e67b8c45070bce88ec90db617c7dde739507/hussh-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "028c4637531e9aa69ef77648fb2b1164db852bec2f64d4574a122e4e38a0d858",
"md5": "a256e08e8a86e75cce9a54177d96c3cb",
"sha256": "2542c8dcecbdc39163aa381effe241106431d36322b5849e176f21809da4ac20"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a256e08e8a86e75cce9a54177d96c3cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1971600,
"upload_time": "2025-10-09T19:48:59",
"upload_time_iso_8601": "2025-10-09T19:48:59.275289Z",
"url": "https://files.pythonhosted.org/packages/02/8c/4637531e9aa69ef77648fb2b1164db852bec2f64d4574a122e4e38a0d858/hussh-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3260f468d7e81259c0885e6593db273e3aeaa194b19af57f46be75f412cd070",
"md5": "d0925d4ab57909c515f67e12822a7e0e",
"sha256": "4a54621f2e0abbf864b8b182457dab3aab970cf8829fe39da40f4e0bfdbb3504"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d0925d4ab57909c515f67e12822a7e0e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1996151,
"upload_time": "2025-10-09T19:48:46",
"upload_time_iso_8601": "2025-10-09T19:48:46.722508Z",
"url": "https://files.pythonhosted.org/packages/a3/26/0f468d7e81259c0885e6593db273e3aeaa194b19af57f46be75f412cd070/hussh-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2dc1ce2f78485f5c2d4079c7fa49a014566274092d6e3f5a2e020b985222fcd2",
"md5": "b9a56063f38fb80cad817db96506f870",
"sha256": "70238911841454978d5f081e2fe70458133778e130b57c979aa120877d67fe23"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b9a56063f38fb80cad817db96506f870",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2029425,
"upload_time": "2025-10-09T19:49:11",
"upload_time_iso_8601": "2025-10-09T19:49:11.432222Z",
"url": "https://files.pythonhosted.org/packages/2d/c1/ce2f78485f5c2d4079c7fa49a014566274092d6e3f5a2e020b985222fcd2/hussh-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "589bad76d080b1311b44961bc396f2b659ef22904ba2db6ad3c1a0d1d5b34ad7",
"md5": "1096281518f55f5412497317d3230a10",
"sha256": "0265decfada604a0190f163b15ce805ebcd4c084c8cb50a23759a9769d06c399"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1096281518f55f5412497317d3230a10",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2635636,
"upload_time": "2025-10-09T19:49:51",
"upload_time_iso_8601": "2025-10-09T19:49:51.869384Z",
"url": "https://files.pythonhosted.org/packages/58/9b/ad76d080b1311b44961bc396f2b659ef22904ba2db6ad3c1a0d1d5b34ad7/hussh-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "358a21af539a68eca51ba8adcc976429a4a0cd4dbba8265d6beb476686b136a4",
"md5": "f44b3b911245b391413b6d891bec5c62",
"sha256": "03261f1c352f3837c43c01cb42425137c8d00e3d3abd2d615671504d85e56e8e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f44b3b911245b391413b6d891bec5c62",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1988801,
"upload_time": "2025-10-09T19:50:07",
"upload_time_iso_8601": "2025-10-09T19:50:07.907083Z",
"url": "https://files.pythonhosted.org/packages/35/8a/21af539a68eca51ba8adcc976429a4a0cd4dbba8265d6beb476686b136a4/hussh-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a16d96eef0f8af19bb92a04899d3ddbe86e8962b19050bd48fb8846caa87646",
"md5": "8b394818cc5564dad31e60137db6d3f6",
"sha256": "c86153943780d23a91123bd91c0e8dc7dcd18a3663f0ca746bfa4bb8b5183162"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8b394818cc5564dad31e60137db6d3f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2153111,
"upload_time": "2025-10-09T19:50:20",
"upload_time_iso_8601": "2025-10-09T19:50:20.895297Z",
"url": "https://files.pythonhosted.org/packages/1a/16/d96eef0f8af19bb92a04899d3ddbe86e8962b19050bd48fb8846caa87646/hussh-0.1.9-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "431c8f61813bd1f6b3970c178d755039d496fc8894d5da2b201f0bc7a5f381f6",
"md5": "3c56578c14624f6acff34f170fab023d",
"sha256": "9b489bd47943d3f22f43a9c1e17462f278c931ff6eecdf05b78d8b0fddc4c2e2"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3c56578c14624f6acff34f170fab023d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2255408,
"upload_time": "2025-10-09T19:50:32",
"upload_time_iso_8601": "2025-10-09T19:50:32.915234Z",
"url": "https://files.pythonhosted.org/packages/43/1c/8f61813bd1f6b3970c178d755039d496fc8894d5da2b201f0bc7a5f381f6/hussh-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80f128ed57868924e49b01e62193014a881b6492e5532ef4ac3864f967b3e566",
"md5": "e05a663b0a2d6678b9b5ff1e250fe739",
"sha256": "b1afade252c5b6b96888d7cdfbc91668a2793858623ffc2aa1c34fed75d31e73"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e05a663b0a2d6678b9b5ff1e250fe739",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 298882,
"upload_time": "2025-10-09T19:50:50",
"upload_time_iso_8601": "2025-10-09T19:50:50.871687Z",
"url": "https://files.pythonhosted.org/packages/80/f1/28ed57868924e49b01e62193014a881b6492e5532ef4ac3864f967b3e566/hussh-0.1.9-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0be50299777263604ba176e49fb5cfe8f206cdaf0f5533fd98702fd8d06087d",
"md5": "85df2071dc565186cff398bd7c8583a4",
"sha256": "e94d3ada2e1c11c70a8fa4fa26af4d01ba6bfbea7523a2b468eb2e33375dbebe"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "85df2071dc565186cff398bd7c8583a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1793150,
"upload_time": "2025-10-09T19:49:38",
"upload_time_iso_8601": "2025-10-09T19:49:38.765258Z",
"url": "https://files.pythonhosted.org/packages/a0/be/50299777263604ba176e49fb5cfe8f206cdaf0f5533fd98702fd8d06087d/hussh-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b9b56cc77bff0d94e0724f2d2dfc219d372a28c19fd7ab6be0f802819a19a45",
"md5": "a7fb62044ba4db5878f44213fccd433a",
"sha256": "c72f91a7e06d01d991b7680f6b3c1fa0f9901c4175a01df8370b4d77c1bdd7fd"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a7fb62044ba4db5878f44213fccd433a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2108322,
"upload_time": "2025-10-09T19:49:25",
"upload_time_iso_8601": "2025-10-09T19:49:25.475715Z",
"url": "https://files.pythonhosted.org/packages/4b/9b/56cc77bff0d94e0724f2d2dfc219d372a28c19fd7ab6be0f802819a19a45/hussh-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53fbcff54f9020a8167f00b45e2a0c72661a8d5a5aeab585920138e3d01faa3d",
"md5": "e988aaceff69bf0836e32bb445d9d71d",
"sha256": "157c2543daaaec272c4971e2f4b2cab28c5e34294438eaf88539f3ddee50e25d"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e988aaceff69bf0836e32bb445d9d71d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2320416,
"upload_time": "2025-10-09T19:48:20",
"upload_time_iso_8601": "2025-10-09T19:48:20.845169Z",
"url": "https://files.pythonhosted.org/packages/53/fb/cff54f9020a8167f00b45e2a0c72661a8d5a5aeab585920138e3d01faa3d/hussh-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d8e1262f3d14b8d7942f15361bf5299d790078d1a72a949bb8ecf2e6ebb1077",
"md5": "ef85bdcc875ecc5090d838ad1d3bdaee",
"sha256": "9c1d2415916d4702fd66ae3910d18da7c9734a434859d619b7b91113c1349a03"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ef85bdcc875ecc5090d838ad1d3bdaee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1700953,
"upload_time": "2025-10-09T19:48:34",
"upload_time_iso_8601": "2025-10-09T19:48:34.765280Z",
"url": "https://files.pythonhosted.org/packages/8d/8e/1262f3d14b8d7942f15361bf5299d790078d1a72a949bb8ecf2e6ebb1077/hussh-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "417ea34cb77110db80404cce869889aa94feca68d1c1fa53e62d875ad16ff1f3",
"md5": "5798c1590f2672adf6c3a97e38652207",
"sha256": "ddf75a8e361d7bbdca20a78e79c69564d37e561f6fa2784ab1d7417873c74421"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5798c1590f2672adf6c3a97e38652207",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1971396,
"upload_time": "2025-10-09T19:49:00",
"upload_time_iso_8601": "2025-10-09T19:49:00.840572Z",
"url": "https://files.pythonhosted.org/packages/41/7e/a34cb77110db80404cce869889aa94feca68d1c1fa53e62d875ad16ff1f3/hussh-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4eec5f184d93f686a517365fd9f24d25aab2cd6a775d9aba1dcf1652eb36d76c",
"md5": "59e3a9669ccf0536db3d841dae0188a6",
"sha256": "d802740d0a5b649e17c1ad7ceffc415ac53a5b64f60fb703d69bfab38600ccdd"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "59e3a9669ccf0536db3d841dae0188a6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1996252,
"upload_time": "2025-10-09T19:48:48",
"upload_time_iso_8601": "2025-10-09T19:48:48.039275Z",
"url": "https://files.pythonhosted.org/packages/4e/ec/5f184d93f686a517365fd9f24d25aab2cd6a775d9aba1dcf1652eb36d76c/hussh-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42e4e978757aab72d70246514fa54585b6695c16e13d1e87fa2d911313c886e4",
"md5": "e81d5aa79bd9cd88dcc39911cb92cfe3",
"sha256": "d1b02205dfe2303b898ed09c4276b3ef573ad02bb74834debb56cb280161bc43"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e81d5aa79bd9cd88dcc39911cb92cfe3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2029200,
"upload_time": "2025-10-09T19:49:12",
"upload_time_iso_8601": "2025-10-09T19:49:12.871284Z",
"url": "https://files.pythonhosted.org/packages/42/e4/e978757aab72d70246514fa54585b6695c16e13d1e87fa2d911313c886e4/hussh-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e454f83061201c136e243c2040bdee18e2a9b3f116e264acfd3050b6de2e943c",
"md5": "312a0fd612f8596c7ba0a81418d69dd9",
"sha256": "f48237526e44892ed87fe3bee63e211a29537703f2d6025964d135a1fedca059"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "312a0fd612f8596c7ba0a81418d69dd9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2635699,
"upload_time": "2025-10-09T19:49:54",
"upload_time_iso_8601": "2025-10-09T19:49:54.516580Z",
"url": "https://files.pythonhosted.org/packages/e4/54/f83061201c136e243c2040bdee18e2a9b3f116e264acfd3050b6de2e943c/hussh-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "66773f7f2ca04dc8e92ccb56c7194aff9a09484921aadb74df29f71b8cdbada4",
"md5": "3d99818a668cd64786b72a966b4c8baf",
"sha256": "d1c1e5ed0fb12a037a5e6f90385d6a698a884f8686b15b309e085e9179deeb7e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3d99818a668cd64786b72a966b4c8baf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1988452,
"upload_time": "2025-10-09T19:50:09",
"upload_time_iso_8601": "2025-10-09T19:50:09.180354Z",
"url": "https://files.pythonhosted.org/packages/66/77/3f7f2ca04dc8e92ccb56c7194aff9a09484921aadb74df29f71b8cdbada4/hussh-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29584ab0bb9b41b68224d0a2bacb47209490f667675b5d9b5eca66084b81009c",
"md5": "8210140e3c42634ff8b1cf49f17cd81b",
"sha256": "9c4643791adf7787c5ce5e37e48d6091c964e756daf93c6fa41453f0ab39d80d"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8210140e3c42634ff8b1cf49f17cd81b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2153043,
"upload_time": "2025-10-09T19:50:22",
"upload_time_iso_8601": "2025-10-09T19:50:22.185687Z",
"url": "https://files.pythonhosted.org/packages/29/58/4ab0bb9b41b68224d0a2bacb47209490f667675b5d9b5eca66084b81009c/hussh-0.1.9-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab5e7cb4b7d088028cf68bfcc32edb2af6e5dec1d718f0a9607c0f679ca669f8",
"md5": "ffc90fe6aba56f9c048a23f685d62808",
"sha256": "dc3bdb17619feca010990b4b0717132b55261fcbbcbff5e533d36c4dd7429fba"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ffc90fe6aba56f9c048a23f685d62808",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2255339,
"upload_time": "2025-10-09T19:50:34",
"upload_time_iso_8601": "2025-10-09T19:50:34.170232Z",
"url": "https://files.pythonhosted.org/packages/ab/5e/7cb4b7d088028cf68bfcc32edb2af6e5dec1d718f0a9607c0f679ca669f8/hussh-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fb10acce441027a127cb773ad291cc1277a6cd2364f0d9c02a5f96766276ade",
"md5": "a6667ad7121d3834b7cb44af50c6ce2c",
"sha256": "fc557d34af61003b2593edf20a90e624d4716d88b2e5da8ec4650833dc382211"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a6667ad7121d3834b7cb44af50c6ce2c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 298725,
"upload_time": "2025-10-09T19:50:51",
"upload_time_iso_8601": "2025-10-09T19:50:51.958380Z",
"url": "https://files.pythonhosted.org/packages/2f/b1/0acce441027a127cb773ad291cc1277a6cd2364f0d9c02a5f96766276ade/hussh-0.1.9-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "665d0acdabff5fb51c1041c8e4e9ef712250940c651c7ef9eee11887c761552e",
"md5": "5737bf4a51378eeec8a85df468a151e1",
"sha256": "2dd5de26d89d8dedd1d18f7137c9827d7781b9720abd9dccd620868b308e51b4"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5737bf4a51378eeec8a85df468a151e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1794703,
"upload_time": "2025-10-09T19:49:40",
"upload_time_iso_8601": "2025-10-09T19:49:40.315455Z",
"url": "https://files.pythonhosted.org/packages/66/5d/0acdabff5fb51c1041c8e4e9ef712250940c651c7ef9eee11887c761552e/hussh-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b01b04c22d7e692d09b5ac7a3df79c17931d1c9d8a1ba974a070a9852d49a5ab",
"md5": "b9603a43bba5cacd9b62ed6c950e5519",
"sha256": "4df84426cbd37a9c08eee32cd3e8950a75c16eea341b5b0ac3cc88511d223abd"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b9603a43bba5cacd9b62ed6c950e5519",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2107518,
"upload_time": "2025-10-09T19:49:26",
"upload_time_iso_8601": "2025-10-09T19:49:26.758235Z",
"url": "https://files.pythonhosted.org/packages/b0/1b/04c22d7e692d09b5ac7a3df79c17931d1c9d8a1ba974a070a9852d49a5ab/hussh-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb23d4cc779fc3c4af36c0788c5971e817434f56208df2a7a45a1bde0ab429a1",
"md5": "ca9f7e774e1042fb032e64cd9d31b12f",
"sha256": "a2fbe9119ecc046d606faf267c79ba4e163f43c844f38f23e4d8f3de20c446b4"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ca9f7e774e1042fb032e64cd9d31b12f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2320960,
"upload_time": "2025-10-09T19:48:22",
"upload_time_iso_8601": "2025-10-09T19:48:22.279893Z",
"url": "https://files.pythonhosted.org/packages/fb/23/d4cc779fc3c4af36c0788c5971e817434f56208df2a7a45a1bde0ab429a1/hussh-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d2b54f4ce4d49049b9c40f49fc4417d777f1fb6e2e62af972ceb0326f911d4b",
"md5": "3fe7aa3275fde8124a64ab62ad8ec54a",
"sha256": "1870f948be9b3f17d2901cf1e1ebb6ec186e678a3d25443346f08f3079cfa15e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3fe7aa3275fde8124a64ab62ad8ec54a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1699364,
"upload_time": "2025-10-09T19:48:36",
"upload_time_iso_8601": "2025-10-09T19:48:36.702001Z",
"url": "https://files.pythonhosted.org/packages/3d/2b/54f4ce4d49049b9c40f49fc4417d777f1fb6e2e62af972ceb0326f911d4b/hussh-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bcfd7a410a5765f5ba965dbfb212df52b2f07d8e6403350c9a3f5a7e7091be3",
"md5": "b08a08f77d11768b2ae476a4dbf80d21",
"sha256": "1fb72b5065d5103008ba3caa5cd5c12dbb7443aa08444e10b3bdc18046f97861"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b08a08f77d11768b2ae476a4dbf80d21",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1971359,
"upload_time": "2025-10-09T19:49:02",
"upload_time_iso_8601": "2025-10-09T19:49:02.107751Z",
"url": "https://files.pythonhosted.org/packages/5b/cf/d7a410a5765f5ba965dbfb212df52b2f07d8e6403350c9a3f5a7e7091be3/hussh-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a482bb4eb8c7bea2c32ea1e6d10ea6e51adfce0f7419dee52f48d7e35bb295c",
"md5": "7e6a303e5f52ef67e801f408518ee917",
"sha256": "f1eefcc6859aa1f92faa571490f9bdf4b7cfdc2c5d7d6d9ec5369074cf3ac26b"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7e6a303e5f52ef67e801f408518ee917",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1995977,
"upload_time": "2025-10-09T19:48:49",
"upload_time_iso_8601": "2025-10-09T19:48:49.788697Z",
"url": "https://files.pythonhosted.org/packages/8a/48/2bb4eb8c7bea2c32ea1e6d10ea6e51adfce0f7419dee52f48d7e35bb295c/hussh-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e24935fab3306736cc0b7fee3c2e5b4df2b058bca3395f4a31ba971988f5592",
"md5": "e7039976908856a3cb52f767c0b5a21b",
"sha256": "0853022e1e8d625fb57bd1f629ba5d4a4351541729ae32aba61301e0d342826b"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e7039976908856a3cb52f767c0b5a21b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2029145,
"upload_time": "2025-10-09T19:49:14",
"upload_time_iso_8601": "2025-10-09T19:49:14.149164Z",
"url": "https://files.pythonhosted.org/packages/9e/24/935fab3306736cc0b7fee3c2e5b4df2b058bca3395f4a31ba971988f5592/hussh-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ea83b20cfdab204676e4def1f7c850c4dc305a6e81405fd2fbf28f63810420c",
"md5": "bb84009aa17c71f04c86767621966853",
"sha256": "bf315d83732ae50d8c8a2649a5e8862a19b53605c00392058fde35f286c42aaa"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bb84009aa17c71f04c86767621966853",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2636259,
"upload_time": "2025-10-09T19:49:56",
"upload_time_iso_8601": "2025-10-09T19:49:56.252273Z",
"url": "https://files.pythonhosted.org/packages/5e/a8/3b20cfdab204676e4def1f7c850c4dc305a6e81405fd2fbf28f63810420c/hussh-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df2c391d433bb3026a4a3ec9d310a2c09f1156dd470ba234f117725234f4f041",
"md5": "42b6879c7b073d60ccd50c62374b7d7c",
"sha256": "5ba488bea5c9631fe6e43d3ea477a1817223a1b499fc8a051c23cc8dee9a0717"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "42b6879c7b073d60ccd50c62374b7d7c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1987623,
"upload_time": "2025-10-09T19:50:10",
"upload_time_iso_8601": "2025-10-09T19:50:10.488943Z",
"url": "https://files.pythonhosted.org/packages/df/2c/391d433bb3026a4a3ec9d310a2c09f1156dd470ba234f117725234f4f041/hussh-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5481b79441e0beaf00c710c67466fbe1bbbe5db10d5eba38f67175589999ef66",
"md5": "4f6cebabd6b6f37c5d79cb6b2df99f8b",
"sha256": "97a93dda0002e5a7cf8bb65e2ae2ba8cf8584d8a605729492705b05198ed07c8"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4f6cebabd6b6f37c5d79cb6b2df99f8b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2152702,
"upload_time": "2025-10-09T19:50:23",
"upload_time_iso_8601": "2025-10-09T19:50:23.575481Z",
"url": "https://files.pythonhosted.org/packages/54/81/b79441e0beaf00c710c67466fbe1bbbe5db10d5eba38f67175589999ef66/hussh-0.1.9-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c35313a6fdcac5d3bdd9e5755ec58868513fbd005c50d815d0cb2f57070f75fd",
"md5": "451e515e41f0dff0376cb4302ab701c6",
"sha256": "5971dd90b571e4fb66d8e6a9b064605a770d4a6a39e9bbbec799d52fcba0c7a0"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "451e515e41f0dff0376cb4302ab701c6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2254393,
"upload_time": "2025-10-09T19:50:35",
"upload_time_iso_8601": "2025-10-09T19:50:35.462811Z",
"url": "https://files.pythonhosted.org/packages/c3/53/13a6fdcac5d3bdd9e5755ec58868513fbd005c50d815d0cb2f57070f75fd/hussh-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25551511e39c1f328ecb9fdead638a40d2a462e41bd6aab724cce83cc880d3d2",
"md5": "8ebd18dc655d1c3fddbff2c130e8ea97",
"sha256": "a0484778924e1f3975d9c6c1361962164b978bd908fa24a34218ecd4c33c6a7e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "8ebd18dc655d1c3fddbff2c130e8ea97",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 299267,
"upload_time": "2025-10-09T19:50:52",
"upload_time_iso_8601": "2025-10-09T19:50:52.969695Z",
"url": "https://files.pythonhosted.org/packages/25/55/1511e39c1f328ecb9fdead638a40d2a462e41bd6aab724cce83cc880d3d2/hussh-0.1.9-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "510c50115182dffb13bb16a711d7f7db67ece279489e705f0c01c84602937b0d",
"md5": "990891e81f742b733c8a265359946e5f",
"sha256": "c4db86a9a97b5069631ee8fc0af797bcb1155babe5f8addbc8a08c6745c4009c"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "990891e81f742b733c8a265359946e5f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1793898,
"upload_time": "2025-10-09T19:49:42",
"upload_time_iso_8601": "2025-10-09T19:49:42.247571Z",
"url": "https://files.pythonhosted.org/packages/51/0c/50115182dffb13bb16a711d7f7db67ece279489e705f0c01c84602937b0d/hussh-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fdf764b13e1593a4609083b57957acd5a43c1eae62d930593398af96bb9d8a2",
"md5": "35f1852bf8b81af22ccd3da63d6adad0",
"sha256": "cb8cfdbb4f7a03298465b89c8cd7713729b9dfce7cfa7398e1aeb2b96f170139"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "35f1852bf8b81af22ccd3da63d6adad0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2107082,
"upload_time": "2025-10-09T19:49:28",
"upload_time_iso_8601": "2025-10-09T19:49:28.702896Z",
"url": "https://files.pythonhosted.org/packages/4f/df/764b13e1593a4609083b57957acd5a43c1eae62d930593398af96bb9d8a2/hussh-0.1.9-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7116329499f7ea9bf04da25497c59d535c3233fe7a2f7bf1a17c5ff0f4224388",
"md5": "c0bdd6a89c444de8d8a5fbf83aa76fc6",
"sha256": "0b9c131feab3e83afa9f2831ad55cbb55469c5e2d267040a89eb5c1c584babcd"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c0bdd6a89c444de8d8a5fbf83aa76fc6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2320811,
"upload_time": "2025-10-09T19:48:23",
"upload_time_iso_8601": "2025-10-09T19:48:23.543171Z",
"url": "https://files.pythonhosted.org/packages/71/16/329499f7ea9bf04da25497c59d535c3233fe7a2f7bf1a17c5ff0f4224388/hussh-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d5e924ef3efbd70796486b8d9743b37752ded338774dbbc422f6058eb208ad5",
"md5": "b5be7eb661316db9a970bbbbedeb58b0",
"sha256": "e5c5a35db7fb16de1e27d7201f91ea97126cb82e4e4d818adc88e4ab0ace0380"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b5be7eb661316db9a970bbbbedeb58b0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1699219,
"upload_time": "2025-10-09T19:48:37",
"upload_time_iso_8601": "2025-10-09T19:48:37.914613Z",
"url": "https://files.pythonhosted.org/packages/9d/5e/924ef3efbd70796486b8d9743b37752ded338774dbbc422f6058eb208ad5/hussh-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19e1b972afd319b046e40da61734604b02dc8eaae1c9e7c3fb96687183fad7c3",
"md5": "506acde5fcc044afc26cd5f73357bcb9",
"sha256": "ef9312886a488df6b44410bf0d1399948138198660688de52e050a6cd121368e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "506acde5fcc044afc26cd5f73357bcb9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1971035,
"upload_time": "2025-10-09T19:49:03",
"upload_time_iso_8601": "2025-10-09T19:49:03.353229Z",
"url": "https://files.pythonhosted.org/packages/19/e1/b972afd319b046e40da61734604b02dc8eaae1c9e7c3fb96687183fad7c3/hussh-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1d7d7b2406b1495e558639abc7e8515f2342825b8be2f0fb80617eaed877e2e",
"md5": "8cad67ef54c8df0b338fab7cbfe523c5",
"sha256": "2b1bc71bd0ac24b5c7de9db2c5b4003ba5a5cd6f32463592ec2b49422556e52f"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8cad67ef54c8df0b338fab7cbfe523c5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1995406,
"upload_time": "2025-10-09T19:48:51",
"upload_time_iso_8601": "2025-10-09T19:48:51.023826Z",
"url": "https://files.pythonhosted.org/packages/b1/d7/d7b2406b1495e558639abc7e8515f2342825b8be2f0fb80617eaed877e2e/hussh-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3924497ed7ed32196785eab2ebce258c72c184871b9ba607f633a7e607d7968",
"md5": "771b90b37ac639230b1a4c12e4cb2a26",
"sha256": "04eca94a6f2424c49bf014fb9b355bb6e63ceea65fc0fc8ac124488157d91ee8"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "771b90b37ac639230b1a4c12e4cb2a26",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2028997,
"upload_time": "2025-10-09T19:49:15",
"upload_time_iso_8601": "2025-10-09T19:49:15.355506Z",
"url": "https://files.pythonhosted.org/packages/c3/92/4497ed7ed32196785eab2ebce258c72c184871b9ba607f633a7e607d7968/hussh-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec426b441339ecad98ed105d88dbef6a43f3846bf7e4838c5b1662718950bd33",
"md5": "79c8a3b9f365e1e0c6829f9dc060b9f3",
"sha256": "40ba26f4ca3d514e4dda9311c15b6511c3564bdcdc84d40a21078341483b8e5e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "79c8a3b9f365e1e0c6829f9dc060b9f3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2635740,
"upload_time": "2025-10-09T19:49:57",
"upload_time_iso_8601": "2025-10-09T19:49:57.564194Z",
"url": "https://files.pythonhosted.org/packages/ec/42/6b441339ecad98ed105d88dbef6a43f3846bf7e4838c5b1662718950bd33/hussh-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cce86aec76602eda2d3d52c52225e671d103b606afcb0fa2aad604f3ae294be9",
"md5": "b759f1057787c2f3c126e414cef972d0",
"sha256": "9b80f55d69a7e1f2c0b7dc046f8e61e344ebc8e593925ef49fb76987b9962aa0"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b759f1057787c2f3c126e414cef972d0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1987482,
"upload_time": "2025-10-09T19:50:11",
"upload_time_iso_8601": "2025-10-09T19:50:11.734215Z",
"url": "https://files.pythonhosted.org/packages/cc/e8/6aec76602eda2d3d52c52225e671d103b606afcb0fa2aad604f3ae294be9/hussh-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbb9fbf49dedcbcd04e4155ed21e81838578ac7a8d23bc2d5e85cd4a3bccef13",
"md5": "0c314a81e0c82d93eb8f5b64cd6bcb33",
"sha256": "2f787622825948861dacedf8c1e3ae1557912864732aefa370ecc68ed365eeb0"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0c314a81e0c82d93eb8f5b64cd6bcb33",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2152514,
"upload_time": "2025-10-09T19:50:24",
"upload_time_iso_8601": "2025-10-09T19:50:24.843816Z",
"url": "https://files.pythonhosted.org/packages/bb/b9/fbf49dedcbcd04e4155ed21e81838578ac7a8d23bc2d5e85cd4a3bccef13/hussh-0.1.9-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb9fb18e811331ed98a0f821627f2a6afbc0f026ead7730daf67f3f12ab45ce",
"md5": "4cee311e73dacc9548dae74dc596dc28",
"sha256": "97d88bb21ca019cb023e5c9161e2ffc7b6a03622b7f63f51dc50435e176f3e98"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4cee311e73dacc9548dae74dc596dc28",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2254114,
"upload_time": "2025-10-09T19:50:40",
"upload_time_iso_8601": "2025-10-09T19:50:40.717681Z",
"url": "https://files.pythonhosted.org/packages/2c/b9/fb18e811331ed98a0f821627f2a6afbc0f026ead7730daf67f3f12ab45ce/hussh-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99aa41bd3e1b37d8d414d5b8bcaa3537dfbff9166acb363ac5fb036e80069059",
"md5": "e415fa9933b666b6dbec9eee7a8a7598",
"sha256": "ce5c08fc2c2acd65d308f16b5ebcee563fa5a5d3879f17d4d50569be16c5eacf"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e415fa9933b666b6dbec9eee7a8a7598",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 298834,
"upload_time": "2025-10-09T19:50:54",
"upload_time_iso_8601": "2025-10-09T19:50:54.048976Z",
"url": "https://files.pythonhosted.org/packages/99/aa/41bd3e1b37d8d414d5b8bcaa3537dfbff9166acb363ac5fb036e80069059/hussh-0.1.9-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0898601fb72fc7d70ab20dbae0cd0685c5c8496603b27a9c0cc61988f01f079f",
"md5": "a6c4739477ed8f1bf9f80ad7a16e66df",
"sha256": "54497ede9c2777a36260e58d1aebab8ec5d6033bf6008a64b5cf20e7fe8a978e"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a6c4739477ed8f1bf9f80ad7a16e66df",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1794384,
"upload_time": "2025-10-09T19:49:43",
"upload_time_iso_8601": "2025-10-09T19:49:43.499917Z",
"url": "https://files.pythonhosted.org/packages/08/98/601fb72fc7d70ab20dbae0cd0685c5c8496603b27a9c0cc61988f01f079f/hussh-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ad16a90dbaef068b3d3be7d0d55403f5c8d15f7d776bc4e5996dbb721e37c71",
"md5": "7e61ade2c7c677b1fa4384efe03983a7",
"sha256": "23ffe2f44616804b575ae34619c190346d6fb0117ba119d669e8ec57afab17d4"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7e61ade2c7c677b1fa4384efe03983a7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2107365,
"upload_time": "2025-10-09T19:49:30",
"upload_time_iso_8601": "2025-10-09T19:49:30.276215Z",
"url": "https://files.pythonhosted.org/packages/7a/d1/6a90dbaef068b3d3be7d0d55403f5c8d15f7d776bc4e5996dbb721e37c71/hussh-0.1.9-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c5aa0b8ea26802e24e2362b8ae47dfc3f34d5f7fd9015b45d82fda66da48865",
"md5": "dd50e9ecdb8c8935cd377c88b603a84f",
"sha256": "1a6e2730028e2f85d9e0fe4330582a11029a2ac2a0304d2cc2a4ed3d911a9e7a"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dd50e9ecdb8c8935cd377c88b603a84f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2320729,
"upload_time": "2025-10-09T19:48:25",
"upload_time_iso_8601": "2025-10-09T19:48:25.745713Z",
"url": "https://files.pythonhosted.org/packages/4c/5a/a0b8ea26802e24e2362b8ae47dfc3f34d5f7fd9015b45d82fda66da48865/hussh-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b84d7f9ea8de46e31b4495a1692b66ff69f60d487f60e80050f78873d6593112",
"md5": "49675862e93ec259aaff736d33ef3303",
"sha256": "2f6eee6a949e735d210de0bb0aff07a845fe7c28b652cccaf605bcf3ea9824ef"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "49675862e93ec259aaff736d33ef3303",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1699029,
"upload_time": "2025-10-09T19:48:39",
"upload_time_iso_8601": "2025-10-09T19:48:39.216417Z",
"url": "https://files.pythonhosted.org/packages/b8/4d/7f9ea8de46e31b4495a1692b66ff69f60d487f60e80050f78873d6593112/hussh-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa49e2faa9d8992d78a66b9acf3fa6649063550d9efaf1ec555321660f49e390",
"md5": "4495277514c2be2e22de0b5c6ecebcd9",
"sha256": "d8fc78a5c4f6745a7feb8af38a8506879e0c5ccccb00e322ad54b2433b9572e9"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4495277514c2be2e22de0b5c6ecebcd9",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1970471,
"upload_time": "2025-10-09T19:49:04",
"upload_time_iso_8601": "2025-10-09T19:49:04.582356Z",
"url": "https://files.pythonhosted.org/packages/aa/49/e2faa9d8992d78a66b9acf3fa6649063550d9efaf1ec555321660f49e390/hussh-0.1.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fff9221a39cab72e76a242fe4f835549d6baa46c7bd49f34c7b08c8b454a43a9",
"md5": "a059f9c23a51975a689101167d4ca082",
"sha256": "ab0bea0abd3e794244df1c757bb54c51cf3c1fe44b17dad1ca54339f1425eb75"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a059f9c23a51975a689101167d4ca082",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1995196,
"upload_time": "2025-10-09T19:48:52",
"upload_time_iso_8601": "2025-10-09T19:48:52.237644Z",
"url": "https://files.pythonhosted.org/packages/ff/f9/221a39cab72e76a242fe4f835549d6baa46c7bd49f34c7b08c8b454a43a9/hussh-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dfc77bb7a2469721b35e1855838a1a928ec5e3f7890cf54aaba7ca70af7fc87",
"md5": "885353f2fc27d577825041866e160c4f",
"sha256": "c16e47733e8f69d50de815594c281bcfbe68d9d37836830e6ce4b62544886c80"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "885353f2fc27d577825041866e160c4f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2028512,
"upload_time": "2025-10-09T19:49:16",
"upload_time_iso_8601": "2025-10-09T19:49:16.793121Z",
"url": "https://files.pythonhosted.org/packages/9d/fc/77bb7a2469721b35e1855838a1a928ec5e3f7890cf54aaba7ca70af7fc87/hussh-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f04c5f1561ba7369c5baa2e87e78936f3b7c33c32ac1bb0e0b3005a45b8b1bc5",
"md5": "ee49a01d2c3237f4114f12969e2fa7ce",
"sha256": "2c37f8d9a3b18b456a1b769149b4b1962c3ac1b582216908f5e948ce53962ca5"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ee49a01d2c3237f4114f12969e2fa7ce",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2635045,
"upload_time": "2025-10-09T19:49:58",
"upload_time_iso_8601": "2025-10-09T19:49:58.926254Z",
"url": "https://files.pythonhosted.org/packages/f0/4c/5f1561ba7369c5baa2e87e78936f3b7c33c32ac1bb0e0b3005a45b8b1bc5/hussh-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5222535ec2dfe4b3330bb1a049bc0ac62e0a5f0ed9272d81568ff22be6fd7f1",
"md5": "d5034805caf46275a812d0ce5facf6c6",
"sha256": "acd49f130065fdc52d5e7ff0825a34f7d3cab2b2049f625a0f517d47ad7366d7"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d5034805caf46275a812d0ce5facf6c6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 1987438,
"upload_time": "2025-10-09T19:50:13",
"upload_time_iso_8601": "2025-10-09T19:50:13.171788Z",
"url": "https://files.pythonhosted.org/packages/e5/22/2535ec2dfe4b3330bb1a049bc0ac62e0a5f0ed9272d81568ff22be6fd7f1/hussh-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4721d0c9ad04106019a290c7a443abaedf1ce8c32718b0a129d5942dfe306949",
"md5": "02357adaf7e4a68c3d6313ce21454d57",
"sha256": "77ef549720c73ab921a9ecabc2c9fe913724ec92a723d99da4759feb03098e36"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "02357adaf7e4a68c3d6313ce21454d57",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2152214,
"upload_time": "2025-10-09T19:50:26",
"upload_time_iso_8601": "2025-10-09T19:50:26.496064Z",
"url": "https://files.pythonhosted.org/packages/47/21/d0c9ad04106019a290c7a443abaedf1ce8c32718b0a129d5942dfe306949/hussh-0.1.9-cp314-cp314-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95465afa58f188306672f499f3909a90f61fe336d6ca4dcd9a38bf3f49231d5e",
"md5": "c6df61756562b72e52e475e14bedb612",
"sha256": "5b53d40800dda22333fc028cbbfff34fd10862ecc180be27f120348e7c0267fe"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c6df61756562b72e52e475e14bedb612",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2253896,
"upload_time": "2025-10-09T19:50:42",
"upload_time_iso_8601": "2025-10-09T19:50:42.028576Z",
"url": "https://files.pythonhosted.org/packages/95/46/5afa58f188306672f499f3909a90f61fe336d6ca4dcd9a38bf3f49231d5e/hussh-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f64b3d66bf3a790f2c4584245efaa9c519adf7250a7f5647edf929e8ac1e2ff",
"md5": "3358370dac312fcccbd5683858643fe0",
"sha256": "fd8e786ff757a5940fc6670dde642f8d11ac98083bc1cd3a5d5d815159820747"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "3358370dac312fcccbd5683858643fe0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 299234,
"upload_time": "2025-10-09T19:50:55",
"upload_time_iso_8601": "2025-10-09T19:50:55.107966Z",
"url": "https://files.pythonhosted.org/packages/3f/64/b3d66bf3a790f2c4584245efaa9c519adf7250a7f5647edf929e8ac1e2ff/hussh-0.1.9-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3d83b6e0d331cb26da82757ac840988155073a5540832564f429681bb1029cd",
"md5": "7fd86c595ea68a3e50afd58c2e74902b",
"sha256": "4bb5dd95b6f0c1ae1948b9640cd47f44376c2057db79c577df1a0938a8375f54"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7fd86c595ea68a3e50afd58c2e74902b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1794702,
"upload_time": "2025-10-09T19:49:44",
"upload_time_iso_8601": "2025-10-09T19:49:44.730447Z",
"url": "https://files.pythonhosted.org/packages/b3/d8/3b6e0d331cb26da82757ac840988155073a5540832564f429681bb1029cd/hussh-0.1.9-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87dddbbeac3b4a4595355d6fa4403aeec058d29414d0783cd384b8f462391514",
"md5": "45328697c4058aad8e74ed3778b9d19c",
"sha256": "9cff20973aa0a3e3087c96f6ceaa5cf042782abf1cace2c4a00aaedb5eeb3775"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "45328697c4058aad8e74ed3778b9d19c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2109663,
"upload_time": "2025-10-09T19:49:31",
"upload_time_iso_8601": "2025-10-09T19:49:31.595427Z",
"url": "https://files.pythonhosted.org/packages/87/dd/dbbeac3b4a4595355d6fa4403aeec058d29414d0783cd384b8f462391514/hussh-0.1.9-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de19816772a363a744313995262ed6ce8bb8cdcc11e8fd44ee98a32f7fffc82c",
"md5": "6ff126b10f41374023e4397562a10384",
"sha256": "c8d5673a098afdfa9d3dc84e1af2e28d285bf788548c634479f03832c85adccb"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6ff126b10f41374023e4397562a10384",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2322521,
"upload_time": "2025-10-09T19:48:27",
"upload_time_iso_8601": "2025-10-09T19:48:27.258335Z",
"url": "https://files.pythonhosted.org/packages/de/19/816772a363a744313995262ed6ce8bb8cdcc11e8fd44ee98a32f7fffc82c/hussh-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "613b9d0c3f6748759c53a2eb5964efe9b57fd0e593fce39949d66a3defd39dc0",
"md5": "5743c5cbb50ed21f949475bc707e900a",
"sha256": "4718485907bc98f5392c86eb196cba8a206693af80a36c785a23699fb59a8946"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5743c5cbb50ed21f949475bc707e900a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1702721,
"upload_time": "2025-10-09T19:48:40",
"upload_time_iso_8601": "2025-10-09T19:48:40.505100Z",
"url": "https://files.pythonhosted.org/packages/61/3b/9d0c3f6748759c53a2eb5964efe9b57fd0e593fce39949d66a3defd39dc0/hussh-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64e9f08b0e81bb10f0b6b7bb331246870b3c839a1fd407de6a09d3fe4be6650c",
"md5": "a701ac9ec9d409a86f7169005fe263ee",
"sha256": "732ba93102b354880b9a6490d9e50244c3dda031920ad396d84a389f00619c80"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a701ac9ec9d409a86f7169005fe263ee",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1973612,
"upload_time": "2025-10-09T19:49:05",
"upload_time_iso_8601": "2025-10-09T19:49:05.864658Z",
"url": "https://files.pythonhosted.org/packages/64/e9/f08b0e81bb10f0b6b7bb331246870b3c839a1fd407de6a09d3fe4be6650c/hussh-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9401522467d270e6a8866d127c5093f1867d7bea4bdbff427474caff9a20015",
"md5": "6a9947018c060942fb7c9ed08f7a273e",
"sha256": "9714f30c3ec12ff29a3cf8abe7e692ea7923a856864c3784a3dde117acc91628"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6a9947018c060942fb7c9ed08f7a273e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1998208,
"upload_time": "2025-10-09T19:48:53",
"upload_time_iso_8601": "2025-10-09T19:48:53.588336Z",
"url": "https://files.pythonhosted.org/packages/e9/40/1522467d270e6a8866d127c5093f1867d7bea4bdbff427474caff9a20015/hussh-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4140ba80ca378cfc2579fffc71c0eb8dd457f971c4707f2b18249bfe746d05f5",
"md5": "cc0fe25a97df3393721c96e91d381bbd",
"sha256": "363cd332e19ed0a79426d332dd7782a360218ec79dde363b4063546248412053"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cc0fe25a97df3393721c96e91d381bbd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2030903,
"upload_time": "2025-10-09T19:49:18",
"upload_time_iso_8601": "2025-10-09T19:49:18.513809Z",
"url": "https://files.pythonhosted.org/packages/41/40/ba80ca378cfc2579fffc71c0eb8dd457f971c4707f2b18249bfe746d05f5/hussh-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09f76de7b25fbffbe6b7945daa3fd0e474c08a1ea3b4b67ac30d9b743bd9f2de",
"md5": "f9d5332a236cff86538b13bd0c273a5e",
"sha256": "8eefce59a528d22840e22b9ccd67f91b49c6281f219b13c621b3f5f4dcf49229"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f9d5332a236cff86538b13bd0c273a5e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2637625,
"upload_time": "2025-10-09T19:50:02",
"upload_time_iso_8601": "2025-10-09T19:50:02.198030Z",
"url": "https://files.pythonhosted.org/packages/09/f7/6de7b25fbffbe6b7945daa3fd0e474c08a1ea3b4b67ac30d9b743bd9f2de/hussh-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e104616d73340a49d8085953f58c97c9c97a89d4b42b199af12bb30a6d4803d",
"md5": "4b50598880e4cb09d2d6a089003b0d08",
"sha256": "eaf56d3d82885b7fbebac5a1578a9ff438c1b064e687c88edf96153f89bec2e9"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4b50598880e4cb09d2d6a089003b0d08",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1990226,
"upload_time": "2025-10-09T19:50:14",
"upload_time_iso_8601": "2025-10-09T19:50:14.726456Z",
"url": "https://files.pythonhosted.org/packages/0e/10/4616d73340a49d8085953f58c97c9c97a89d4b42b199af12bb30a6d4803d/hussh-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de43fb396398fe23b4bd478df83db673ca6398ae553f057c6f4e88d8ae077156",
"md5": "c945179f090179a347f335efc3a8105a",
"sha256": "a3db3ee9f381366e172a576048fd2a3601838268745d0af4ebc96a30986aa84a"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c945179f090179a347f335efc3a8105a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2155898,
"upload_time": "2025-10-09T19:50:27",
"upload_time_iso_8601": "2025-10-09T19:50:27.858423Z",
"url": "https://files.pythonhosted.org/packages/de/43/fb396398fe23b4bd478df83db673ca6398ae553f057c6f4e88d8ae077156/hussh-0.1.9-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "198fda90e9de61db428a60b5bb993296d0ef1da20607235648b4907f16b1283b",
"md5": "25c7b479597f3caf7496a4260a8e0547",
"sha256": "3b842996d937ed6cd7f6acbd67d245a06c1802f2cd2b9e2e66bc259d0bcab0b3"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "25c7b479597f3caf7496a4260a8e0547",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2256857,
"upload_time": "2025-10-09T19:50:43",
"upload_time_iso_8601": "2025-10-09T19:50:43.398003Z",
"url": "https://files.pythonhosted.org/packages/19/8f/da90e9de61db428a60b5bb993296d0ef1da20607235648b4907f16b1283b/hussh-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da4f84b0ca37ec68c50ac938ce5cdf97708444b8f6abf6259208712ba63b56b1",
"md5": "86ecbc09490e86fbf9952adc9300cc7a",
"sha256": "5fdf6723172c42ac4a1999fb5df2b8d8c82af6ffb339bf79051323241faa1f9f"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "86ecbc09490e86fbf9952adc9300cc7a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 300368,
"upload_time": "2025-10-09T19:50:56",
"upload_time_iso_8601": "2025-10-09T19:50:56.464417Z",
"url": "https://files.pythonhosted.org/packages/da/4f/84b0ca37ec68c50ac938ce5cdf97708444b8f6abf6259208712ba63b56b1/hussh-0.1.9-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afbb458cfd72dc62737ac71d3bb5f4740b014cb8c3b9ad43b8b667d8c17b9c33",
"md5": "7789f3e1fee5fc4ab689edfcd3735397",
"sha256": "af4242cd4f15724507a6c836417e43d9697c3c5fbd7a42462b692df53b016e16"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7789f3e1fee5fc4ab689edfcd3735397",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1794661,
"upload_time": "2025-10-09T19:49:47",
"upload_time_iso_8601": "2025-10-09T19:49:47.862650Z",
"url": "https://files.pythonhosted.org/packages/af/bb/458cfd72dc62737ac71d3bb5f4740b014cb8c3b9ad43b8b667d8c17b9c33/hussh-0.1.9-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "309d3b52a726cf034a3faf8dc54d3f8e4cb7b8cdbaf42358318042c540add28a",
"md5": "b2521ebea8c41b3dbe69e722eb859216",
"sha256": "18a3af494a4303784dfa2f8da3f36bf781ffa156afb56423c931f4a1fa480943"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b2521ebea8c41b3dbe69e722eb859216",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2109239,
"upload_time": "2025-10-09T19:49:32",
"upload_time_iso_8601": "2025-10-09T19:49:32.822677Z",
"url": "https://files.pythonhosted.org/packages/30/9d/3b52a726cf034a3faf8dc54d3f8e4cb7b8cdbaf42358318042c540add28a/hussh-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17de8781ce8a20daa2cbbcd324a5eefad88574abf139621ed93875dce29f7121",
"md5": "d4ad7bb5c334ed9389836efc295b1ca8",
"sha256": "9db05d0c97b5436a8a52d91732f64f95be59a9c69a6dec9abed7838e502dc972"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d4ad7bb5c334ed9389836efc295b1ca8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2322428,
"upload_time": "2025-10-09T19:48:29",
"upload_time_iso_8601": "2025-10-09T19:48:29.316418Z",
"url": "https://files.pythonhosted.org/packages/17/de/8781ce8a20daa2cbbcd324a5eefad88574abf139621ed93875dce29f7121/hussh-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f29ddd4ed7314db5bd3918674abee4e6ad6cf410f50a52ff9400c0a66106ce28",
"md5": "e0d271d1110c647fbc3701d4d3f71591",
"sha256": "15d51d21ab2ad8dec6c5b56562cf920a656db8b97fb5a2ed390136c9b3e0a05b"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e0d271d1110c647fbc3701d4d3f71591",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1702803,
"upload_time": "2025-10-09T19:48:42",
"upload_time_iso_8601": "2025-10-09T19:48:42.090800Z",
"url": "https://files.pythonhosted.org/packages/f2/9d/dd4ed7314db5bd3918674abee4e6ad6cf410f50a52ff9400c0a66106ce28/hussh-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6a36180580c60306b28589e8613349a1dd39655e20e1e610512829b8f58702c",
"md5": "e66d5f16db2cd04f1ea0182631b10e6b",
"sha256": "3fed3b1ea808f01cd5a0d7904b22263bba5bdb5b892543b6772e2ec14bd39d80"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e66d5f16db2cd04f1ea0182631b10e6b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1973455,
"upload_time": "2025-10-09T19:49:07",
"upload_time_iso_8601": "2025-10-09T19:49:07.120102Z",
"url": "https://files.pythonhosted.org/packages/f6/a3/6180580c60306b28589e8613349a1dd39655e20e1e610512829b8f58702c/hussh-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f50da2a6c2c539df44874da7d22963aa071c6ac5b152f7b5828db0faa36e011",
"md5": "904c44df583b03fb961260325dcd2a60",
"sha256": "13adcd94e15f1075610fb71d4b55fd0f52dc001b8bf8178b4e57dcd521238288"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "904c44df583b03fb961260325dcd2a60",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1997903,
"upload_time": "2025-10-09T19:48:54",
"upload_time_iso_8601": "2025-10-09T19:48:54.868365Z",
"url": "https://files.pythonhosted.org/packages/1f/50/da2a6c2c539df44874da7d22963aa071c6ac5b152f7b5828db0faa36e011/hussh-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e3e008b023b383113de374cdc564f94a5682c9fb5c47cc7ddcff3b9c13a71f6",
"md5": "64cf00211b65c28e821b3cd135d8c2f3",
"sha256": "3c3e9432276355df44cbe8ecda7402139b93aaeff30c3781d95afc30be463b1c"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "64cf00211b65c28e821b3cd135d8c2f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2031170,
"upload_time": "2025-10-09T19:49:19",
"upload_time_iso_8601": "2025-10-09T19:49:19.830763Z",
"url": "https://files.pythonhosted.org/packages/8e/3e/008b023b383113de374cdc564f94a5682c9fb5c47cc7ddcff3b9c13a71f6/hussh-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4c5a8ceff1cdc936a45fdb49db63ed6235d8f2078687e24647624d8870a1297",
"md5": "f57de70851f1d7e88644deef84c22d65",
"sha256": "ee803e8acca37379e1b250e47d475470f8784561ed5df9dacb2042037be1b9a6"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f57de70851f1d7e88644deef84c22d65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2637414,
"upload_time": "2025-10-09T19:50:03",
"upload_time_iso_8601": "2025-10-09T19:50:03.742343Z",
"url": "https://files.pythonhosted.org/packages/c4/c5/a8ceff1cdc936a45fdb49db63ed6235d8f2078687e24647624d8870a1297/hussh-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86618d67141224e32571783a0ae599d01aae5f0b83685fc9f40b4ebc23d8d9e3",
"md5": "3fdc106ab03f7eb75399b3f1875a5c65",
"sha256": "56a01c5ae4ebbd7bed3aa382da4fee1f280d9dddb0d9bd76b0172c4348a70b0c"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3fdc106ab03f7eb75399b3f1875a5c65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1990471,
"upload_time": "2025-10-09T19:50:16",
"upload_time_iso_8601": "2025-10-09T19:50:16.374514Z",
"url": "https://files.pythonhosted.org/packages/86/61/8d67141224e32571783a0ae599d01aae5f0b83685fc9f40b4ebc23d8d9e3/hussh-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "446039e4d4b4447f9e9425c05630a3ac37f6d8a34601d7b27f7f1830c33737e5",
"md5": "72809b3574a4d66519f6be092a5e15f3",
"sha256": "42b445aa6017352c052ff4dce9a68da3376ee7e7a83923f1f3c4b2f071361a1a"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "72809b3574a4d66519f6be092a5e15f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2155743,
"upload_time": "2025-10-09T19:50:29",
"upload_time_iso_8601": "2025-10-09T19:50:29.067572Z",
"url": "https://files.pythonhosted.org/packages/44/60/39e4d4b4447f9e9425c05630a3ac37f6d8a34601d7b27f7f1830c33737e5/hussh-0.1.9-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae4368f2808ac067a180a39fb9a6f7ae7da2742ecdc4591b3e9c2ae61a9becfa",
"md5": "329436be0639cd9bc21b6640fe5a559b",
"sha256": "163b8fda329b902b7baf42cef7c26d46e5c2a3064b9182752efc9e8762514dde"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "329436be0639cd9bc21b6640fe5a559b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2256528,
"upload_time": "2025-10-09T19:50:44",
"upload_time_iso_8601": "2025-10-09T19:50:44.665480Z",
"url": "https://files.pythonhosted.org/packages/ae/43/68f2808ac067a180a39fb9a6f7ae7da2742ecdc4591b3e9c2ae61a9becfa/hussh-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "408ef3d924c6f725a709d509d2575ffbb42201c4fdd8ace7b7a3d83747f8ab95",
"md5": "7bca5d79e5b791a9da4e9dd8e1416488",
"sha256": "407629645635bc132df3443d6140ba6cdf3e443f3187243426457a8b5557ef38"
},
"downloads": -1,
"filename": "hussh-0.1.9-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7bca5d79e5b791a9da4e9dd8e1416488",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 300488,
"upload_time": "2025-10-09T19:50:57",
"upload_time_iso_8601": "2025-10-09T19:50:57.525264Z",
"url": "https://files.pythonhosted.org/packages/40/8e/f3d924c6f725a709d509d2575ffbb42201c4fdd8ace7b7a3d83747f8ab95/hussh-0.1.9-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1bdc4785126d429c71f812ff07abb27b2aa7815c6669981ba654437dc3f0f430",
"md5": "9827a08b2e7609c4597f99a0292ee3d0",
"sha256": "00cedf018d5a84839f9783c420ff160699d6106b6ba902802eb74b908537c9f9"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9827a08b2e7609c4597f99a0292ee3d0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1794999,
"upload_time": "2025-10-09T19:49:49",
"upload_time_iso_8601": "2025-10-09T19:49:49.077096Z",
"url": "https://files.pythonhosted.org/packages/1b/dc/4785126d429c71f812ff07abb27b2aa7815c6669981ba654437dc3f0f430/hussh-0.1.9-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "858569d2a430371e5583eed009ded7e059df3e7f43dbae67eb067fb469d7f5b4",
"md5": "92a827450be0fef096558a9f89e12fb1",
"sha256": "2b6af25e424ff15ffb600cd8616f113ba576b7500f10f1c40b74594395d3b2fe"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "92a827450be0fef096558a9f89e12fb1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2109422,
"upload_time": "2025-10-09T19:49:34",
"upload_time_iso_8601": "2025-10-09T19:49:34.515116Z",
"url": "https://files.pythonhosted.org/packages/85/85/69d2a430371e5583eed009ded7e059df3e7f43dbae67eb067fb469d7f5b4/hussh-0.1.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "577981d1661a54142902d7fad9f09f5d25a0ec2ad58c86f91ad88d8002350e0c",
"md5": "567340d5a0434f3fdc550f384175b067",
"sha256": "84b7dfb5d969c163009f1c085e93336c67b5e1d1bfc5802df0a36a0da161836a"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "567340d5a0434f3fdc550f384175b067",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2322153,
"upload_time": "2025-10-09T19:48:31",
"upload_time_iso_8601": "2025-10-09T19:48:31.039383Z",
"url": "https://files.pythonhosted.org/packages/57/79/81d1661a54142902d7fad9f09f5d25a0ec2ad58c86f91ad88d8002350e0c/hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32a80b72f864ea4ef4a0fd1a92d44e1512a95f4766a32cfb2ec550bcd2bd3d54",
"md5": "a69602e5982b4e0f9bd20b84fc657a43",
"sha256": "d6c1ebf4d207e6459d091f048be9268e0426e4c63a3b7400dbba10b5dc859a45"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a69602e5982b4e0f9bd20b84fc657a43",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1701975,
"upload_time": "2025-10-09T19:48:43",
"upload_time_iso_8601": "2025-10-09T19:48:43.309908Z",
"url": "https://files.pythonhosted.org/packages/32/a8/0b72f864ea4ef4a0fd1a92d44e1512a95f4766a32cfb2ec550bcd2bd3d54/hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c159ca35a9dbe0af5e8fd3d291f012cb76ddb395246b624b3ac70fdf17e307a",
"md5": "ca505c3d4af16b364dc1c5a689abba9d",
"sha256": "5b5f7bb871699d1e34272ecbeb2f17838ed8c2b164fd8e35407b6d257194a3d4"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ca505c3d4af16b364dc1c5a689abba9d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1972636,
"upload_time": "2025-10-09T19:49:08",
"upload_time_iso_8601": "2025-10-09T19:49:08.406504Z",
"url": "https://files.pythonhosted.org/packages/0c/15/9ca35a9dbe0af5e8fd3d291f012cb76ddb395246b624b3ac70fdf17e307a/hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5c16898c9e01eafc1bc38cc0a810e86560d09f81dd1c157774434573f5e0243",
"md5": "934f42f19e6cd7f1c088b0d4b309d82a",
"sha256": "cdcb0b0dbf6c6cdf171deaf6af3f099b0e830ad0f1e4c79769c589e625f3625e"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "934f42f19e6cd7f1c088b0d4b309d82a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1997678,
"upload_time": "2025-10-09T19:48:56",
"upload_time_iso_8601": "2025-10-09T19:48:56.205371Z",
"url": "https://files.pythonhosted.org/packages/b5/c1/6898c9e01eafc1bc38cc0a810e86560d09f81dd1c157774434573f5e0243/hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "158e9b3436e2bc4dc1271c835318cfb732d7c29d613bd5ca62f6db47eedcad05",
"md5": "02c735e9f91085cbd6f8d60b684ee3e1",
"sha256": "d04f9a0b7eb1a194ef94e22149948d7fe4a7a9ff7db70d5107355ba05386abba"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "02c735e9f91085cbd6f8d60b684ee3e1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2030328,
"upload_time": "2025-10-09T19:49:21",
"upload_time_iso_8601": "2025-10-09T19:49:21.054497Z",
"url": "https://files.pythonhosted.org/packages/15/8e/9b3436e2bc4dc1271c835318cfb732d7c29d613bd5ca62f6db47eedcad05/hussh-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b6cb1e8da28736006c4e7008d1d5bee102e8ac3cc3457bdca484409bdd16bfb",
"md5": "67476be535b1e05351c9a62779fa3895",
"sha256": "3cc1106a191edc1e14bcdb16f943832105db8122de9434969e98c4aaf62dca38"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "67476be535b1e05351c9a62779fa3895",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2637167,
"upload_time": "2025-10-09T19:50:05",
"upload_time_iso_8601": "2025-10-09T19:50:05.323640Z",
"url": "https://files.pythonhosted.org/packages/6b/6c/b1e8da28736006c4e7008d1d5bee102e8ac3cc3457bdca484409bdd16bfb/hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bbddfab34862d92053cd0314a05ffd126a67309b3ca5a4d4dc20200d0d4f25d",
"md5": "8a48157b2e565b85a6dddd4f7bfffd46",
"sha256": "d474813f83a8dc291eb3773c9487dc7a2a1ad7e85cf7e3f9211fa331f0561ba7"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8a48157b2e565b85a6dddd4f7bfffd46",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1989617,
"upload_time": "2025-10-09T19:50:18",
"upload_time_iso_8601": "2025-10-09T19:50:18.080623Z",
"url": "https://files.pythonhosted.org/packages/5b/bd/dfab34862d92053cd0314a05ffd126a67309b3ca5a4d4dc20200d0d4f25d/hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c17e7e647bc722eb86388f9189330e6af8e89588d98004c96c38cfdbfd7a428e",
"md5": "9ae88a6dd999978918438c199e10aa47",
"sha256": "64f3e1076ef3d18280cb820bf81eb91174103816b7c04c9bb8cf0d688aae6e19"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9ae88a6dd999978918438c199e10aa47",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2155001,
"upload_time": "2025-10-09T19:50:30",
"upload_time_iso_8601": "2025-10-09T19:50:30.387392Z",
"url": "https://files.pythonhosted.org/packages/c1/7e/7e647bc722eb86388f9189330e6af8e89588d98004c96c38cfdbfd7a428e/hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d2b1016e2d966a07f7fda84a0812ce11ac4f5721772cad37446f9a173a3d7f6",
"md5": "426e19b61fcc314db015517c59f0dcdf",
"sha256": "3be8422c63cac5ec0ba9e3f3d1f6a59808d0cd8bb98ccb98ce56d69fa369fd39"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "426e19b61fcc314db015517c59f0dcdf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2255951,
"upload_time": "2025-10-09T19:50:46",
"upload_time_iso_8601": "2025-10-09T19:50:46.321696Z",
"url": "https://files.pythonhosted.org/packages/0d/2b/1016e2d966a07f7fda84a0812ce11ac4f5721772cad37446f9a173a3d7f6/hussh-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fcfa8bc19f0c52f9a677a1b82ec08caa74b92eb209bb84b069b7d9b9ba01552",
"md5": "df666431fbb2cf9c70c2f4fdce579a43",
"sha256": "bd1e325bf3378e2665ded9596be1c21169025dfb0e1e3d95e7058c1d225bd4ed"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "df666431fbb2cf9c70c2f4fdce579a43",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1794979,
"upload_time": "2025-10-09T19:49:50",
"upload_time_iso_8601": "2025-10-09T19:49:50.627837Z",
"url": "https://files.pythonhosted.org/packages/9f/cf/a8bc19f0c52f9a677a1b82ec08caa74b92eb209bb84b069b7d9b9ba01552/hussh-0.1.9-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e59dd9e85df791d948f84f70afc00915170af231961846e82d6a3c8a57083b7a",
"md5": "a0951cd7a8706b4984814d778472d481",
"sha256": "774f094639549d373bf0358143ba7bc8ebda6c051856bb88037e5d437ef36d29"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a0951cd7a8706b4984814d778472d481",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2109137,
"upload_time": "2025-10-09T19:49:36",
"upload_time_iso_8601": "2025-10-09T19:49:36.316500Z",
"url": "https://files.pythonhosted.org/packages/e5/9d/d9e85df791d948f84f70afc00915170af231961846e82d6a3c8a57083b7a/hussh-0.1.9-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "195b0430d79d8547462cfd81f453faa2211358bec1afe15da4c8074f96932448",
"md5": "953e480744746eea0a8c6a1f2c00991d",
"sha256": "bc3a21fc35a5be427ba6651777702e155d884bee5c661d5a8be6ee9ce07b5579"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "953e480744746eea0a8c6a1f2c00991d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2322390,
"upload_time": "2025-10-09T19:48:32",
"upload_time_iso_8601": "2025-10-09T19:48:32.315819Z",
"url": "https://files.pythonhosted.org/packages/19/5b/0430d79d8547462cfd81f453faa2211358bec1afe15da4c8074f96932448/hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48b95d5ac33c7dce1437901de9f0e03323ce9bb8eecb5ac4f7e8054c282a95b1",
"md5": "bd85174467623991577b2ae1a93d4c22",
"sha256": "ff77602488d6fa679dae79d0fe1eb769ad4d1470a90ef587b58352dbe543b7f0"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bd85174467623991577b2ae1a93d4c22",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1702592,
"upload_time": "2025-10-09T19:48:44",
"upload_time_iso_8601": "2025-10-09T19:48:44.731608Z",
"url": "https://files.pythonhosted.org/packages/48/b9/5d5ac33c7dce1437901de9f0e03323ce9bb8eecb5ac4f7e8054c282a95b1/hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ebfadcbb4da26053fe5ae38ceb46d70b913c5f931a06a1a40ab78147aa61cdd",
"md5": "6ceb6ee0e5851b8a24ad79257952fffc",
"sha256": "014d87793f337ba82c617e6c1b05e65a847b1c223670957e1b0920ecc4475c81"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6ceb6ee0e5851b8a24ad79257952fffc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1973165,
"upload_time": "2025-10-09T19:49:10",
"upload_time_iso_8601": "2025-10-09T19:49:10.160834Z",
"url": "https://files.pythonhosted.org/packages/3e/bf/adcbb4da26053fe5ae38ceb46d70b913c5f931a06a1a40ab78147aa61cdd/hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae73c02c7c2f91b845e4bb60f13d4ea0a92fe4b2aac688e75cd5e956bbcb7d1a",
"md5": "a7d0d66b8195444dc551ee9cc36f6a8e",
"sha256": "057a06b09c8dc315a102c2d97fa727dd178f9db2a5df331e7c7118c5a84972b9"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a7d0d66b8195444dc551ee9cc36f6a8e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1997658,
"upload_time": "2025-10-09T19:48:57",
"upload_time_iso_8601": "2025-10-09T19:48:57.976458Z",
"url": "https://files.pythonhosted.org/packages/ae/73/c02c7c2f91b845e4bb60f13d4ea0a92fe4b2aac688e75cd5e956bbcb7d1a/hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e81ee3d4514c7aa62ee842bf99858fd39a4d31fb207087615bd95a7cf6002faa",
"md5": "baaa599d652e264a9892138fbef689ca",
"sha256": "77ad68110f1faa884298626b0dd24d67025244cca87c84e850ca6dea6d2b92d3"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "baaa599d652e264a9892138fbef689ca",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2030715,
"upload_time": "2025-10-09T19:49:22",
"upload_time_iso_8601": "2025-10-09T19:49:22.471398Z",
"url": "https://files.pythonhosted.org/packages/e8/1e/e3d4514c7aa62ee842bf99858fd39a4d31fb207087615bd95a7cf6002faa/hussh-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "799765385015ad3fe052f6e0d5c833500343701c05e936357fb148c06b9d5564",
"md5": "7922f65720d459fd25df891634b30e86",
"sha256": "c15ad5cd5d13a0b3a64f0ce70868a1a336a6e0c1bcd1af1882bc1c417aea3f36"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7922f65720d459fd25df891634b30e86",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2637526,
"upload_time": "2025-10-09T19:50:06",
"upload_time_iso_8601": "2025-10-09T19:50:06.592412Z",
"url": "https://files.pythonhosted.org/packages/79/97/65385015ad3fe052f6e0d5c833500343701c05e936357fb148c06b9d5564/hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc07bca48f5b1d2af33a4c99acc97bc937681079d654129629de72bd8d1ca003",
"md5": "41bb4edec862fb0c2d873e716434b19a",
"sha256": "b40763c71e5c5a7447c095b79fcfa4278903ce0f01275004d9e0172e4de3691b"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "41bb4edec862fb0c2d873e716434b19a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1990252,
"upload_time": "2025-10-09T19:50:19",
"upload_time_iso_8601": "2025-10-09T19:50:19.542824Z",
"url": "https://files.pythonhosted.org/packages/bc/07/bca48f5b1d2af33a4c99acc97bc937681079d654129629de72bd8d1ca003/hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae794fa876dd5a77bc8bb3c7de517bbdd7fada290774440f8ead817403a6a151",
"md5": "391d0b0c982e0b351b21ab345a24538c",
"sha256": "7acfcc5de52988cc34d5c3e6a354fe7814b4fb53ac6f8829802a22991f1bf588"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "391d0b0c982e0b351b21ab345a24538c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2155428,
"upload_time": "2025-10-09T19:50:31",
"upload_time_iso_8601": "2025-10-09T19:50:31.679534Z",
"url": "https://files.pythonhosted.org/packages/ae/79/4fa876dd5a77bc8bb3c7de517bbdd7fada290774440f8ead817403a6a151/hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7ab3179ff5c001c8a154177cdd40fc44c68b46454c41bbaf1db92bf2ae63407",
"md5": "35fab7cb7fb8403174391a967b37bade",
"sha256": "98d00a6bc283ab3823699bbfbbbce66e61edbcf630f52212b09caf9a0005e13a"
},
"downloads": -1,
"filename": "hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "35fab7cb7fb8403174391a967b37bade",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2256517,
"upload_time": "2025-10-09T19:50:47",
"upload_time_iso_8601": "2025-10-09T19:50:47.548399Z",
"url": "https://files.pythonhosted.org/packages/a7/ab/3179ff5c001c8a154177cdd40fc44c68b46454c41bbaf1db92bf2ae63407/hussh-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8942427dfacc08b7e4332cef3c0bff11586d94c34d6144f98a9a95c0f19644fd",
"md5": "8c954c0f1deabcdeaae74726dab1bcc0",
"sha256": "1aa73a1dc776a4a7095a7d6050fe49f7f6c7b120e2d062f6477a56d12992628e"
},
"downloads": -1,
"filename": "hussh-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "8c954c0f1deabcdeaae74726dab1bcc0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 536061,
"upload_time": "2025-10-09T19:50:49",
"upload_time_iso_8601": "2025-10-09T19:50:49.009519Z",
"url": "https://files.pythonhosted.org/packages/89/42/427dfacc08b7e4332cef3c0bff11586d94c34d6144f98a9a95c0f19644fd/hussh-0.1.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-09 19:50:49",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "hussh"
}