hussh


Namehussh JSON
Version 0.1.8 PyPI version JSON
download
home_pageNone
SummarySSH for Humans
upload_time2024-11-24 18:41:31
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
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.
[![image](https://img.shields.io/pypi/v/hussh.svg)](https://pypi.python.org/pypi/hussh)
[![image](https://img.shields.io/pypi/pyversions/hussh.svg)](https://pypi.python.org/pypi/hussh)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/hussh)
[![Actions status](https://github.com/jacobcallahan/hussh/actions/workflows/build_and_test.yml/badge.svg)](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
![Local Server Benchmarks](benchmarks/local_server_bench.png)

Remote Server
![Remote Server Benchmarks](benchmarks/remote_server_bench.png)

### 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
- Proper exception handling
- 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/50/5b/c1ea916c7251f103e55a5e8261ad9efa47118d233ed9e8fa52b97e4eb808/hussh-0.1.8.tar.gz",
    "platform": null,
    "description": "# Hussh: SSH for humans.\n[![image](https://img.shields.io/pypi/v/hussh.svg)](https://pypi.python.org/pypi/hussh)\n[![image](https://img.shields.io/pypi/pyversions/hussh.svg)](https://pypi.python.org/pypi/hussh)\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/hussh)\n[![Actions status](https://github.com/jacobcallahan/hussh/actions/workflows/build_and_test.yml/badge.svg)](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![Local Server Benchmarks](benchmarks/local_server_bench.png)\n\nRemote Server\n![Remote Server Benchmarks](benchmarks/remote_server_bench.png)\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- Proper exception handling\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.8",
    "project_urls": null,
    "split_keywords": [
        "ssh",
        " ssh2",
        " rust",
        " pyo3"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33e37b71082b5c218a52f169844b0db1dc467687ae1540db585dcea96dd831fc",
                "md5": "c434204ab8b94ec589e9bac1d67cce83",
                "sha256": "27004d7aefbad8e239294a4ea20d2e1bc8f9470819b2d7b043e27be66e0df3a9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c434204ab8b94ec589e9bac1d67cce83",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1685895,
            "upload_time": "2024-11-24T18:40:28",
            "upload_time_iso_8601": "2024-11-24T18:40:28.667529Z",
            "url": "https://files.pythonhosted.org/packages/33/e3/7b71082b5c218a52f169844b0db1dc467687ae1540db585dcea96dd831fc/hussh-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fc1436851bdff6bf2d9bd25ad7dcf1a605495a1018dd8adffdc0234694607df",
                "md5": "2e0fdbb05fadaa14f36f2d5dd296809a",
                "sha256": "c66c1d84507c57771a6912b308d89a87f4dde503dfa981b933263f09c5b27b70"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2e0fdbb05fadaa14f36f2d5dd296809a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2012281,
            "upload_time": "2024-11-24T18:40:16",
            "upload_time_iso_8601": "2024-11-24T18:40:16.688983Z",
            "url": "https://files.pythonhosted.org/packages/2f/c1/436851bdff6bf2d9bd25ad7dcf1a605495a1018dd8adffdc0234694607df/hussh-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9179644d2b7d4d78dbe274b3efe9cdd1f974614a05d3f7abfb3a918104539c8",
                "md5": "996242f505c067600918fb101f2e0358",
                "sha256": "fec7fa9d90771a45633019c8dee02b8ed9f84665b6f940390db9471bd72442a3"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "996242f505c067600918fb101f2e0358",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2190723,
            "upload_time": "2024-11-24T18:39:12",
            "upload_time_iso_8601": "2024-11-24T18:39:12.320697Z",
            "url": "https://files.pythonhosted.org/packages/a9/17/9644d2b7d4d78dbe274b3efe9cdd1f974614a05d3f7abfb3a918104539c8/hussh-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfcf1c3b50df2bc869d2a54285953f1c7732d79b8f5c2bf5bc327d48b28c2157",
                "md5": "9e93eed39e8f5a7689a28de5c5256626",
                "sha256": "c2a4d2f0e6dd1ff0138ba4f12bf896244494da9e1bbf6b16b24594cf62a67938"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9e93eed39e8f5a7689a28de5c5256626",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1578592,
            "upload_time": "2024-11-24T18:39:25",
            "upload_time_iso_8601": "2024-11-24T18:39:25.638355Z",
            "url": "https://files.pythonhosted.org/packages/cf/cf/1c3b50df2bc869d2a54285953f1c7732d79b8f5c2bf5bc327d48b28c2157/hussh-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c37aa372c8884bca423ec14e63668fbb11d2c31c9fed3b10e0e60ff1ebae2007",
                "md5": "55c5f38859981ced00c5dbbf31535cd9",
                "sha256": "06d1a35986424fb52a8b8439801a6d0363163dcb25de17f6aaba4abad710d3f9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "55c5f38859981ced00c5dbbf31535cd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1809684,
            "upload_time": "2024-11-24T18:39:53",
            "upload_time_iso_8601": "2024-11-24T18:39:53.832025Z",
            "url": "https://files.pythonhosted.org/packages/c3/7a/a372c8884bca423ec14e63668fbb11d2c31c9fed3b10e0e60ff1ebae2007/hussh-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a087706976bcf3af6fe7c2e6ca58488c4d1fc6b1734d595204b67a4fe5bcf94a",
                "md5": "1a29ed51aae2eb6c0d70c54b17a72aba",
                "sha256": "2b9a86bce5a04f0982bcab3ebc656916c332851c7bfc140f57d6c1364b66cb56"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1a29ed51aae2eb6c0d70c54b17a72aba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1834836,
            "upload_time": "2024-11-24T18:39:42",
            "upload_time_iso_8601": "2024-11-24T18:39:42.324792Z",
            "url": "https://files.pythonhosted.org/packages/a0/87/706976bcf3af6fe7c2e6ca58488c4d1fc6b1734d595204b67a4fe5bcf94a/hussh-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46ac136873409d83ea7ad562b36d980f8a6c0ececee89bac22a0dfc5ba4179a6",
                "md5": "4447a96c689841c356989d7b1bf3e25c",
                "sha256": "fe3e29ea3e822f9c376e8b72c1d165bceef30282fb6464ecbc8b4ee2bcffec1f"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4447a96c689841c356989d7b1bf3e25c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1903114,
            "upload_time": "2024-11-24T18:40:05",
            "upload_time_iso_8601": "2024-11-24T18:40:05.116066Z",
            "url": "https://files.pythonhosted.org/packages/46/ac/136873409d83ea7ad562b36d980f8a6c0ececee89bac22a0dfc5ba4179a6/hussh-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d34afa564119062020833fb3477dd8cdaa380dbbee3e99134aed8c3149c6c74",
                "md5": "91ba397cada89dcd5eee6f2706c19cc2",
                "sha256": "49bb2fcd8eb7068e2391fdb46e03af25b5b0c94d48d95284773719b636ca03b9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91ba397cada89dcd5eee6f2706c19cc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2485170,
            "upload_time": "2024-11-24T18:40:40",
            "upload_time_iso_8601": "2024-11-24T18:40:40.183171Z",
            "url": "https://files.pythonhosted.org/packages/6d/34/afa564119062020833fb3477dd8cdaa380dbbee3e99134aed8c3149c6c74/hussh-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2309bc3855a148b510f4818af8e156cf861c79ef5a43515ef425d7b03451cb0e",
                "md5": "20f3e5fe8d83be5986ae89c73dbd7db3",
                "sha256": "6c98adb29802e937d4aa5bf7bdd976e85bd68503358025106c626e250aebddb8"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "20f3e5fe8d83be5986ae89c73dbd7db3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1855224,
            "upload_time": "2024-11-24T18:40:54",
            "upload_time_iso_8601": "2024-11-24T18:40:54.801763Z",
            "url": "https://files.pythonhosted.org/packages/23/09/bc3855a148b510f4818af8e156cf861c79ef5a43515ef425d7b03451cb0e/hussh-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a92a48d85709cbfc2adb7adf8335072fb5b0330c9a68cf0f4c10d99f8548dcb",
                "md5": "6c7efc81fa384d7d18b79e72d600f97e",
                "sha256": "20d5309804eff07023db906e469d44a6e3e90c8104bbca437a19e2dd56948702"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6c7efc81fa384d7d18b79e72d600f97e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1988955,
            "upload_time": "2024-11-24T18:41:07",
            "upload_time_iso_8601": "2024-11-24T18:41:07.216751Z",
            "url": "https://files.pythonhosted.org/packages/7a/92/a48d85709cbfc2adb7adf8335072fb5b0330c9a68cf0f4c10d99f8548dcb/hussh-0.1.8-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7419a2245331623b490266e1e84ec229ea56ca76211ec36acda87325c7520bd",
                "md5": "cd275d34dc22a4286a6cd678face6d7b",
                "sha256": "a3089c8162f2817ae93766c0989c4f19db3d8d3f7a5471d22e0f8745e5c629f7"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd275d34dc22a4286a6cd678face6d7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2083614,
            "upload_time": "2024-11-24T18:41:19",
            "upload_time_iso_8601": "2024-11-24T18:41:19.887390Z",
            "url": "https://files.pythonhosted.org/packages/d7/41/9a2245331623b490266e1e84ec229ea56ca76211ec36acda87325c7520bd/hussh-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a309bc85b16f8a47d44e1740fa2480ed3cdc4c64a0c7f7e4c604b1ce7c797527",
                "md5": "ae6aa32b6b56d8ced2311b550f9d602f",
                "sha256": "e0c5f8db836d9d02da07919904cbfce5b30301c30360c5b1ff95bc3020b34a4c"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae6aa32b6b56d8ced2311b550f9d602f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 301302,
            "upload_time": "2024-11-24T18:41:32",
            "upload_time_iso_8601": "2024-11-24T18:41:32.741968Z",
            "url": "https://files.pythonhosted.org/packages/a3/09/bc85b16f8a47d44e1740fa2480ed3cdc4c64a0c7f7e4c604b1ce7c797527/hussh-0.1.8-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc325c5dc7c5a775a15f42b1afdfb525beb52aa5058d6a7004d6d33433bd983a",
                "md5": "5e9ad54964373a96c4a4fe9845ad70c7",
                "sha256": "578990a61a306eea409c2842f69527984359eb910044db06ce31ec7f032f6d6b"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e9ad54964373a96c4a4fe9845ad70c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1685895,
            "upload_time": "2024-11-24T18:40:30",
            "upload_time_iso_8601": "2024-11-24T18:40:30.063567Z",
            "url": "https://files.pythonhosted.org/packages/fc/32/5c5dc7c5a775a15f42b1afdfb525beb52aa5058d6a7004d6d33433bd983a/hussh-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd27a31e124b188f2ccd0d372dc2fa325516d4d1a699914a9b959eecdca4b131",
                "md5": "ae94839c747c5e2167d5e590ada10195",
                "sha256": "1d0beec191a2f37245592bfd2c56a3b88229b904140905160cd3745f784d144d"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae94839c747c5e2167d5e590ada10195",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2012280,
            "upload_time": "2024-11-24T18:40:18",
            "upload_time_iso_8601": "2024-11-24T18:40:18.621090Z",
            "url": "https://files.pythonhosted.org/packages/bd/27/a31e124b188f2ccd0d372dc2fa325516d4d1a699914a9b959eecdca4b131/hussh-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67f82dde813bc5bf9659e6d55e2893920a0e2ac406bb26569b4aae86d4ccdc80",
                "md5": "28110491b83614f4b27600dcf8717c59",
                "sha256": "4f41782d4061f33ca04f5dccfe1dedfe82917b4fd1a51c066cb7485fabc610dd"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28110491b83614f4b27600dcf8717c59",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2190724,
            "upload_time": "2024-11-24T18:39:14",
            "upload_time_iso_8601": "2024-11-24T18:39:14.452002Z",
            "url": "https://files.pythonhosted.org/packages/67/f8/2dde813bc5bf9659e6d55e2893920a0e2ac406bb26569b4aae86d4ccdc80/hussh-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bc9bb3a29279ddcdeb2e14d27b5e3259ee6f719c91d67f1f89908224c3b868a",
                "md5": "154035b8d3acacb765a05e7d1235221f",
                "sha256": "6bec839c8e0e56427fe70edac9ed4e06f4ae6404c5d377e4f86be96eb90ca3cc"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "154035b8d3acacb765a05e7d1235221f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1578592,
            "upload_time": "2024-11-24T18:39:27",
            "upload_time_iso_8601": "2024-11-24T18:39:27.478756Z",
            "url": "https://files.pythonhosted.org/packages/4b/c9/bb3a29279ddcdeb2e14d27b5e3259ee6f719c91d67f1f89908224c3b868a/hussh-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a818706850455c59c015942710b1f19b9cc13c8b6afab882da8a5be3217c4a6",
                "md5": "240cbc4f157c4cf18d36536680a391b6",
                "sha256": "68809516886dbf5828b4ea79af3b016ec8e33a65d1b3a94f4629a92a356291c9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "240cbc4f157c4cf18d36536680a391b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1809680,
            "upload_time": "2024-11-24T18:39:55",
            "upload_time_iso_8601": "2024-11-24T18:39:55.245194Z",
            "url": "https://files.pythonhosted.org/packages/7a/81/8706850455c59c015942710b1f19b9cc13c8b6afab882da8a5be3217c4a6/hussh-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0830cf81533e8edc58f45619bafb712ebd48e76dd969be3520bc888239f3e52",
                "md5": "ce3293723e2b189732e9fe4bd2543584",
                "sha256": "34677ac89e9c45fe2e06598602e6710f0b35b35c8c260b46ee249e2362c319fa"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ce3293723e2b189732e9fe4bd2543584",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1834836,
            "upload_time": "2024-11-24T18:39:43",
            "upload_time_iso_8601": "2024-11-24T18:39:43.659698Z",
            "url": "https://files.pythonhosted.org/packages/e0/83/0cf81533e8edc58f45619bafb712ebd48e76dd969be3520bc888239f3e52/hussh-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a81690e99c4cc900755975dd8037137926e9ecd94ae9e16c603acbba3d5cc1ff",
                "md5": "682372cb1713071c61d116d644412215",
                "sha256": "9e0c818b8e97b027a9da4c9ef32354411e3fe516a3ddf9a21eb4df28f90b49b2"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "682372cb1713071c61d116d644412215",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1903113,
            "upload_time": "2024-11-24T18:40:07",
            "upload_time_iso_8601": "2024-11-24T18:40:07.227019Z",
            "url": "https://files.pythonhosted.org/packages/a8/16/90e99c4cc900755975dd8037137926e9ecd94ae9e16c603acbba3d5cc1ff/hussh-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d02e9712ad61058246c856ed870fb54d77fb21851db3479051f170c1a8a5daef",
                "md5": "dda76ecdb82097f6dd62df64f20c39c7",
                "sha256": "2a139af353519689bc3aaf7ae7029768f50f3af181e687311112fd568690378c"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dda76ecdb82097f6dd62df64f20c39c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2485173,
            "upload_time": "2024-11-24T18:40:41",
            "upload_time_iso_8601": "2024-11-24T18:40:41.565524Z",
            "url": "https://files.pythonhosted.org/packages/d0/2e/9712ad61058246c856ed870fb54d77fb21851db3479051f170c1a8a5daef/hussh-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04dabf8a2bb440c46c3270cf2f524789b01966ad1db8087695e54a6a59c3c64d",
                "md5": "410ff3574225e2ca26e89cdc860c5d0e",
                "sha256": "78e4cdde8016d9d1b94880d62328ea86ea822ec8d1ba9952018c7bb36a73ae63"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "410ff3574225e2ca26e89cdc860c5d0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1855224,
            "upload_time": "2024-11-24T18:40:56",
            "upload_time_iso_8601": "2024-11-24T18:40:56.810341Z",
            "url": "https://files.pythonhosted.org/packages/04/da/bf8a2bb440c46c3270cf2f524789b01966ad1db8087695e54a6a59c3c64d/hussh-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d8f4c5660aa1c2f4f24d87865852369ec101d55af07817b700af0e36d303388",
                "md5": "adbebe5d82da8e666943fb5c34272fe5",
                "sha256": "ddbcabefa45a42dd02c4cf1ed7721c7499d5792d1fc9acf2c8dcd88c82998af8"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "adbebe5d82da8e666943fb5c34272fe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1988959,
            "upload_time": "2024-11-24T18:41:08",
            "upload_time_iso_8601": "2024-11-24T18:41:08.535976Z",
            "url": "https://files.pythonhosted.org/packages/3d/8f/4c5660aa1c2f4f24d87865852369ec101d55af07817b700af0e36d303388/hussh-0.1.8-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f9f5fd237245d57d8eecff6c0b36f72426c69e11e5019207bb2f91ed661967c",
                "md5": "4425fd666acebf4ed851f8dacb978069",
                "sha256": "feefcbfa1e7a70854022de93172f30cfb33bae9e2fd3a63b68206ca229504b8f"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4425fd666acebf4ed851f8dacb978069",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2083619,
            "upload_time": "2024-11-24T18:41:21",
            "upload_time_iso_8601": "2024-11-24T18:41:21.153700Z",
            "url": "https://files.pythonhosted.org/packages/7f/9f/5fd237245d57d8eecff6c0b36f72426c69e11e5019207bb2f91ed661967c/hussh-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa58b869653669eabb7286d255bc6ca1724a7c1140827175df4f049f9eeeaa50",
                "md5": "2f4fa819dee12561e435ceaca2c98921",
                "sha256": "fe76f52f3144f7017592268cabddf5199ad18462b37eb87ffb71af96f0e1efe5"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f4fa819dee12561e435ceaca2c98921",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 301283,
            "upload_time": "2024-11-24T18:41:33",
            "upload_time_iso_8601": "2024-11-24T18:41:33.962539Z",
            "url": "https://files.pythonhosted.org/packages/aa/58/b869653669eabb7286d255bc6ca1724a7c1140827175df4f049f9eeeaa50/hussh-0.1.8-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3423ba38efc6eda2fd07e8d165f8c6f1ae7d6c1702813f7f2054e31316767ac1",
                "md5": "dddf015ca9e671d39bf72f2df89236bd",
                "sha256": "d315285860942330e413e2a29debc3eab2c74f81af8a69b722230c22bcb48df7"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dddf015ca9e671d39bf72f2df89236bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1685897,
            "upload_time": "2024-11-24T18:40:31",
            "upload_time_iso_8601": "2024-11-24T18:40:31.300224Z",
            "url": "https://files.pythonhosted.org/packages/34/23/ba38efc6eda2fd07e8d165f8c6f1ae7d6c1702813f7f2054e31316767ac1/hussh-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b8f5d64216228fc9afee984df07c5092640648fb9c6acf80a1927d88b7e4e27",
                "md5": "457abeef79377d21782eaa17b91f9f8e",
                "sha256": "657ee4ad4546ce4454987fd68189cbad3b399e362aa7302b9d59bb0698d9c088"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "457abeef79377d21782eaa17b91f9f8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2012277,
            "upload_time": "2024-11-24T18:40:19",
            "upload_time_iso_8601": "2024-11-24T18:40:19.869251Z",
            "url": "https://files.pythonhosted.org/packages/8b/8f/5d64216228fc9afee984df07c5092640648fb9c6acf80a1927d88b7e4e27/hussh-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96b5cce77848759f444273f6154c6f9dd1b97cab058908318ec9f13c692735d8",
                "md5": "848e73a5a64065c48420f8d093083c54",
                "sha256": "1c6f6dbb9c174dc97254079be87dbe182221ec37fc17be9da3805d647669afc2"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "848e73a5a64065c48420f8d093083c54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2190725,
            "upload_time": "2024-11-24T18:39:15",
            "upload_time_iso_8601": "2024-11-24T18:39:15.703939Z",
            "url": "https://files.pythonhosted.org/packages/96/b5/cce77848759f444273f6154c6f9dd1b97cab058908318ec9f13c692735d8/hussh-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a57cdc999d64c1f9e5bd9cf55f95b2af74e055b81c3c733a93ac23014f5d1b9f",
                "md5": "49ea6db42c3482b20e20bf3d9158942b",
                "sha256": "0a496bbb0c73d2fe2faac7c810129eb820978b950525af464a4efe3c65785b2e"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "49ea6db42c3482b20e20bf3d9158942b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1578592,
            "upload_time": "2024-11-24T18:39:28",
            "upload_time_iso_8601": "2024-11-24T18:39:28.669458Z",
            "url": "https://files.pythonhosted.org/packages/a5/7c/dc999d64c1f9e5bd9cf55f95b2af74e055b81c3c733a93ac23014f5d1b9f/hussh-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b24eba76000d487dbae866603c31ba8a52fc82d568f324b98134d87cc652f54",
                "md5": "50f7543685a6850934c592f02ab8a323",
                "sha256": "55d9f3b5ccfefd57519fd68496677bbb9f321caef37f8ae3934bd952357c192a"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "50f7543685a6850934c592f02ab8a323",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1809682,
            "upload_time": "2024-11-24T18:39:56",
            "upload_time_iso_8601": "2024-11-24T18:39:56.540022Z",
            "url": "https://files.pythonhosted.org/packages/5b/24/eba76000d487dbae866603c31ba8a52fc82d568f324b98134d87cc652f54/hussh-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "badbef487c788b06129fab74afaba5f1a0e2e4a17183fb4787b4448ffca2f0b4",
                "md5": "796329ba6cc528a18290dee0abf8c341",
                "sha256": "7b107a4007eb32d1f0a09aeed5b3f7ff1cee89a19f512800604ffba9a4036080"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "796329ba6cc528a18290dee0abf8c341",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1834836,
            "upload_time": "2024-11-24T18:39:45",
            "upload_time_iso_8601": "2024-11-24T18:39:45.649843Z",
            "url": "https://files.pythonhosted.org/packages/ba/db/ef487c788b06129fab74afaba5f1a0e2e4a17183fb4787b4448ffca2f0b4/hussh-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6efd237a114a5cb50d8256d132bf2aa362a5af6b559c962fd9e708193c7aa224",
                "md5": "923d887812387aa46a2dc632b128bf79",
                "sha256": "28c843f63d882199ce595f518d1199589534bc1e24e9cafe1b69a8663f695bcd"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "923d887812387aa46a2dc632b128bf79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1903114,
            "upload_time": "2024-11-24T18:40:08",
            "upload_time_iso_8601": "2024-11-24T18:40:08.472513Z",
            "url": "https://files.pythonhosted.org/packages/6e/fd/237a114a5cb50d8256d132bf2aa362a5af6b559c962fd9e708193c7aa224/hussh-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ddb0ad902719535a07bc12c89d05a59fface995d841ab5799c4d77c8d08762e",
                "md5": "b593ab84a23d068aaf5a3cfec662c158",
                "sha256": "e30f7f23a84c36a93ee645cf4989e9b2443727e311478b62af1eeccc99dc2d88"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b593ab84a23d068aaf5a3cfec662c158",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2485173,
            "upload_time": "2024-11-24T18:40:42",
            "upload_time_iso_8601": "2024-11-24T18:40:42.920736Z",
            "url": "https://files.pythonhosted.org/packages/2d/db/0ad902719535a07bc12c89d05a59fface995d841ab5799c4d77c8d08762e/hussh-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccaa84664359c5cf055a8e995d6552d37eef4fc26d67110c4baa9417de526b19",
                "md5": "ffbb9c0f49aae0c064282a479795eee3",
                "sha256": "30156e87eec435f1f8629ca2391d77d0611f40229f46f516f918ccd86d109a1b"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ffbb9c0f49aae0c064282a479795eee3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1855226,
            "upload_time": "2024-11-24T18:40:58",
            "upload_time_iso_8601": "2024-11-24T18:40:58.180266Z",
            "url": "https://files.pythonhosted.org/packages/cc/aa/84664359c5cf055a8e995d6552d37eef4fc26d67110c4baa9417de526b19/hussh-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "167027d78dd222eedbfcd561f03eae70965c1288f2de26bd784bee978b4f02fe",
                "md5": "f0b7ac0b60735ad92fc4a97badbdab69",
                "sha256": "d013dd74313ad31e5be12a80a9ff84b54db911558e284b94f9236ec6e141a4df"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f0b7ac0b60735ad92fc4a97badbdab69",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1988959,
            "upload_time": "2024-11-24T18:41:10",
            "upload_time_iso_8601": "2024-11-24T18:41:10.593396Z",
            "url": "https://files.pythonhosted.org/packages/16/70/27d78dd222eedbfcd561f03eae70965c1288f2de26bd784bee978b4f02fe/hussh-0.1.8-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc5f8cb51c0531ff925729d2535b51f5a9bc8c757b45a7a89979ffd13f307efb",
                "md5": "ed998d4474c1a811e801eb82ead8d5b2",
                "sha256": "34cb571ece99be062ba1ba191ac266bc075a13439aaa5cf369cd6a42399ca884"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed998d4474c1a811e801eb82ead8d5b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2083618,
            "upload_time": "2024-11-24T18:41:22",
            "upload_time_iso_8601": "2024-11-24T18:41:22.506422Z",
            "url": "https://files.pythonhosted.org/packages/cc/5f/8cb51c0531ff925729d2535b51f5a9bc8c757b45a7a89979ffd13f307efb/hussh-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2c9e53656932ec7ea6c2e65166f2a1f5f65309536820b890d573ab216260a02",
                "md5": "bcc0274699b224be336baebbb4215312",
                "sha256": "c2fb37edd8af33bc290fd68d9b0b145bb1163d6e33fd07c3e874dcabce263600"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcc0274699b224be336baebbb4215312",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 301732,
            "upload_time": "2024-11-24T18:41:35",
            "upload_time_iso_8601": "2024-11-24T18:41:35.091593Z",
            "url": "https://files.pythonhosted.org/packages/c2/c9/e53656932ec7ea6c2e65166f2a1f5f65309536820b890d573ab216260a02/hussh-0.1.8-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2973d4372d381762a938af674c1e4f4af4274a821b78c75a1479639d744c19d4",
                "md5": "83c6ecead7c40ee6847c4f0ab157484d",
                "sha256": "bbdee97273b1cbb5fb4ffd0f5ee441f261d6893effa946fd96f80b910415e677"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83c6ecead7c40ee6847c4f0ab157484d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1685897,
            "upload_time": "2024-11-24T18:40:33",
            "upload_time_iso_8601": "2024-11-24T18:40:33.172831Z",
            "url": "https://files.pythonhosted.org/packages/29/73/d4372d381762a938af674c1e4f4af4274a821b78c75a1479639d744c19d4/hussh-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f5d37ea76886b56bb1a055d7316699ff6c8c4229af5a50b0edcecd01141e310",
                "md5": "e56a59e346c8960e15d669c91bea0e58",
                "sha256": "1caf522ecb17b73005f489539fb0aaef1e189b944e12f417f48aa4759aaf439c"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e56a59e346c8960e15d669c91bea0e58",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2012278,
            "upload_time": "2024-11-24T18:40:21",
            "upload_time_iso_8601": "2024-11-24T18:40:21.158772Z",
            "url": "https://files.pythonhosted.org/packages/7f/5d/37ea76886b56bb1a055d7316699ff6c8c4229af5a50b0edcecd01141e310/hussh-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6f53a5fe98924965c564ec0ec25dbd06db5a55e264e184e615df9b367a74fb8",
                "md5": "f527007c91f364d2c9aa8d75f78616a5",
                "sha256": "766ec7ff140290d7e5abd5b75bcf2205d893f113dd2e4b4ee01fb10f510a0d83"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f527007c91f364d2c9aa8d75f78616a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2190724,
            "upload_time": "2024-11-24T18:39:17",
            "upload_time_iso_8601": "2024-11-24T18:39:17.994456Z",
            "url": "https://files.pythonhosted.org/packages/a6/f5/3a5fe98924965c564ec0ec25dbd06db5a55e264e184e615df9b367a74fb8/hussh-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21bfcf71977ac08b2d1b33392617030356c5b51eca89cec2579e96b96905ea41",
                "md5": "b0ac1ab461054a0073ed58c951637250",
                "sha256": "f6514b4c8b8383917a0e3b3ed87e553ec14046ea093034c0b209eec84d1dc599"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0ac1ab461054a0073ed58c951637250",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1578592,
            "upload_time": "2024-11-24T18:39:29",
            "upload_time_iso_8601": "2024-11-24T18:39:29.975780Z",
            "url": "https://files.pythonhosted.org/packages/21/bf/cf71977ac08b2d1b33392617030356c5b51eca89cec2579e96b96905ea41/hussh-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d11bab146ac3dc6712bf3c7500b0f9f3f69ab67ddadb70178ff014dab4702ae",
                "md5": "42c648a503042688a76a4168fd434843",
                "sha256": "1beecc7889cfccba973ccbbec18d98c84e5d1580d58a71e19c319769cc449dca"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "42c648a503042688a76a4168fd434843",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1809681,
            "upload_time": "2024-11-24T18:39:57",
            "upload_time_iso_8601": "2024-11-24T18:39:57.823773Z",
            "url": "https://files.pythonhosted.org/packages/9d/11/bab146ac3dc6712bf3c7500b0f9f3f69ab67ddadb70178ff014dab4702ae/hussh-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c0a0c871c6dac0910617d568f3bb3a8a779854ad3ef7743a1532a7e646b3971",
                "md5": "af6bb03f6e41a2213a4aac75e25417c4",
                "sha256": "e0da8442868fab9936ae19061d45ad986fcef5142d14e81291b4355f0930b06d"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "af6bb03f6e41a2213a4aac75e25417c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1834836,
            "upload_time": "2024-11-24T18:39:46",
            "upload_time_iso_8601": "2024-11-24T18:39:46.872725Z",
            "url": "https://files.pythonhosted.org/packages/2c/0a/0c871c6dac0910617d568f3bb3a8a779854ad3ef7743a1532a7e646b3971/hussh-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5028ede42200df3bf7113a10b2ecd19d748f31f5f737f6daff0e820930ba4d0",
                "md5": "e2e1fd69af79069667cec950cc46f26d",
                "sha256": "ba72ec9c83b663aada238e402a375ede7182e6adfb48af8556e401b0dc66dee7"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2e1fd69af79069667cec950cc46f26d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1903115,
            "upload_time": "2024-11-24T18:40:09",
            "upload_time_iso_8601": "2024-11-24T18:40:09.752520Z",
            "url": "https://files.pythonhosted.org/packages/e5/02/8ede42200df3bf7113a10b2ecd19d748f31f5f737f6daff0e820930ba4d0/hussh-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc44581946789eeac42225c38a11769a4aede7471723c8ce2a196a3290c73de6",
                "md5": "7a8357bc4a4acb531cd2dfd7e31a65d1",
                "sha256": "b2faa27c4226bbb8acb4eb3edbe96d2250f5fb7290df79198a9e48fbf341a338"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a8357bc4a4acb531cd2dfd7e31a65d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2485173,
            "upload_time": "2024-11-24T18:40:44",
            "upload_time_iso_8601": "2024-11-24T18:40:44.356328Z",
            "url": "https://files.pythonhosted.org/packages/cc/44/581946789eeac42225c38a11769a4aede7471723c8ce2a196a3290c73de6/hussh-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11d4e0bd9ba6bf38092321782483f8a41b69268afc07f87e72e7ea14ac5cd3e4",
                "md5": "7c4d21e4455f87b649a41d28ca4aa692",
                "sha256": "e027478b6d43499fed8fd02a3df02f2b34cd5867320f458a6e6b775afd78c364"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7c4d21e4455f87b649a41d28ca4aa692",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1855226,
            "upload_time": "2024-11-24T18:40:59",
            "upload_time_iso_8601": "2024-11-24T18:40:59.459179Z",
            "url": "https://files.pythonhosted.org/packages/11/d4/e0bd9ba6bf38092321782483f8a41b69268afc07f87e72e7ea14ac5cd3e4/hussh-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d72081e2d9d026cf3fffd299120966d3e4561bd32d5a7985969be243f312d4eb",
                "md5": "edd11d3e97575e89aaf4af3c6b8b90bc",
                "sha256": "e4fb9945b04db3ee6732e879cd6b99eb377dcfca8a9cc75aa4f1ea54ef4bb693"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "edd11d3e97575e89aaf4af3c6b8b90bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1988959,
            "upload_time": "2024-11-24T18:41:12",
            "upload_time_iso_8601": "2024-11-24T18:41:12.189822Z",
            "url": "https://files.pythonhosted.org/packages/d7/20/81e2d9d026cf3fffd299120966d3e4561bd32d5a7985969be243f312d4eb/hussh-0.1.8-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b095f2e302e4f3ee43a92155ae295a8e4fc4f0f2476de0f65be9a4a9a4b8035b",
                "md5": "021b4616860ca4cbed489c58b5d17a55",
                "sha256": "05064854da17f2eb000109f6446db07d97d41d7ec029b9e39804b371ddea01d0"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "021b4616860ca4cbed489c58b5d17a55",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2083617,
            "upload_time": "2024-11-24T18:41:23",
            "upload_time_iso_8601": "2024-11-24T18:41:23.825910Z",
            "url": "https://files.pythonhosted.org/packages/b0/95/f2e302e4f3ee43a92155ae295a8e4fc4f0f2476de0f65be9a4a9a4b8035b/hussh-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2bb87ba9ddfbe7da6af57ade3f60169a0376baae5fb2e9ab362065ef18175ab",
                "md5": "fd4a36fd96702e8094678add956d479c",
                "sha256": "18224fff5a91d0d2788c8bae329bd066c043e27b55d3cf5ab6793b0662fa1821"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd4a36fd96702e8094678add956d479c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1685888,
            "upload_time": "2024-11-24T18:40:34",
            "upload_time_iso_8601": "2024-11-24T18:40:34.806693Z",
            "url": "https://files.pythonhosted.org/packages/d2/bb/87ba9ddfbe7da6af57ade3f60169a0376baae5fb2e9ab362065ef18175ab/hussh-0.1.8-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c4347ff44f2a27cbea5cdf65d111230a211920bb3c9b5731cf9c4d98bb89cbb",
                "md5": "c0eb029a1d744d5bb13b9970925f5667",
                "sha256": "438433bf22101d72346e29428117b4422f726cb5956b98f5f8dcfe64dfc06b55"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c0eb029a1d744d5bb13b9970925f5667",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2012273,
            "upload_time": "2024-11-24T18:40:22",
            "upload_time_iso_8601": "2024-11-24T18:40:22.496744Z",
            "url": "https://files.pythonhosted.org/packages/1c/43/47ff44f2a27cbea5cdf65d111230a211920bb3c9b5731cf9c4d98bb89cbb/hussh-0.1.8-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f43299c1842da21d8cd57818223a7b0bd9e730fc6603033b3d7c8e5bd5031b80",
                "md5": "e0422f838766ceaef079549e39cbd1b8",
                "sha256": "75c30d54b885b41af7c44953cdff1243fbaa38afdeecb8a8159595b9ecd45e14"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0422f838766ceaef079549e39cbd1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2190723,
            "upload_time": "2024-11-24T18:39:19",
            "upload_time_iso_8601": "2024-11-24T18:39:19.298142Z",
            "url": "https://files.pythonhosted.org/packages/f4/32/99c1842da21d8cd57818223a7b0bd9e730fc6603033b3d7c8e5bd5031b80/hussh-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23c988e6644236b0c0a66cf000e89d253e889828dc8d12e632891ed154a2ce71",
                "md5": "63cf5ad63c1266b2e481e5399246d370",
                "sha256": "3725c57a518d443e0683b00601ccf37cd7220f18bad69b2f8ac16d0bea2c9d08"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "63cf5ad63c1266b2e481e5399246d370",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1578590,
            "upload_time": "2024-11-24T18:39:31",
            "upload_time_iso_8601": "2024-11-24T18:39:31.228806Z",
            "url": "https://files.pythonhosted.org/packages/23/c9/88e6644236b0c0a66cf000e89d253e889828dc8d12e632891ed154a2ce71/hussh-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05bfed29347b7b26188650e1d120cd3ca017020a0ef4b045a206c77d0b921a46",
                "md5": "7e414dc5ecdddfc935f87e1edecef87f",
                "sha256": "6fbdf15e9f82684ea0e49236ba26355927d9018d02e05c6a1b39c7f062e4479f"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7e414dc5ecdddfc935f87e1edecef87f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1809679,
            "upload_time": "2024-11-24T18:39:59",
            "upload_time_iso_8601": "2024-11-24T18:39:59.127457Z",
            "url": "https://files.pythonhosted.org/packages/05/bf/ed29347b7b26188650e1d120cd3ca017020a0ef4b045a206c77d0b921a46/hussh-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdb424748ecd57126d3a58e14871b4ce238000d6a9a860e45cbd5e93cb82dd68",
                "md5": "6f268af093c88a70990f08fe5d948a83",
                "sha256": "8c4e5f590ed86429635ba38f24b090946ccdb6d5acf1e9165a37aceb359ad91f"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6f268af093c88a70990f08fe5d948a83",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1834833,
            "upload_time": "2024-11-24T18:39:48",
            "upload_time_iso_8601": "2024-11-24T18:39:48.764681Z",
            "url": "https://files.pythonhosted.org/packages/cd/b4/24748ecd57126d3a58e14871b4ce238000d6a9a860e45cbd5e93cb82dd68/hussh-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43fcc74f4572676b70e0906b98f2115840fbae54a80fed5d2835c3397d43ac9f",
                "md5": "691203faf46c822f579be66e2586fd8a",
                "sha256": "b7c5e32dacc2d5bd3c4116363743d05be643b06103d78e111a4c87849f254328"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "691203faf46c822f579be66e2586fd8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1903112,
            "upload_time": "2024-11-24T18:40:11",
            "upload_time_iso_8601": "2024-11-24T18:40:11.052431Z",
            "url": "https://files.pythonhosted.org/packages/43/fc/c74f4572676b70e0906b98f2115840fbae54a80fed5d2835c3397d43ac9f/hussh-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0c031a6e897284536c277f4edbd76d78534ef9c8955ce3211fc9d7b7ab21f52",
                "md5": "b3ce6a9109d64dcbaa8359160dae503a",
                "sha256": "5e0db135f6f8c2249a7282e7ba56782f915c23b22a50a53fdf4425ca53cb6f3a"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3ce6a9109d64dcbaa8359160dae503a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2485165,
            "upload_time": "2024-11-24T18:40:46",
            "upload_time_iso_8601": "2024-11-24T18:40:46.673143Z",
            "url": "https://files.pythonhosted.org/packages/e0/c0/31a6e897284536c277f4edbd76d78534ef9c8955ce3211fc9d7b7ab21f52/hussh-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8dd273c46f3b28a9b313f0a0f75c73d27729dfd14a64a8823227dd66b07ad89f",
                "md5": "8c6551c6cb78233762b246dfa6ab7e0a",
                "sha256": "d8b09bf0e02fc28f9d1cf002899488efd9f709c05d5c0edcbcdac83040bdbae3"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8c6551c6cb78233762b246dfa6ab7e0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1855220,
            "upload_time": "2024-11-24T18:41:01",
            "upload_time_iso_8601": "2024-11-24T18:41:01.942057Z",
            "url": "https://files.pythonhosted.org/packages/8d/d2/73c46f3b28a9b313f0a0f75c73d27729dfd14a64a8823227dd66b07ad89f/hussh-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ba09539191cbc9dfd7c6c57c9b4f782d6aff15c3865a8e94188752aed3c14b4",
                "md5": "085bacad2f5f9640249e82d3ecbd33b2",
                "sha256": "4a27e73cba1b95064568655422ad1656c731d8c55c28dce11f071f497b18e99f"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "085bacad2f5f9640249e82d3ecbd33b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1988958,
            "upload_time": "2024-11-24T18:41:13",
            "upload_time_iso_8601": "2024-11-24T18:41:13.657686Z",
            "url": "https://files.pythonhosted.org/packages/4b/a0/9539191cbc9dfd7c6c57c9b4f782d6aff15c3865a8e94188752aed3c14b4/hussh-0.1.8-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b0b4db6e4b2b43474a0be044b18bd82b3a2b32e70ef952028f0ede78da18a71",
                "md5": "2ab034b7e8c7076c0debcf459ed216d6",
                "sha256": "3f94f1a08f1bbddb37910e0586f179c2cdc72a0ea66396e0d8d8ff6a2e63c26e"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ab034b7e8c7076c0debcf459ed216d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2083613,
            "upload_time": "2024-11-24T18:41:25",
            "upload_time_iso_8601": "2024-11-24T18:41:25.140673Z",
            "url": "https://files.pythonhosted.org/packages/5b/0b/4db6e4b2b43474a0be044b18bd82b3a2b32e70ef952028f0ede78da18a71/hussh-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be1395f193bb3bb54f39aa6b1e0f91bb8191f8cc89884f625cae32c1e136c9ff",
                "md5": "bdeb2512cfacf739dac3cd5853009bff",
                "sha256": "a972fbb6cd252292311f0d51c1972d1a9cab34225ccaa5760b548731329d65a1"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bdeb2512cfacf739dac3cd5853009bff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 301896,
            "upload_time": "2024-11-24T18:41:36",
            "upload_time_iso_8601": "2024-11-24T18:41:36.201372Z",
            "url": "https://files.pythonhosted.org/packages/be/13/95f193bb3bb54f39aa6b1e0f91bb8191f8cc89884f625cae32c1e136c9ff/hussh-0.1.8-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "689832f7dd07b8aa1b6114438f2c94ada312caf3bb674883c899cfcfd60e53bc",
                "md5": "99fbb532cc376586730506fff6558dc9",
                "sha256": "91471a7889ebe5554f1826e70ad54283f37ef3e83a6c580f9d8bac4e3011234e"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99fbb532cc376586730506fff6558dc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1685891,
            "upload_time": "2024-11-24T18:40:36",
            "upload_time_iso_8601": "2024-11-24T18:40:36.178070Z",
            "url": "https://files.pythonhosted.org/packages/68/98/32f7dd07b8aa1b6114438f2c94ada312caf3bb674883c899cfcfd60e53bc/hussh-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bceb84f6ade80720d95d229d9adeed07e20b67cac1d4f773f10851ec6aa3b685",
                "md5": "896ec01c457e70d9b3510baab2399945",
                "sha256": "adbb6866bbd4254d54146cbf7f88766b327198ab4c10b4976dd46ef30a6696de"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "896ec01c457e70d9b3510baab2399945",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2012272,
            "upload_time": "2024-11-24T18:40:23",
            "upload_time_iso_8601": "2024-11-24T18:40:23.789035Z",
            "url": "https://files.pythonhosted.org/packages/bc/eb/84f6ade80720d95d229d9adeed07e20b67cac1d4f773f10851ec6aa3b685/hussh-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e3882337652193611adb3f281e45c63548b5fe853a4798273c02cd76b29e03b",
                "md5": "3deeee39563c4007e5972adb0e36d53b",
                "sha256": "21f5df53e5185d8323f90a47013f6a31c3e262188fd53a56649e5ce5d14dbc9c"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3deeee39563c4007e5972adb0e36d53b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2190723,
            "upload_time": "2024-11-24T18:39:20",
            "upload_time_iso_8601": "2024-11-24T18:39:20.615441Z",
            "url": "https://files.pythonhosted.org/packages/9e/38/82337652193611adb3f281e45c63548b5fe853a4798273c02cd76b29e03b/hussh-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1aeec126027a50707c60c753abf9f154c6628ce481e750302d49227e3ba74181",
                "md5": "acd60123c7071c6d5cf18cb3439941d5",
                "sha256": "eb18bd064a212d28ba5466146cc52996f341c1a423e2e11c432e066251642b2a"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "acd60123c7071c6d5cf18cb3439941d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1578591,
            "upload_time": "2024-11-24T18:39:35",
            "upload_time_iso_8601": "2024-11-24T18:39:35.972803Z",
            "url": "https://files.pythonhosted.org/packages/1a/ee/c126027a50707c60c753abf9f154c6628ce481e750302d49227e3ba74181/hussh-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93208ab09500b85b36b69a18ddb3ec259b286d05151150fdda969604a464a711",
                "md5": "c26cd3215639e773f92ba16e0956e6c2",
                "sha256": "4d31029fd021ebe1e806357667b7b05b1c32b8a70c95b174bfa6491dcb09a9eb"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c26cd3215639e773f92ba16e0956e6c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1809680,
            "upload_time": "2024-11-24T18:40:00",
            "upload_time_iso_8601": "2024-11-24T18:40:00.402359Z",
            "url": "https://files.pythonhosted.org/packages/93/20/8ab09500b85b36b69a18ddb3ec259b286d05151150fdda969604a464a711/hussh-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cadb2ad400c3f0b61f99430886ec3c85e1edc8f8344748bbcf9c72d6e4b87a56",
                "md5": "6168cb9b3f297e2c1ebcb2dc9dfc58d9",
                "sha256": "f613a825dd57c613ec97c9955625ee3ef5b8ad1fa6c1cf83ca9a3bcb00ad6a39"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6168cb9b3f297e2c1ebcb2dc9dfc58d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1834832,
            "upload_time": "2024-11-24T18:39:50",
            "upload_time_iso_8601": "2024-11-24T18:39:50.061601Z",
            "url": "https://files.pythonhosted.org/packages/ca/db/2ad400c3f0b61f99430886ec3c85e1edc8f8344748bbcf9c72d6e4b87a56/hussh-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9eae9a7da744038b13cc44682abf36d714db4d43e6a53d82a518e888276d9ec2",
                "md5": "d47f7f456f3225f697d8420e3781b137",
                "sha256": "8a869d3d1fcb6a9b0bbfa8c8d9b4dfe403f12a1b900bfef9ee032e1cb299f6c6"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d47f7f456f3225f697d8420e3781b137",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1903111,
            "upload_time": "2024-11-24T18:40:12",
            "upload_time_iso_8601": "2024-11-24T18:40:12.298266Z",
            "url": "https://files.pythonhosted.org/packages/9e/ae/9a7da744038b13cc44682abf36d714db4d43e6a53d82a518e888276d9ec2/hussh-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da41158c1a5eb5d4f8c3e36759cd95a4a7113d0cafd870c6379ed480556270cd",
                "md5": "d51f1f49169a0ab19e79a1510ca2e6d9",
                "sha256": "ae0197c99823483cf6080268b6345393ca1d7a9f6c8888164f4ce954786b5cd8"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d51f1f49169a0ab19e79a1510ca2e6d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2485167,
            "upload_time": "2024-11-24T18:40:49",
            "upload_time_iso_8601": "2024-11-24T18:40:49.210780Z",
            "url": "https://files.pythonhosted.org/packages/da/41/158c1a5eb5d4f8c3e36759cd95a4a7113d0cafd870c6379ed480556270cd/hussh-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9df8226c12ec48de0953feb645d13a3e5dd7cfa8d60bb2abf8919c863b089870",
                "md5": "c1d2dc6f91fca6d72a88b0201506b6ce",
                "sha256": "81cf6ebd0e912942973e0f035a75b539ae084414efd1a19fd828c21c9f3e242b"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c1d2dc6f91fca6d72a88b0201506b6ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1855221,
            "upload_time": "2024-11-24T18:41:03",
            "upload_time_iso_8601": "2024-11-24T18:41:03.256850Z",
            "url": "https://files.pythonhosted.org/packages/9d/f8/226c12ec48de0953feb645d13a3e5dd7cfa8d60bb2abf8919c863b089870/hussh-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf103787647af89757658ed57f2d7aa2915cb1e57ed729641d17990efe116162",
                "md5": "1e6f2e754011c80ec233196d4edb6446",
                "sha256": "9fa5f968a4317ef50e2aab9df88ca903797bf467e23afe9a49c8646bee835d57"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1e6f2e754011c80ec233196d4edb6446",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1988957,
            "upload_time": "2024-11-24T18:41:14",
            "upload_time_iso_8601": "2024-11-24T18:41:14.963377Z",
            "url": "https://files.pythonhosted.org/packages/bf/10/3787647af89757658ed57f2d7aa2915cb1e57ed729641d17990efe116162/hussh-0.1.8-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be1a6088c5e9e88432381ca40dcbdc8bd8cf587239df6a6b533fde4a228ea309",
                "md5": "aeff9eb1ed8dc3a0f2aac515c15a79c6",
                "sha256": "812ba822aa6be36413920423f82bbe5e23d24ade8d2f31e892e3c5a7bddb7ca7"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aeff9eb1ed8dc3a0f2aac515c15a79c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2083614,
            "upload_time": "2024-11-24T18:41:26",
            "upload_time_iso_8601": "2024-11-24T18:41:26.447928Z",
            "url": "https://files.pythonhosted.org/packages/be/1a/6088c5e9e88432381ca40dcbdc8bd8cf587239df6a6b533fde4a228ea309/hussh-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3de1d4e32f0e67630b806e3097c8237b069bdd5a74ac0fa515a2e29ff17156b1",
                "md5": "2caf1da47e982b3235043c7b743af798",
                "sha256": "f2d8adcc6080a95f9399742c6f565f7fca7ce5397429451ef16fae16c441f3dd"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2caf1da47e982b3235043c7b743af798",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 301593,
            "upload_time": "2024-11-24T18:41:37",
            "upload_time_iso_8601": "2024-11-24T18:41:37.528879Z",
            "url": "https://files.pythonhosted.org/packages/3d/e1/d4e32f0e67630b806e3097c8237b069bdd5a74ac0fa515a2e29ff17156b1/hussh-0.1.8-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "915f99a62c6382fe07e5e1edf9c4a4f5ffa389e7e7249697a4712ef167441a3f",
                "md5": "b5f4069ad519684e0cea26e7d8938730",
                "sha256": "10ed4bc62eb65b54816df213c97f0f912389e46757bbb8a9bea616a2fde2f721"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5f4069ad519684e0cea26e7d8938730",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1685908,
            "upload_time": "2024-11-24T18:40:37",
            "upload_time_iso_8601": "2024-11-24T18:40:37.402132Z",
            "url": "https://files.pythonhosted.org/packages/91/5f/99a62c6382fe07e5e1edf9c4a4f5ffa389e7e7249697a4712ef167441a3f/hussh-0.1.8-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0466c4280d443898ba9feaeb8019a51dfc745e2b8bbc4b18ec1885a6ef6a3cb5",
                "md5": "05e4d31cc1dfc7ccc546a19b205fbe84",
                "sha256": "aa99f173a5cbcf93ef6c5e35131002f399cb0db6c8a7c82ca5ed5da8c6b06adb"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "05e4d31cc1dfc7ccc546a19b205fbe84",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2012292,
            "upload_time": "2024-11-24T18:40:25",
            "upload_time_iso_8601": "2024-11-24T18:40:25.723073Z",
            "url": "https://files.pythonhosted.org/packages/04/66/c4280d443898ba9feaeb8019a51dfc745e2b8bbc4b18ec1885a6ef6a3cb5/hussh-0.1.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e073bbee4c8b94c3139d3bb4d43e80266029164c6930b4f438de56dfa8b046a0",
                "md5": "109c2e0346f4e40abd84c1f0a46cf725",
                "sha256": "ce679b48efe07047678284aefc76e1ae73ecdad210ded4c33d8fa98e49c54132"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "109c2e0346f4e40abd84c1f0a46cf725",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2190732,
            "upload_time": "2024-11-24T18:39:22",
            "upload_time_iso_8601": "2024-11-24T18:39:22.460096Z",
            "url": "https://files.pythonhosted.org/packages/e0/73/bbee4c8b94c3139d3bb4d43e80266029164c6930b4f438de56dfa8b046a0/hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd2e0a2ce4ae469122fa2356e97d608807fb7fcc0ab246bcaeabf1a77df0f1c8",
                "md5": "30b59f802af428944096478fafdbfc43",
                "sha256": "ba350759d4cf91bb88528baf1f710f11e9f6aa5196ecb7563bc50dc4d451eceb"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "30b59f802af428944096478fafdbfc43",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1578585,
            "upload_time": "2024-11-24T18:39:37",
            "upload_time_iso_8601": "2024-11-24T18:39:37.887180Z",
            "url": "https://files.pythonhosted.org/packages/bd/2e/0a2ce4ae469122fa2356e97d608807fb7fcc0ab246bcaeabf1a77df0f1c8/hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fcaead8413d815d71a13b54d9ff7049348dc2df5f93e3840473ca30095ad900",
                "md5": "ef232d9f3bf1e9274900339265e8bf89",
                "sha256": "7e821d613e35d4ab5953136f2b5a5848951d1cfc45f7f3050b73306b455786c1"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef232d9f3bf1e9274900339265e8bf89",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1808439,
            "upload_time": "2024-11-24T18:40:02",
            "upload_time_iso_8601": "2024-11-24T18:40:02.431070Z",
            "url": "https://files.pythonhosted.org/packages/1f/ca/ead8413d815d71a13b54d9ff7049348dc2df5f93e3840473ca30095ad900/hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "967824ea81a6bf801d6be51f9f816e5fe70c010d9fd7af15a94e39046ab737bb",
                "md5": "17000a2572d407df6d030a6952de4999",
                "sha256": "504c5d92779c37e0ffa8322904e5c4413b336a90efabf2e387fe008269203d4d"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "17000a2572d407df6d030a6952de4999",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1834829,
            "upload_time": "2024-11-24T18:39:51",
            "upload_time_iso_8601": "2024-11-24T18:39:51.356574Z",
            "url": "https://files.pythonhosted.org/packages/96/78/24ea81a6bf801d6be51f9f816e5fe70c010d9fd7af15a94e39046ab737bb/hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d3b0f270588f51bd54346f5aff8f9c9f5e31440cb411b701f6e3daad27e4cd4",
                "md5": "04d688faedaffcfc946583895eadae35",
                "sha256": "b2a95e14599b88599dd2e169a35742ca1e45cc476cbbc0fc5c1e3973163e94c0"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04d688faedaffcfc946583895eadae35",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1902542,
            "upload_time": "2024-11-24T18:40:13",
            "upload_time_iso_8601": "2024-11-24T18:40:13.598904Z",
            "url": "https://files.pythonhosted.org/packages/3d/3b/0f270588f51bd54346f5aff8f9c9f5e31440cb411b701f6e3daad27e4cd4/hussh-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8773146a3039fd649c4a60830c5605cddea55e9211b3e214013e1d329e6c198f",
                "md5": "7f92c514430f229e41a305db31a419a1",
                "sha256": "979d065ea62ecb458f7a274206b75904b0287b3bebe5b95eb23c98936fff66dc"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f92c514430f229e41a305db31a419a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2485179,
            "upload_time": "2024-11-24T18:40:51",
            "upload_time_iso_8601": "2024-11-24T18:40:51.171474Z",
            "url": "https://files.pythonhosted.org/packages/87/73/146a3039fd649c4a60830c5605cddea55e9211b3e214013e1d329e6c198f/hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e98f6a3801e93a698b0d6606fa153803737d06a9a37e7a2370328c355eb7baa6",
                "md5": "b094a1d3b081c9cc007f91d29cf35f76",
                "sha256": "39b6319ae5196610394e70e9a493d5518afc3abc4ca58742cc61f39b683d23c9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b094a1d3b081c9cc007f91d29cf35f76",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1855215,
            "upload_time": "2024-11-24T18:41:04",
            "upload_time_iso_8601": "2024-11-24T18:41:04.475247Z",
            "url": "https://files.pythonhosted.org/packages/e9/8f/6a3801e93a698b0d6606fa153803737d06a9a37e7a2370328c355eb7baa6/hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a45e7cbec99aeb72471ace8c947d9629683007c3211956426cd500c5f2f4e476",
                "md5": "4f5730595d21b48b1c5e3dda6a4cf494",
                "sha256": "e124e04ea643534be79e3ca067cc92d7c132a2eed3bccdfc95d5bd057848d46c"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4f5730595d21b48b1c5e3dda6a4cf494",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1988964,
            "upload_time": "2024-11-24T18:41:16",
            "upload_time_iso_8601": "2024-11-24T18:41:16.354183Z",
            "url": "https://files.pythonhosted.org/packages/a4/5e/7cbec99aeb72471ace8c947d9629683007c3211956426cd500c5f2f4e476/hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5a40857cbd3b38b6d4f97653f2a9aa2d21e255dbebd874100851725f042793d",
                "md5": "ad47e7119ea1a42986eb4eed142172a3",
                "sha256": "5236690cad74b41bfb8dbc9bbd7650f2a2179870de43d2e8c4325fdaa21a574e"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad47e7119ea1a42986eb4eed142172a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2083625,
            "upload_time": "2024-11-24T18:41:27",
            "upload_time_iso_8601": "2024-11-24T18:41:27.740663Z",
            "url": "https://files.pythonhosted.org/packages/d5/a4/0857cbd3b38b6d4f97653f2a9aa2d21e255dbebd874100851725f042793d/hussh-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd0704fc74145df8732ece1bb53d13e64e0e3105138b3536c27f09abdf0f61ca",
                "md5": "bd95c6c2a8ba39b662fde696bfa13c68",
                "sha256": "3ec30cdd172cd4530f6f8bd51ed4b4be57ad797ad47b5207c4ce08a73c5f6f5d"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd95c6c2a8ba39b662fde696bfa13c68",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1685901,
            "upload_time": "2024-11-24T18:40:38",
            "upload_time_iso_8601": "2024-11-24T18:40:38.765933Z",
            "url": "https://files.pythonhosted.org/packages/cd/07/04fc74145df8732ece1bb53d13e64e0e3105138b3536c27f09abdf0f61ca/hussh-0.1.8-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c73dffb16acd99edbbe7dd6ed8f68a9e355fcdbb3be62ad3adadca700faf4dcf",
                "md5": "e03c37e7b175024ae7c9a159ef938e7b",
                "sha256": "d9041df55179d3cce2e002ab72085397fd0faf4f1f520fcb4f6c205028bafa84"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e03c37e7b175024ae7c9a159ef938e7b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2012284,
            "upload_time": "2024-11-24T18:40:27",
            "upload_time_iso_8601": "2024-11-24T18:40:27.305588Z",
            "url": "https://files.pythonhosted.org/packages/c7/3d/ffb16acd99edbbe7dd6ed8f68a9e355fcdbb3be62ad3adadca700faf4dcf/hussh-0.1.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93e4197b33f08987f33788450075a1ee0e75e206dd917f2e57d52bceea01da9f",
                "md5": "03416b48285766eaa1599a7d1e327dc0",
                "sha256": "ab7a581a6e6dc2568058ca0c8fc39abb4208bde891da6f56d24e03bfb8d9dbd8"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03416b48285766eaa1599a7d1e327dc0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2190727,
            "upload_time": "2024-11-24T18:39:24",
            "upload_time_iso_8601": "2024-11-24T18:39:24.353251Z",
            "url": "https://files.pythonhosted.org/packages/93/e4/197b33f08987f33788450075a1ee0e75e206dd917f2e57d52bceea01da9f/hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc9b7dd31eb128da6b8e26b6473d94942f947f513fb87d60969f3169293c9119",
                "md5": "f3daef77aa7608fdd3ade091a8c80a23",
                "sha256": "92956942e9a06a40bffb43fa3e05eaf9d2a8f81bb77250c796d36c70b25a8cb3"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f3daef77aa7608fdd3ade091a8c80a23",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1578580,
            "upload_time": "2024-11-24T18:39:40",
            "upload_time_iso_8601": "2024-11-24T18:39:40.407109Z",
            "url": "https://files.pythonhosted.org/packages/cc/9b/7dd31eb128da6b8e26b6473d94942f947f513fb87d60969f3169293c9119/hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98afdfd8dc71a440d958f270379579f96aa1fae9a5cf51ec4fb4b39e7ca35728",
                "md5": "3804cf48d89b0a14befda2e1fcafd4e0",
                "sha256": "d9776c9cd2a12e71ee1a001d0432618bc982f216497ce74020011ac26a36a463"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3804cf48d89b0a14befda2e1fcafd4e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1809683,
            "upload_time": "2024-11-24T18:40:03",
            "upload_time_iso_8601": "2024-11-24T18:40:03.789778Z",
            "url": "https://files.pythonhosted.org/packages/98/af/dfd8dc71a440d958f270379579f96aa1fae9a5cf51ec4fb4b39e7ca35728/hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7909fa70f5494a7898f566a2b621601fb6495661b7cbafd612cd4b44342426e4",
                "md5": "57876d027b897a2bb35a1e1d6ae7dbf5",
                "sha256": "12fea6a8779ef510771f9048066194a2905bdfd3cf01fca849114ad750c12b94"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "57876d027b897a2bb35a1e1d6ae7dbf5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1834823,
            "upload_time": "2024-11-24T18:39:52",
            "upload_time_iso_8601": "2024-11-24T18:39:52.625053Z",
            "url": "https://files.pythonhosted.org/packages/79/09/fa70f5494a7898f566a2b621601fb6495661b7cbafd612cd4b44342426e4/hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94a92a7a437925e16bafe6edee2a6d622f24ca50eb5dcb00a0c5d2002a20a0a3",
                "md5": "e4455babf01ec6be3daea4239aaed5ed",
                "sha256": "03212b76b3be6a8b36b2a6874d47b7f3060a562909a5c1973053edf3bff9bdb9"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4455babf01ec6be3daea4239aaed5ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1903117,
            "upload_time": "2024-11-24T18:40:15",
            "upload_time_iso_8601": "2024-11-24T18:40:15.421876Z",
            "url": "https://files.pythonhosted.org/packages/94/a9/2a7a437925e16bafe6edee2a6d622f24ca50eb5dcb00a0c5d2002a20a0a3/hussh-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc2228630c28724e96b79f8f9b3ac3292c8972be718d61163dfc26a5fc3ea6b4",
                "md5": "21fe134446674add675ca744eceb5b33",
                "sha256": "b0f45203495684d60f9fa710d47e00923dd793d493d029651b1c6982507169fe"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21fe134446674add675ca744eceb5b33",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2485173,
            "upload_time": "2024-11-24T18:40:52",
            "upload_time_iso_8601": "2024-11-24T18:40:52.558277Z",
            "url": "https://files.pythonhosted.org/packages/fc/22/28630c28724e96b79f8f9b3ac3292c8972be718d61163dfc26a5fc3ea6b4/hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44c561ce4438bd0bbf3dab3c912aa546743bfde4bff2f58d92c2b2c2154683fb",
                "md5": "912792806bd0d5bf5d5962d0827c94a8",
                "sha256": "ec41b64861fbe4db051f1577ae6f59dc6641a384bc3c6619ea9012c3a6be01e4"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "912792806bd0d5bf5d5962d0827c94a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1855207,
            "upload_time": "2024-11-24T18:41:05",
            "upload_time_iso_8601": "2024-11-24T18:41:05.940881Z",
            "url": "https://files.pythonhosted.org/packages/44/c5/61ce4438bd0bbf3dab3c912aa546743bfde4bff2f58d92c2b2c2154683fb/hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5d3b66ec9097cbc9dcf7dc86fc28756f9400915fad794033089084f63c8ec20",
                "md5": "cbbe3f19ee981a3e113d9727f11449d6",
                "sha256": "245b6b07eb1fb0e953d461440f537fbf523f229fa08bc127dc6844fd86947c57"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cbbe3f19ee981a3e113d9727f11449d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1988954,
            "upload_time": "2024-11-24T18:41:17",
            "upload_time_iso_8601": "2024-11-24T18:41:17.869870Z",
            "url": "https://files.pythonhosted.org/packages/e5/d3/b66ec9097cbc9dcf7dc86fc28756f9400915fad794033089084f63c8ec20/hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09527dd4f72a2b944c8d9fb817c4c141b4ddc3b15c68d4bd3c280680d59e0de4",
                "md5": "a60ae141ba14bf28d60eec2636acd9c8",
                "sha256": "845a2b2c2da69bd5221f9362f51f3879f8f32591843ed66069a8abd231f9bc24"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a60ae141ba14bf28d60eec2636acd9c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2083619,
            "upload_time": "2024-11-24T18:41:29",
            "upload_time_iso_8601": "2024-11-24T18:41:29.732009Z",
            "url": "https://files.pythonhosted.org/packages/09/52/7dd4f72a2b944c8d9fb817c4c141b4ddc3b15c68d4bd3c280680d59e0de4/hussh-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "505bc1ea916c7251f103e55a5e8261ad9efa47118d233ed9e8fa52b97e4eb808",
                "md5": "67a6eb259405e68ca56496b0c1afe44f",
                "sha256": "3cd93070cc4d7865c17f3ec43f6cc62ff4fecc943b9acc13df798f6e96706494"
            },
            "downloads": -1,
            "filename": "hussh-0.1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "67a6eb259405e68ca56496b0c1afe44f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 539069,
            "upload_time": "2024-11-24T18:41:31",
            "upload_time_iso_8601": "2024-11-24T18:41:31.001398Z",
            "url": "https://files.pythonhosted.org/packages/50/5b/c1ea916c7251f103e55a5e8261ad9efa47118d233ed9e8fa52b97e4eb808/hussh-0.1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-24 18:41:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "hussh"
}
        
Elapsed time: 0.89633s