sspilib


Namesspilib JSON
Version 0.1.0 PyPI version JSON
download
home_page
SummarySSPI API bindings for Python
upload_time2023-10-03 16:21:16
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2023 Jordan Borean, Red Hat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords sspi kerberos negotiate
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python SSPI Library

[![Test workflow](https://github.com/jborean93/sspilib/actions/workflows/ci.yml/badge.svg)](https://github.com/jborean93/sspilib/actions/workflows/ci.yml)
[![PyPI version](https://badge.fury.io/py/sspilib.svg)](https://badge.fury.io/py/sspilib)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jborean93/sspilib/blob/main/LICENSE)

This library provides Python functions that wraps the Windows SSPI API.
It is designed to be both a high and low level interface that other libraries can easily leverage to use with SSPI integration.
The high level interface is under the `sspilib` namespace whereas the low-level interface is under the `sspilib.raw` interface.

## Requirements

* Python 3.8+

More requires are needed to compile the code from scratch but this library is shipped as a wheel so it isn't mandatory for installation.

## Installation

Simply run:

```bash
pip install sspilib
```

To install from source run the following:

```bash
git clone https://github.com/jborean93/sspilib.git
python -m pip install build
python -m build
pip install dist/sspilib-*.whl
```

## Development

To run the tests or make changes to this repo run the following:

```bash
git clone https://github.com/jborean93/sspilib.git
pip install -r requirements-dev.txt
pre-commit install

python -m pip install -e .

# Can compile the sspi extensions on an adhoc basis
# python setup.py build_ext --inplace
```

From there an editor like VSCode can be used to make changes and run the test suite.
To recompile the Cython files after a change run the `build_ext --inplace` command.

If building on Linux or macOS, a version of `libsspi` from [sspi-rs](https://github.com/Devolutions/sspi-rs) must be compiled with rust.
A copy of `libicuuc` alongside its headers must be present during compile time.
To compile `sspi-rs`, download the git repository and run the following.

```bash
cargo build \
    --package sspi-ffi \
    --release

export LD_LIBRARY_PATH="${PWD}/target/release"
export LIBRARY_PATH="${PWD}/target/release"
```

## Structure

This library is merely a wrapper around the SSPI APIs.
The high level API under `sspilib` exposes an easier to use Python API for SSPI.
The functions under the `sspilib.raw` namespace expose the various SSPI functions under a more Pythonic snake_case format.
For example the [AcquireCredentialsHandle](https://learn.microsoft.com/en-us/windows/win32/secauthn/acquirecredentialshandle--general) function is exposed as `sspilib.raw.acquire_credentials_handle`.

Errors are raised as a `WindowsError` which contains the error message as formatted by Windows and the error code.
For non-Windows hosts there is a compatible `sspilib.WindowsError` class that is structured like the Windows only `WindowsError` builtin.
Some of the objects and constants are exposed as Python classes/dataclasses/enums for ease of use.
Please read through the docstring of the function that will be used to learn more about how to use them.

### Client Authentication Example

Here is a basic example of how to use this library for client authentication:

```python
import sspilib

cred = sspilib.UserCredential(
    "username@DOMAIN.COM",
    "password",
)

ctx = sspilib.ClientSecurityContext(
    "host/server.domain.com",
    credential=cred,
)

in_token = None
while not ctx.complete:
    out_token = ctx.step(in_token)
    if not out_token:
        break

    # exchange_with_server() is a function that sends the out_token to the
    # server we are authenticating with. How this works depends on the app
    # protocol being used, e.g. HTTP, sockets, LDAP, etc.
    in_token = exchange_with_server(out_token)

# Once authenticated we can wrap messages when talking to the server. The final
# message being sent is dependent on the application protocol
secret = b"secret data"

wrapped_secret = ctx.wrap(secret)
server_enc_resp = exchange_with_server(wrapped_secret)
server_resp = ctx.unwrap(server_enc_resp).data
```

The `UserCredential` supports more options, like selecting the authentication protocol used.
The `ClientSecurityContext` requires the Service Principal Name (SPN) of the target server and optional credentials.
Other options can be used to control the context requested attributes, channel bindings, etc as needed.
How the tokens and wrapped data is sent is dependent on the underlying protocols used, this example just shows when to exchange the data.

## Non-Windows Support

While SSPI is a Windows only API, this package ships with `manylinux2014_x86_64`, `macosx_x86_64`, and `macosx_arm64` compatible wheels that use [sspi-rs](https://github.com/Devolutions/sspi-rs).
Support for this is experimental as all the authentication logic is contained in that external API.
The interface for `sspi-rs` is exactly the same as SSPI on Windows so the same code should theoretically be possible.
In saying this, compatibility with SSPI actual is not 100% there so use at your own risk.

It is recommended to use a library that wraps GSSAPI on non-Windows platforms like [python-gssapi](https://github.com/pythongssapi/python-gssapi).
There is no support for any other architectures on Linux except `x86_64` and as `sspi-rs` only supports glibc it cannot be used with musl based distributions like Alpine.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sspilib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "sspi,kerberos,negotiate",
    "author": "",
    "author_email": "Jordan Borean <jborean93@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b5/bf/c5b6e78526f1d2a77e225c8328891a6623f3e3a577a1faaae0aaacab04de/sspilib-0.1.0.tar.gz",
    "platform": null,
    "description": "# Python SSPI Library\n\n[![Test workflow](https://github.com/jborean93/sspilib/actions/workflows/ci.yml/badge.svg)](https://github.com/jborean93/sspilib/actions/workflows/ci.yml)\n[![PyPI version](https://badge.fury.io/py/sspilib.svg)](https://badge.fury.io/py/sspilib)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jborean93/sspilib/blob/main/LICENSE)\n\nThis library provides Python functions that wraps the Windows SSPI API.\nIt is designed to be both a high and low level interface that other libraries can easily leverage to use with SSPI integration.\nThe high level interface is under the `sspilib` namespace whereas the low-level interface is under the `sspilib.raw` interface.\n\n## Requirements\n\n* Python 3.8+\n\nMore requires are needed to compile the code from scratch but this library is shipped as a wheel so it isn't mandatory for installation.\n\n## Installation\n\nSimply run:\n\n```bash\npip install sspilib\n```\n\nTo install from source run the following:\n\n```bash\ngit clone https://github.com/jborean93/sspilib.git\npython -m pip install build\npython -m build\npip install dist/sspilib-*.whl\n```\n\n## Development\n\nTo run the tests or make changes to this repo run the following:\n\n```bash\ngit clone https://github.com/jborean93/sspilib.git\npip install -r requirements-dev.txt\npre-commit install\n\npython -m pip install -e .\n\n# Can compile the sspi extensions on an adhoc basis\n# python setup.py build_ext --inplace\n```\n\nFrom there an editor like VSCode can be used to make changes and run the test suite.\nTo recompile the Cython files after a change run the `build_ext --inplace` command.\n\nIf building on Linux or macOS, a version of `libsspi` from [sspi-rs](https://github.com/Devolutions/sspi-rs) must be compiled with rust.\nA copy of `libicuuc` alongside its headers must be present during compile time.\nTo compile `sspi-rs`, download the git repository and run the following.\n\n```bash\ncargo build \\\n    --package sspi-ffi \\\n    --release\n\nexport LD_LIBRARY_PATH=\"${PWD}/target/release\"\nexport LIBRARY_PATH=\"${PWD}/target/release\"\n```\n\n## Structure\n\nThis library is merely a wrapper around the SSPI APIs.\nThe high level API under `sspilib` exposes an easier to use Python API for SSPI.\nThe functions under the `sspilib.raw` namespace expose the various SSPI functions under a more Pythonic snake_case format.\nFor example the [AcquireCredentialsHandle](https://learn.microsoft.com/en-us/windows/win32/secauthn/acquirecredentialshandle--general) function is exposed as `sspilib.raw.acquire_credentials_handle`.\n\nErrors are raised as a `WindowsError` which contains the error message as formatted by Windows and the error code.\nFor non-Windows hosts there is a compatible `sspilib.WindowsError` class that is structured like the Windows only `WindowsError` builtin.\nSome of the objects and constants are exposed as Python classes/dataclasses/enums for ease of use.\nPlease read through the docstring of the function that will be used to learn more about how to use them.\n\n### Client Authentication Example\n\nHere is a basic example of how to use this library for client authentication:\n\n```python\nimport sspilib\n\ncred = sspilib.UserCredential(\n    \"username@DOMAIN.COM\",\n    \"password\",\n)\n\nctx = sspilib.ClientSecurityContext(\n    \"host/server.domain.com\",\n    credential=cred,\n)\n\nin_token = None\nwhile not ctx.complete:\n    out_token = ctx.step(in_token)\n    if not out_token:\n        break\n\n    # exchange_with_server() is a function that sends the out_token to the\n    # server we are authenticating with. How this works depends on the app\n    # protocol being used, e.g. HTTP, sockets, LDAP, etc.\n    in_token = exchange_with_server(out_token)\n\n# Once authenticated we can wrap messages when talking to the server. The final\n# message being sent is dependent on the application protocol\nsecret = b\"secret data\"\n\nwrapped_secret = ctx.wrap(secret)\nserver_enc_resp = exchange_with_server(wrapped_secret)\nserver_resp = ctx.unwrap(server_enc_resp).data\n```\n\nThe `UserCredential` supports more options, like selecting the authentication protocol used.\nThe `ClientSecurityContext` requires the Service Principal Name (SPN) of the target server and optional credentials.\nOther options can be used to control the context requested attributes, channel bindings, etc as needed.\nHow the tokens and wrapped data is sent is dependent on the underlying protocols used, this example just shows when to exchange the data.\n\n## Non-Windows Support\n\nWhile SSPI is a Windows only API, this package ships with `manylinux2014_x86_64`, `macosx_x86_64`, and `macosx_arm64` compatible wheels that use [sspi-rs](https://github.com/Devolutions/sspi-rs).\nSupport for this is experimental as all the authentication logic is contained in that external API.\nThe interface for `sspi-rs` is exactly the same as SSPI on Windows so the same code should theoretically be possible.\nIn saying this, compatibility with SSPI actual is not 100% there so use at your own risk.\n\nIt is recommended to use a library that wraps GSSAPI on non-Windows platforms like [python-gssapi](https://github.com/pythongssapi/python-gssapi).\nThere is no support for any other architectures on Linux except `x86_64` and as `sspi-rs` only supports glibc it cannot be used with musl based distributions like Alpine.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Jordan Borean, Red Hat  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "SSPI API bindings for Python",
    "version": "0.1.0",
    "project_urls": {
        "homepage": "https://github.com/jborean93/sspilib"
    },
    "split_keywords": [
        "sspi",
        "kerberos",
        "negotiate"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23699dc09dfe4abc178a06e58573c5bb47bcfb128858aefdcff08667fc8b2e7b",
                "md5": "748aad6d8003975ce312de342e6c3bb3",
                "sha256": "5e43f3e684e9d29c80324bd54f52dac65ac4b18d81a2dcd529dce3994369a14d"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "748aad6d8003975ce312de342e6c3bb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4586072,
            "upload_time": "2023-10-03T16:20:15",
            "upload_time_iso_8601": "2023-10-03T16:20:15.131861Z",
            "url": "https://files.pythonhosted.org/packages/23/69/9dc09dfe4abc178a06e58573c5bb47bcfb128858aefdcff08667fc8b2e7b/sspilib-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a62f76ef2e87fb1486c8dd47eff3d77d98962c1749989e1d7644bf1c219e95b",
                "md5": "754037e19f8e0a0ac298dbb7d92e8fc1",
                "sha256": "1eb34eda5d362b6603707a55751f1eff81775709b821e51cb64d1d2fa2bb8b6e"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "754037e19f8e0a0ac298dbb7d92e8fc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4303791,
            "upload_time": "2023-10-03T16:20:17",
            "upload_time_iso_8601": "2023-10-03T16:20:17.791462Z",
            "url": "https://files.pythonhosted.org/packages/5a/62/f76ef2e87fb1486c8dd47eff3d77d98962c1749989e1d7644bf1c219e95b/sspilib-0.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ab0e3ffc25e885330fe601aea27867f333a681e2764517be09fd7665c6d797c",
                "md5": "c78b6f54ce62295f8a7f3596c80647a3",
                "sha256": "8ffe123f056f78cbe18aaed6b15f06e252020061c3387a72615abd46699a0b24"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c78b6f54ce62295f8a7f3596c80647a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 9405589,
            "upload_time": "2023-10-03T16:20:19",
            "upload_time_iso_8601": "2023-10-03T16:20:19.931369Z",
            "url": "https://files.pythonhosted.org/packages/5a/b0/e3ffc25e885330fe601aea27867f333a681e2764517be09fd7665c6d797c/sspilib-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7eb22a8dab09028c70c80435bc5e514e8ed5f2eb877fe82ef80fa76c0eaf5fc7",
                "md5": "b79e0ccdb6526ecfecc88065d1d34339",
                "sha256": "a4151072e28ec3b7d785beac9548a3d6a4549c431eb5487a5b8a1de028e9fef0"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b79e0ccdb6526ecfecc88065d1d34339",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 482615,
            "upload_time": "2023-10-03T16:20:22",
            "upload_time_iso_8601": "2023-10-03T16:20:22.713247Z",
            "url": "https://files.pythonhosted.org/packages/7e/b2/2a8dab09028c70c80435bc5e514e8ed5f2eb877fe82ef80fa76c0eaf5fc7/sspilib-0.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f4e5b23396c6e57974b08c4b8be6b3e8e20e96b10788067755edcc1e065cb50",
                "md5": "9d65f5c0866a3fc0a1457f9bbd05187b",
                "sha256": "2a19696c7b96b6bbef2b2ddf35df5a92f09b268476a348390a2f0da18cf29510"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d65f5c0866a3fc0a1457f9bbd05187b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 563811,
            "upload_time": "2023-10-03T16:20:24",
            "upload_time_iso_8601": "2023-10-03T16:20:24.799874Z",
            "url": "https://files.pythonhosted.org/packages/2f/4e/5b23396c6e57974b08c4b8be6b3e8e20e96b10788067755edcc1e065cb50/sspilib-0.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee873261b2cf7f780c49f22de24197be9ef02fd2c2613c0c6cbc65bcfc4eda13",
                "md5": "22f39551613537ebb8c073868b12dfcf",
                "sha256": "d2778e5e2881405b4d359a604e2802f5b7a7ed433ff62d6073d04c203af10eb1"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "22f39551613537ebb8c073868b12dfcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 471372,
            "upload_time": "2023-10-03T16:20:27",
            "upload_time_iso_8601": "2023-10-03T16:20:27.041808Z",
            "url": "https://files.pythonhosted.org/packages/ee/87/3261b2cf7f780c49f22de24197be9ef02fd2c2613c0c6cbc65bcfc4eda13/sspilib-0.1.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c781ce28dcc8fd68a8980ea73233587d2f46242b6d3c9978ee9b9cca2c8b8edd",
                "md5": "b8c1585ff274f6169d053b30b171c460",
                "sha256": "09d7f72ad5e4bbf9a8f1acf0d5f0c3f9fbe500f44c4a45ac24a99ece84f5654f"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8c1585ff274f6169d053b30b171c460",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4587980,
            "upload_time": "2023-10-03T16:20:29",
            "upload_time_iso_8601": "2023-10-03T16:20:29.325563Z",
            "url": "https://files.pythonhosted.org/packages/c7/81/ce28dcc8fd68a8980ea73233587d2f46242b6d3c9978ee9b9cca2c8b8edd/sspilib-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5408e9c8590f82612d22f6895be536a27ff32d38497ba401b1878b77e310d94f",
                "md5": "9ac17532cb73a6994ed98c1c0073ddc9",
                "sha256": "1e5705e11aaa030a61d2b0a2ce09d2b8a1962dd950e55adc7a3c87dd463c6878"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9ac17532cb73a6994ed98c1c0073ddc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4303914,
            "upload_time": "2023-10-03T16:20:31",
            "upload_time_iso_8601": "2023-10-03T16:20:31.631219Z",
            "url": "https://files.pythonhosted.org/packages/54/08/e9c8590f82612d22f6895be536a27ff32d38497ba401b1878b77e310d94f/sspilib-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e49547fcca85f5a3ccf25f11a93f8b6b9f4fc771500f568879821a65df18ce04",
                "md5": "b9d12e2d13a77eedcf0361287965f8dd",
                "sha256": "dced8213d311c56f5f38044716ebff5412cc156f19678659e8ffa9bb6a642bd7"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9d12e2d13a77eedcf0361287965f8dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 9703691,
            "upload_time": "2023-10-03T16:20:33",
            "upload_time_iso_8601": "2023-10-03T16:20:33.448974Z",
            "url": "https://files.pythonhosted.org/packages/e4/95/47fcca85f5a3ccf25f11a93f8b6b9f4fc771500f568879821a65df18ce04/sspilib-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d3b38fe668921ba7f1f6f8cb3c3bea3b09013ceb433d8ccfcfb0e315b8f2ee8",
                "md5": "861d1f29ae5b2933c4660205e3d9755a",
                "sha256": "d30d38d52dbd857732224e86ae3627d003cc510451083c69fa481fc7de88a7b6"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "861d1f29ae5b2933c4660205e3d9755a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 480847,
            "upload_time": "2023-10-03T16:20:36",
            "upload_time_iso_8601": "2023-10-03T16:20:36.056125Z",
            "url": "https://files.pythonhosted.org/packages/7d/3b/38fe668921ba7f1f6f8cb3c3bea3b09013ceb433d8ccfcfb0e315b8f2ee8/sspilib-0.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b480ca5a70e83f502fd2770de7b4ad69672cbda403f0d66f6eacbf71c991f444",
                "md5": "b8f5febd0b4eab137f0e260cdba13339",
                "sha256": "61c9067168cce962f7fead42c28804c3a39a164b9a7b660200b8cfe31e3af071"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8f5febd0b4eab137f0e260cdba13339",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 563797,
            "upload_time": "2023-10-03T16:20:37",
            "upload_time_iso_8601": "2023-10-03T16:20:37.966177Z",
            "url": "https://files.pythonhosted.org/packages/b4/80/ca5a70e83f502fd2770de7b4ad69672cbda403f0d66f6eacbf71c991f444/sspilib-0.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96cbfdaf0a24bc43164d10045e1e7d1e5ac07eda4bc74f4082877052677b757c",
                "md5": "db19193d1f2ad6b7e0402720c14f2553",
                "sha256": "b526b8e5a236553f5137b951b89a2f108f56138ad05f31fd0a51b10f80b6c3cc"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "db19193d1f2ad6b7e0402720c14f2553",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 472625,
            "upload_time": "2023-10-03T16:20:39",
            "upload_time_iso_8601": "2023-10-03T16:20:39.546719Z",
            "url": "https://files.pythonhosted.org/packages/96/cb/fdaf0a24bc43164d10045e1e7d1e5ac07eda4bc74f4082877052677b757c/sspilib-0.1.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e78e82225cb4a4dca79125ee4d91c577e85b2d9b4f178fcceb22bd71f0bed2af",
                "md5": "82ef1c8d0cee016edc88ac402fdaad4b",
                "sha256": "3ff356d40cd34c900f94f1591eaabd458284042af611ebc1dbf609002066dba5"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82ef1c8d0cee016edc88ac402fdaad4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4597351,
            "upload_time": "2023-10-03T16:20:41",
            "upload_time_iso_8601": "2023-10-03T16:20:41.815804Z",
            "url": "https://files.pythonhosted.org/packages/e7/8e/82225cb4a4dca79125ee4d91c577e85b2d9b4f178fcceb22bd71f0bed2af/sspilib-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3b102f5c948b41bc5bcc7b2623526b3333f9d0eb7717217587b0b288351017b",
                "md5": "54b456e901919c98c7b4da72b39cc362",
                "sha256": "2b0fee3a52d0acef090f6c9b49953a8400fdc1c10aca7334319414a3038aa493"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "54b456e901919c98c7b4da72b39cc362",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4311095,
            "upload_time": "2023-10-03T16:20:43",
            "upload_time_iso_8601": "2023-10-03T16:20:43.524157Z",
            "url": "https://files.pythonhosted.org/packages/b3/b1/02f5c948b41bc5bcc7b2623526b3333f9d0eb7717217587b0b288351017b/sspilib-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4d2272941aa6c5ac2e7471b90553ed99b239d9894b394226eccfc2cf222ef92",
                "md5": "f5298894f3091e6574efc801670bb52a",
                "sha256": "ab52d190dad1d578ec40d1fb417a8571954f4e32f35442a14cb709f57d3acbc9"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5298894f3091e6574efc801670bb52a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 9701199,
            "upload_time": "2023-10-03T16:20:45",
            "upload_time_iso_8601": "2023-10-03T16:20:45.539489Z",
            "url": "https://files.pythonhosted.org/packages/a4/d2/272941aa6c5ac2e7471b90553ed99b239d9894b394226eccfc2cf222ef92/sspilib-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb29322ed4f0bf4f5e16adc4c86f7257990e09386789906b3b641cb74c35d83e",
                "md5": "54a41206e3ffc276525e848a63e4868b",
                "sha256": "b3cf819094383ec883e9a63c11b81d622618c815c18a6c9d761d9a14d9f028d1"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "54a41206e3ffc276525e848a63e4868b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 484025,
            "upload_time": "2023-10-03T16:20:48",
            "upload_time_iso_8601": "2023-10-03T16:20:48.480709Z",
            "url": "https://files.pythonhosted.org/packages/eb/29/322ed4f0bf4f5e16adc4c86f7257990e09386789906b3b641cb74c35d83e/sspilib-0.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91bf84171ce5b390bbf8829e53d31b123d2b05524e807702fb5a1b5e328440c3",
                "md5": "3714dd71d3669e09b94b6ebf8ee2e066",
                "sha256": "b83825a2c43ff84ddff72d09b098057efaabf3841d3c42888078e154cf8e9595"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3714dd71d3669e09b94b6ebf8ee2e066",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 567849,
            "upload_time": "2023-10-03T16:20:50",
            "upload_time_iso_8601": "2023-10-03T16:20:50.673025Z",
            "url": "https://files.pythonhosted.org/packages/91/bf/84171ce5b390bbf8829e53d31b123d2b05524e807702fb5a1b5e328440c3/sspilib-0.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a78c1f62e52795c29948b9c1170dd52ee1bba8664f030f3329558241a3bc6c0b",
                "md5": "54e331a179277f425b12faf727b510c5",
                "sha256": "9aa6ab4c3fc1057251cf1f3f199daf90b99599cdfafc9eade8fdf0c01526dec8"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "54e331a179277f425b12faf727b510c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 472271,
            "upload_time": "2023-10-03T16:20:52",
            "upload_time_iso_8601": "2023-10-03T16:20:52.846976Z",
            "url": "https://files.pythonhosted.org/packages/a7/8c/1f62e52795c29948b9c1170dd52ee1bba8664f030f3329558241a3bc6c0b/sspilib-0.1.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ccbbc50622a5f9983ae0d8a08cc10b693e8440285482178e7db6db693de6728",
                "md5": "cc07dc61c0b2ab8c651c2ee5f1e2dfde",
                "sha256": "82bff5df178386027d0112458b6971bbd18c76eb9e7be53fd61dab33d7bf8417"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc07dc61c0b2ab8c651c2ee5f1e2dfde",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4594909,
            "upload_time": "2023-10-03T16:20:55",
            "upload_time_iso_8601": "2023-10-03T16:20:55.099027Z",
            "url": "https://files.pythonhosted.org/packages/3c/cb/bc50622a5f9983ae0d8a08cc10b693e8440285482178e7db6db693de6728/sspilib-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb27aeadd77c05febdc8bb900df74cc48c097d82950bf475eba0c55407406a38",
                "md5": "642fdaeed84e1047cc452834ff046750",
                "sha256": "18393a9e6e0447cb7f319d361b65e9a0eaa5484705f16787133ffc49ad364c28"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "642fdaeed84e1047cc452834ff046750",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4312189,
            "upload_time": "2023-10-03T16:20:57",
            "upload_time_iso_8601": "2023-10-03T16:20:57.060371Z",
            "url": "https://files.pythonhosted.org/packages/fb/27/aeadd77c05febdc8bb900df74cc48c097d82950bf475eba0c55407406a38/sspilib-0.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e90778975a2adb92aaca723745ee7f56c3b2435f75e1451e6e058dbb4529812",
                "md5": "732cec963fa2495291bb8f3aa3216e05",
                "sha256": "88a423fbca206ba0ca811dc995d8c3af045402b7d330f033e938b24f3a1d93fc"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "732cec963fa2495291bb8f3aa3216e05",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 9465406,
            "upload_time": "2023-10-03T16:20:58",
            "upload_time_iso_8601": "2023-10-03T16:20:58.977218Z",
            "url": "https://files.pythonhosted.org/packages/9e/90/778975a2adb92aaca723745ee7f56c3b2435f75e1451e6e058dbb4529812/sspilib-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b7b50a7802a834aa625ef41782e8e73a17974f00a75bb7b9a08b0b5948150e9",
                "md5": "e1a08beea2a52e65821f9dcafad538f2",
                "sha256": "86bd936b1ef0aa63c6d9623ad08473e74ceb15f342f6e92cbade15ed9574cd33"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "e1a08beea2a52e65821f9dcafad538f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 488271,
            "upload_time": "2023-10-03T16:21:01",
            "upload_time_iso_8601": "2023-10-03T16:21:01.415813Z",
            "url": "https://files.pythonhosted.org/packages/9b/7b/50a7802a834aa625ef41782e8e73a17974f00a75bb7b9a08b0b5948150e9/sspilib-0.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b0f50ea1dbc611b718b5b271b7d5117e78a54183be6023761e52fef422522fa",
                "md5": "0a47229937106461106f96c01a26a863",
                "sha256": "d4f688b94f0a64128444063e1d3d59152614175999222f6e2920681faea833f4"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0a47229937106461106f96c01a26a863",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 569967,
            "upload_time": "2023-10-03T16:21:03",
            "upload_time_iso_8601": "2023-10-03T16:21:03.020682Z",
            "url": "https://files.pythonhosted.org/packages/3b/0f/50ea1dbc611b718b5b271b7d5117e78a54183be6023761e52fef422522fa/sspilib-0.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4df9d06fddc563a582a3e981d36cd384d85b0cb1d6864873bfb9d5901ec427eb",
                "md5": "054354f6b1af64ca3df377a917d21a85",
                "sha256": "2acef24e13e40d9dd8697eaae84ead9f417528ff741d087ec4eb4260518f4dc7"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "054354f6b1af64ca3df377a917d21a85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4592189,
            "upload_time": "2023-10-03T16:21:05",
            "upload_time_iso_8601": "2023-10-03T16:21:05.263905Z",
            "url": "https://files.pythonhosted.org/packages/4d/f9/d06fddc563a582a3e981d36cd384d85b0cb1d6864873bfb9d5901ec427eb/sspilib-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "851f7d89610b35fcdd5c4ecbd2dc9e75a3e38575261dd7921af84b705fab9b8c",
                "md5": "1cbcb9b33b7ba173ac8926f110225117",
                "sha256": "4b625802d80144d856d5eb6e8f4412f186565758da4493c7ad1b88e3d6d353de"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1cbcb9b33b7ba173ac8926f110225117",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4309517,
            "upload_time": "2023-10-03T16:21:06",
            "upload_time_iso_8601": "2023-10-03T16:21:06.896012Z",
            "url": "https://files.pythonhosted.org/packages/85/1f/7d89610b35fcdd5c4ecbd2dc9e75a3e38575261dd7921af84b705fab9b8c/sspilib-0.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eae2ce4eed8fcbbdb73c42c947fdaab9519b6af59513b4833ab1d2e630b94d2a",
                "md5": "4f3d6d51c98606aaf688c7ef980f136d",
                "sha256": "c06ca1e34702bca1c750dcb5133b716f316b38dccb28d55a1a44d9842bc3f391"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f3d6d51c98606aaf688c7ef980f136d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 9430610,
            "upload_time": "2023-10-03T16:21:08",
            "upload_time_iso_8601": "2023-10-03T16:21:08.956241Z",
            "url": "https://files.pythonhosted.org/packages/ea/e2/ce4eed8fcbbdb73c42c947fdaab9519b6af59513b4833ab1d2e630b94d2a/sspilib-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d75608e545ec99ce270d4d84dad34755a875ceaa2ea0eabbe9e5723090f8643",
                "md5": "50894580d49329c046d11a3db2ab5149",
                "sha256": "68496c9bd52b57a1b6d2e5529b43c30060249b8db901127b8343c4ad8cd93670"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "50894580d49329c046d11a3db2ab5149",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 487851,
            "upload_time": "2023-10-03T16:21:11",
            "upload_time_iso_8601": "2023-10-03T16:21:11.144438Z",
            "url": "https://files.pythonhosted.org/packages/3d/75/608e545ec99ce270d4d84dad34755a875ceaa2ea0eabbe9e5723090f8643/sspilib-0.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddd1e4498ca85e747a39e5de6b5be2707e02d372f9a2388988f81d3651102032",
                "md5": "75695e70978737530d28745b4d9e8212",
                "sha256": "369727097f07a440099882580e284e137d9c27b7de354d63b65e327a454e7bee"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75695e70978737530d28745b4d9e8212",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 568838,
            "upload_time": "2023-10-03T16:21:13",
            "upload_time_iso_8601": "2023-10-03T16:21:13.239295Z",
            "url": "https://files.pythonhosted.org/packages/dd/d1/e4498ca85e747a39e5de6b5be2707e02d372f9a2388988f81d3651102032/sspilib-0.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1308ff540fd44c3d07e5ee748e0fdf0fe2fd17eccbc8e2b8b5e7d021d134f788",
                "md5": "afaac44602c99f61657526c837f36be7",
                "sha256": "87d8268c0517149c51a53b3888961ebf66826bb3dbb82c4e5cf10108f5456104"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "afaac44602c99f61657526c837f36be7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 475877,
            "upload_time": "2023-10-03T16:21:14",
            "upload_time_iso_8601": "2023-10-03T16:21:14.612102Z",
            "url": "https://files.pythonhosted.org/packages/13/08/ff540fd44c3d07e5ee748e0fdf0fe2fd17eccbc8e2b8b5e7d021d134f788/sspilib-0.1.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5bfc5b6e78526f1d2a77e225c8328891a6623f3e3a577a1faaae0aaacab04de",
                "md5": "f023f057c334ccff383e8fd025352c27",
                "sha256": "58b5291553cf6220549c0f855e0e6973f4977375d8236ce47bb581efb3e9b1cf"
            },
            "downloads": -1,
            "filename": "sspilib-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f023f057c334ccff383e8fd025352c27",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 55488,
            "upload_time": "2023-10-03T16:21:16",
            "upload_time_iso_8601": "2023-10-03T16:21:16.033939Z",
            "url": "https://files.pythonhosted.org/packages/b5/bf/c5b6e78526f1d2a77e225c8328891a6623f3e3a577a1faaae0aaacab04de/sspilib-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-03 16:21:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jborean93",
    "github_project": "sspilib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sspilib"
}
        
Elapsed time: 0.18126s