python-kadmin-rs


Namepython-kadmin-rs JSON
Version 0.5.3 PyPI version JSON
download
home_pageNone
SummaryPython interface to the Kerberos administration interface (kadm5)
upload_time2025-01-10 01:04:42
maintainerNone
docs_urlNone
authorNone
requires_python<3.14,>=3.9
licenseMIT License Copyright (c) 2024 Marc 'risson' Schmitt Copyright (c) 2024 authentik community 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 krb5 kadmin kadm5 kerberos
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Rust and Python bindings for the Kerberos administration interface (kadm5)

This repository contains both a work-in-progress safe, idiomatic Rust bindings for libkadm5, the library to administrate a Kerberos realm that supports the Kerberos administration interface (mainly Heimdal and MIT Kerberos 5), and the underlying "unsafe" bindings generated by bindgen in kadmin-sys.

It also contains a Python API to those bindings.

### Kerberos implementations compatibility

These libraries will only compile against MIT krb5. However, they will allow you to communicate with an MIT krb5 KDC as well as a Heimdal KDC. In fact, these libraries are tested against both!

## kadmin-sys

![Crates.io Version](https://img.shields.io/crates/v/kadmin-sys)
![docs.rs](https://img.shields.io/docsrs/kadmin-sys)

These are the raw bindings to libkadm5. This crate offers two features, `client` and `server`. You must choose one of them depending on how your application is going to interact with the KDC. By default, `client` is enabled.

- `client`: links against `kadm5clnt`. Use this is you plan to remotely access the KDC, using kadmind's GSS-API RPC interface, like the CLI tool `kadmin` does.
- `server`: links against `kadm5srv`. Use this is you plan to directly edit the KDB from the machine where the KDC is running, like the CLI tool `kadmin.local` does.

## kadmin

![Crates.io Version](https://img.shields.io/crates/v/kadmin)
![docs.rs](https://img.shields.io/docsrs/kadmin)

This is a safe, idiomatic Rust interface to libkadm5. This crate offers two features, `client` and `local`. They are similar to how kadmin-sys behaves. You should only enable one of them.

With the `client` feature:

```rust
use kadmin::{KAdmin, KAdminImpl};

let princ = "user/admin@EXAMPLE.ORG";
let password = "vErYsEcUrE";

let kadmin = KAdmin::builder().with_password(&princ, &password).unwrap();

dbg!("{}", kadmin.list_principals("*").unwrap());
```

With the `local` feature:

```rust
use kadmin::{KAdmin, KAdminImpl};

let kadmin = KAdmin::builder().with_local().unwrap();

dbg!("{}", kadmin.list_principals("*").unwrap());
```

#### About thread safety

As far as I can tell, libkadm5 APIs are **not** thread safe. As such, the types provided by this crate are neither `Send` nor `Sync`. You _must not_ use those with threads. You can either create a `KAdmin` instance per thread, or use the `kadmin::sync::KAdmin` interface that spawns a thread and sends the various commands to it. The API is not exactly the same as the non-thread-safe one, but should be close enough that switching between one or the other is easy enough. Read more about this in the documentation of the crate.

## python-kadmin-rs

![PyPI - Version](https://img.shields.io/pypi/v/python-kadmin-rs)
![Read the Docs](https://img.shields.io/readthedocs/kadmin-rs)

These are Python bindings to the above Rust library, using the `kadmin::sync` interface to ensure thread safety. It provides two Python modules: `kadmin` for remote operations, and `kadmin_local` for local operations.

With `kadmin`:

```python
import kadmin

princ = "user/admin@EXAMPLE.ORG"
password = "vErYsEcUrE"
kadm = kadmin.KAdmin.with_password(princ, password)
print(kadm.list_principals("*"))
```

With `kadmin_local`:

```python
import kadmin

kadm = kadmin.KAdmin.with_local()
print(kadm.list_principals("*"))
```

## License

Licensed under the [MIT License](./LICENSE).

## Contributing

Just open a PR.

### Releasing

1. Go to [Actions > Create release PR](https://github.com/authentik-community/kadmin-rs/actions/workflows/release-pr.yml)
2. Click "Run workflow" and select what you need to release and input the new version.
3. Wait for the PR to be opened and the CI to pass
4. Merge the PR.
5. Go to [Releases](https://github.com/authentik-community/kadmin-rs/releases)
6. Edit the created release.
7. Click "Generate release notes"
8. Publish

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "python-kadmin-rs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.9",
    "maintainer_email": null,
    "keywords": "krb5, kadmin, kadm5, kerberos",
    "author": null,
    "author_email": "Marc 'risson' Schmitt <marc.schmitt@risson.space>, authentik community <hello@goauthentik.io>",
    "download_url": "https://files.pythonhosted.org/packages/e7/95/07b708623f13874ad86dc603f2fe36e980a5f5890edea87286d13f2b0b81/python_kadmin_rs-0.5.3.tar.gz",
    "platform": null,
    "description": "# Rust and Python bindings for the Kerberos administration interface (kadm5)\n\nThis repository contains both a work-in-progress safe, idiomatic Rust bindings for libkadm5, the library to administrate a Kerberos realm that supports the Kerberos administration interface (mainly Heimdal and MIT Kerberos 5), and the underlying \"unsafe\" bindings generated by bindgen in kadmin-sys.\n\nIt also contains a Python API to those bindings.\n\n### Kerberos implementations compatibility\n\nThese libraries will only compile against MIT krb5. However, they will allow you to communicate with an MIT krb5 KDC as well as a Heimdal KDC. In fact, these libraries are tested against both!\n\n## kadmin-sys\n\n![Crates.io Version](https://img.shields.io/crates/v/kadmin-sys)\n![docs.rs](https://img.shields.io/docsrs/kadmin-sys)\n\nThese are the raw bindings to libkadm5. This crate offers two features, `client` and `server`. You must choose one of them depending on how your application is going to interact with the KDC. By default, `client` is enabled.\n\n- `client`: links against `kadm5clnt`. Use this is you plan to remotely access the KDC, using kadmind's GSS-API RPC interface, like the CLI tool `kadmin` does.\n- `server`: links against `kadm5srv`. Use this is you plan to directly edit the KDB from the machine where the KDC is running, like the CLI tool `kadmin.local` does.\n\n## kadmin\n\n![Crates.io Version](https://img.shields.io/crates/v/kadmin)\n![docs.rs](https://img.shields.io/docsrs/kadmin)\n\nThis is a safe, idiomatic Rust interface to libkadm5. This crate offers two features, `client` and `local`. They are similar to how kadmin-sys behaves. You should only enable one of them.\n\nWith the `client` feature:\n\n```rust\nuse kadmin::{KAdmin, KAdminImpl};\n\nlet princ = \"user/admin@EXAMPLE.ORG\";\nlet password = \"vErYsEcUrE\";\n\nlet kadmin = KAdmin::builder().with_password(&princ, &password).unwrap();\n\ndbg!(\"{}\", kadmin.list_principals(\"*\").unwrap());\n```\n\nWith the `local` feature:\n\n```rust\nuse kadmin::{KAdmin, KAdminImpl};\n\nlet kadmin = KAdmin::builder().with_local().unwrap();\n\ndbg!(\"{}\", kadmin.list_principals(\"*\").unwrap());\n```\n\n#### About thread safety\n\nAs far as I can tell, libkadm5 APIs are **not** thread safe. As such, the types provided by this crate are neither `Send` nor `Sync`. You _must not_ use those with threads. You can either create a `KAdmin` instance per thread, or use the `kadmin::sync::KAdmin` interface that spawns a thread and sends the various commands to it. The API is not exactly the same as the non-thread-safe one, but should be close enough that switching between one or the other is easy enough. Read more about this in the documentation of the crate.\n\n## python-kadmin-rs\n\n![PyPI - Version](https://img.shields.io/pypi/v/python-kadmin-rs)\n![Read the Docs](https://img.shields.io/readthedocs/kadmin-rs)\n\nThese are Python bindings to the above Rust library, using the `kadmin::sync` interface to ensure thread safety. It provides two Python modules: `kadmin` for remote operations, and `kadmin_local` for local operations.\n\nWith `kadmin`:\n\n```python\nimport kadmin\n\nprinc = \"user/admin@EXAMPLE.ORG\"\npassword = \"vErYsEcUrE\"\nkadm = kadmin.KAdmin.with_password(princ, password)\nprint(kadm.list_principals(\"*\"))\n```\n\nWith `kadmin_local`:\n\n```python\nimport kadmin\n\nkadm = kadmin.KAdmin.with_local()\nprint(kadm.list_principals(\"*\"))\n```\n\n## License\n\nLicensed under the [MIT License](./LICENSE).\n\n## Contributing\n\nJust open a PR.\n\n###\u00a0Releasing\n\n1. Go to [Actions > Create release PR](https://github.com/authentik-community/kadmin-rs/actions/workflows/release-pr.yml)\n2. Click \"Run workflow\" and select what you need to release and input the new version.\n3. Wait for the PR to be opened and the CI to pass\n4. Merge the PR.\n5. Go to [Releases](https://github.com/authentik-community/kadmin-rs/releases)\n6. Edit the created release.\n7. Click \"Generate release notes\"\n8. Publish\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Marc 'risson' Schmitt Copyright (c) 2024 authentik community  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": "Python interface to the Kerberos administration interface (kadm5)",
    "version": "0.5.3",
    "project_urls": {
        "Documentation": "https://github.com/authentik-community/kadmin-rs",
        "Homepage": "https://github.com/authentik-community/kadmin-rs",
        "Repository": "https://github.com/authentik-community/kadmin-rs.git"
    },
    "split_keywords": [
        "krb5",
        " kadmin",
        " kadm5",
        " kerberos"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96ec543f319116dc58129d56a3dfb09018cfbcda0354a2953d42bc1867aa449a",
                "md5": "c859c83f2c48b7789e91b86b64bc0395",
                "sha256": "21f61723687f6fc3f57a8d47f89db0c0eb2394049c6910b3e4b42a77ff4a4d93"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c859c83f2c48b7789e91b86b64bc0395",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 1427275,
            "upload_time": "2025-01-10T01:03:08",
            "upload_time_iso_8601": "2025-01-10T01:03:08.277516Z",
            "url": "https://files.pythonhosted.org/packages/96/ec/543f319116dc58129d56a3dfb09018cfbcda0354a2953d42bc1867aa449a/python_kadmin_rs-0.5.3-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8859b4735721969fee1d9892cd5fb4bfc892da3fdaa47d5ccefede4533e41d6",
                "md5": "06e677480ce53d9409ca87442b4bd53e",
                "sha256": "24e88e19a1774355e573a71a4bae9387459bdf11c0de86078ae69411e6046067"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06e677480ce53d9409ca87442b4bd53e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 1516517,
            "upload_time": "2025-01-10T01:03:10",
            "upload_time_iso_8601": "2025-01-10T01:03:10.451812Z",
            "url": "https://files.pythonhosted.org/packages/a8/85/9b4735721969fee1d9892cd5fb4bfc892da3fdaa47d5ccefede4533e41d6/python_kadmin_rs-0.5.3-cp310-cp310-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1994d5bb5fed217cd779909dd44bdf9f43e052973212ced6646dd7cb30a1bd08",
                "md5": "be48f2091779516da52d39b8cd40c66f",
                "sha256": "6d89c96e4353a805e6c410a19ca028e8d18c19fbfdf097f56f39129fd4b26ad7"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be48f2091779516da52d39b8cd40c66f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 3263859,
            "upload_time": "2025-01-10T01:03:13",
            "upload_time_iso_8601": "2025-01-10T01:03:13.458729Z",
            "url": "https://files.pythonhosted.org/packages/19/94/d5bb5fed217cd779909dd44bdf9f43e052973212ced6646dd7cb30a1bd08/python_kadmin_rs-0.5.3-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aad0e31caae2c4a2b3d6014847f9a788d32542542edf8d4bd9aa7af9bc8fb76c",
                "md5": "c52a09e1e27f21cf06d4c2f451ec49a5",
                "sha256": "d69d57327765e54913c2c6786cd8260f5d74363a72bb1b18ccbc340957c1b920"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c52a09e1e27f21cf06d4c2f451ec49a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 3366773,
            "upload_time": "2025-01-10T01:03:19",
            "upload_time_iso_8601": "2025-01-10T01:03:19.109101Z",
            "url": "https://files.pythonhosted.org/packages/aa/d0/e31caae2c4a2b3d6014847f9a788d32542542edf8d4bd9aa7af9bc8fb76c/python_kadmin_rs-0.5.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8076c05d37ff92a5cf9396db40af6e89f3e4a4002227992d879394cd1ef80200",
                "md5": "9b0bdac68808e40c08d256db058c2335",
                "sha256": "f89748b3b746236cd29bfec9e5d5d5411c540708e537ca1ad7d18d000f7be073"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9b0bdac68808e40c08d256db058c2335",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 1578903,
            "upload_time": "2025-01-10T01:03:21",
            "upload_time_iso_8601": "2025-01-10T01:03:21.393816Z",
            "url": "https://files.pythonhosted.org/packages/80/76/c05d37ff92a5cf9396db40af6e89f3e4a4002227992d879394cd1ef80200/python_kadmin_rs-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "118f07ae48543761dd5e1a6d05670f6093f9c2ab1d86ba1ef81e7273b1c15300",
                "md5": "62360d0cf211e40c0ef1dc438deb97cd",
                "sha256": "39b6bddc1f345b43a72d9ec5eea5f0a79e898e141e32e23fa25290fbebe52013"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62360d0cf211e40c0ef1dc438deb97cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.9",
            "size": 1585344,
            "upload_time": "2025-01-10T01:03:23",
            "upload_time_iso_8601": "2025-01-10T01:03:23.452417Z",
            "url": "https://files.pythonhosted.org/packages/11/8f/07ae48543761dd5e1a6d05670f6093f9c2ab1d86ba1ef81e7273b1c15300/python_kadmin_rs-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70e9b2584122420dd27fad161de1aa62cf2a6d15d813fbde243f078239417265",
                "md5": "fc0a15fa6b9ca3c4c510f7957849d15a",
                "sha256": "67b66577800fcc33ca279c5524687319fb6d41d2be34b34fa50313d183f0b2f5"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fc0a15fa6b9ca3c4c510f7957849d15a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 1427904,
            "upload_time": "2025-01-10T01:03:26",
            "upload_time_iso_8601": "2025-01-10T01:03:26.601301Z",
            "url": "https://files.pythonhosted.org/packages/70/e9/b2584122420dd27fad161de1aa62cf2a6d15d813fbde243f078239417265/python_kadmin_rs-0.5.3-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63e66b2acc009c5d75c42c40eb892d93a8d9180509c42317ecadec92ef6f4aa0",
                "md5": "59be30b06bd6bd1b65e2a8fd6fdaf33f",
                "sha256": "8720e5bb58bf01c900c3fa3bb728f54fbed3362afe2cb29359418f2212dfe67b"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59be30b06bd6bd1b65e2a8fd6fdaf33f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 1516843,
            "upload_time": "2025-01-10T01:03:29",
            "upload_time_iso_8601": "2025-01-10T01:03:29.438575Z",
            "url": "https://files.pythonhosted.org/packages/63/e6/6b2acc009c5d75c42c40eb892d93a8d9180509c42317ecadec92ef6f4aa0/python_kadmin_rs-0.5.3-cp311-cp311-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a61eecc6a261b0c0ebc32c66e7401023227930a90128a2fe0bbf9b0a588f22",
                "md5": "1c471875917f561ac627792b018e8c77",
                "sha256": "8d5cd055a5b7f5be44811fade648f95cab24ad1916d9994a0cafb7b17d790c4b"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c471875917f561ac627792b018e8c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 3263959,
            "upload_time": "2025-01-10T01:03:32",
            "upload_time_iso_8601": "2025-01-10T01:03:32.775637Z",
            "url": "https://files.pythonhosted.org/packages/b3/a6/1eecc6a261b0c0ebc32c66e7401023227930a90128a2fe0bbf9b0a588f22/python_kadmin_rs-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebcf70fa55451b4465430fceb15418b5cdbbcdc57374ff02164ddcee81473b45",
                "md5": "9e07f4fe22e195d491abb7df9d3cd97a",
                "sha256": "20aaed5407895b0c77900795b953732eaae2516e72f403768b4fa1f341e67b61"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e07f4fe22e195d491abb7df9d3cd97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 3366752,
            "upload_time": "2025-01-10T01:03:36",
            "upload_time_iso_8601": "2025-01-10T01:03:36.141036Z",
            "url": "https://files.pythonhosted.org/packages/eb/cf/70fa55451b4465430fceb15418b5cdbbcdc57374ff02164ddcee81473b45/python_kadmin_rs-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1a981ae06cf58802c1b1990b1f6c8c34f796f558b18c1a067358ea40949a93b",
                "md5": "2683aa2cca35365a07dc9941c17b1b0a",
                "sha256": "6915f9c32f5b092a4ca4239a8de8d7418fa6f994586fdbb6c142bd9bf04848d4"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2683aa2cca35365a07dc9941c17b1b0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 1579265,
            "upload_time": "2025-01-10T01:03:39",
            "upload_time_iso_8601": "2025-01-10T01:03:39.364031Z",
            "url": "https://files.pythonhosted.org/packages/c1/a9/81ae06cf58802c1b1990b1f6c8c34f796f558b18c1a067358ea40949a93b/python_kadmin_rs-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7da6728eebafb9b55cd0660172843ab27957279a924dbaba17ed1cdd00195b46",
                "md5": "2ee4cd284371244962bbff64788ab041",
                "sha256": "8a06ed547840db7a20977be2776d65416d89f8e5d43c1edc1afc15f81621577c"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ee4cd284371244962bbff64788ab041",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.9",
            "size": 1585262,
            "upload_time": "2025-01-10T01:03:41",
            "upload_time_iso_8601": "2025-01-10T01:03:41.691781Z",
            "url": "https://files.pythonhosted.org/packages/7d/a6/728eebafb9b55cd0660172843ab27957279a924dbaba17ed1cdd00195b46/python_kadmin_rs-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96461bbfd7d6819851c300b991d7340452fba8edc3d2fe68b33271279eb74887",
                "md5": "a8300cadddd914ca0a179e969893efe0",
                "sha256": "54b5e1c2e22da0d16c1418eb2b46da8baa11699a5db8db2afc52dbfd02d14958"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a8300cadddd914ca0a179e969893efe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 1416637,
            "upload_time": "2025-01-10T01:03:43",
            "upload_time_iso_8601": "2025-01-10T01:03:43.615780Z",
            "url": "https://files.pythonhosted.org/packages/96/46/1bbfd7d6819851c300b991d7340452fba8edc3d2fe68b33271279eb74887/python_kadmin_rs-0.5.3-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be34fd7f5c324aaf1b9ad3dd5050ac2059230618c29adc452d676d2af4d5ae79",
                "md5": "9dff919f76ffe6fb4d67c44e490af138",
                "sha256": "d1dc7ad1f07bbfd09baeb1fb0dfc45c87776ed717052081e63d3bdba340a250e"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dff919f76ffe6fb4d67c44e490af138",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 1503018,
            "upload_time": "2025-01-10T01:03:45",
            "upload_time_iso_8601": "2025-01-10T01:03:45.559264Z",
            "url": "https://files.pythonhosted.org/packages/be/34/fd7f5c324aaf1b9ad3dd5050ac2059230618c29adc452d676d2af4d5ae79/python_kadmin_rs-0.5.3-cp312-cp312-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5293931502534e07806cf7c70631374452cfcbafa44e75c5403416372b701c7",
                "md5": "938e7fdce9f0ebc6e07bf24027767150",
                "sha256": "86404a1060ece916088ae4a0d188e9309fd46e0b3003779ee7a8dc7493176779"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "938e7fdce9f0ebc6e07bf24027767150",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 3268475,
            "upload_time": "2025-01-10T01:03:49",
            "upload_time_iso_8601": "2025-01-10T01:03:49.029125Z",
            "url": "https://files.pythonhosted.org/packages/e5/29/3931502534e07806cf7c70631374452cfcbafa44e75c5403416372b701c7/python_kadmin_rs-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba5df18ca5df97a4241711555987eb308c6e6c5505883514ac7f18d7aebd52f2",
                "md5": "eb2570e36cdf2f8ec1889b485c6ddbd2",
                "sha256": "7aa62a618af2b2112f708fd44f9cc3cf25e28f1562ea66a2036fb3cd1a47e649"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb2570e36cdf2f8ec1889b485c6ddbd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 3371699,
            "upload_time": "2025-01-10T01:03:52",
            "upload_time_iso_8601": "2025-01-10T01:03:52.580842Z",
            "url": "https://files.pythonhosted.org/packages/ba/5d/f18ca5df97a4241711555987eb308c6e6c5505883514ac7f18d7aebd52f2/python_kadmin_rs-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91d342c4d57414cfdf4e4ff528dd8e72428908ee67aeeae6a63fe2f5dbcd04bc",
                "md5": "09ca9d2964d7224c8baf27e2760fc3fb",
                "sha256": "80813af82dfbcc6a90505183c822eab11de77b6703e5691e37ed77d292224dd9"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09ca9d2964d7224c8baf27e2760fc3fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 1584049,
            "upload_time": "2025-01-10T01:03:54",
            "upload_time_iso_8601": "2025-01-10T01:03:54.368975Z",
            "url": "https://files.pythonhosted.org/packages/91/d3/42c4d57414cfdf4e4ff528dd8e72428908ee67aeeae6a63fe2f5dbcd04bc/python_kadmin_rs-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a65705f179cf4bf4d16fc1daeac0810def57da2f4514a5b79ca60f24d7efb90",
                "md5": "41115135d303f46e20b7404d84b71e8a",
                "sha256": "6799a0faddb4ccf200acfa87da38e5fa2af54970d066b2c876e752bbf794b204"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41115135d303f46e20b7404d84b71e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.9",
            "size": 1590360,
            "upload_time": "2025-01-10T01:03:57",
            "upload_time_iso_8601": "2025-01-10T01:03:57.460985Z",
            "url": "https://files.pythonhosted.org/packages/9a/65/705f179cf4bf4d16fc1daeac0810def57da2f4514a5b79ca60f24d7efb90/python_kadmin_rs-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7375f006c5e7256cf966ef42f16e11b52f350a312d1ad500f79f93e6ece33437",
                "md5": "9ab8b03f257f7363e4b6cf6c34f05646",
                "sha256": "7121a9c206c69cde1d05a479515abef74f1c8f8a40befbec6e0c3372c080b2b7"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9ab8b03f257f7363e4b6cf6c34f05646",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 1416114,
            "upload_time": "2025-01-10T01:03:59",
            "upload_time_iso_8601": "2025-01-10T01:03:59.391051Z",
            "url": "https://files.pythonhosted.org/packages/73/75/f006c5e7256cf966ef42f16e11b52f350a312d1ad500f79f93e6ece33437/python_kadmin_rs-0.5.3-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa11ba5053c6bb09ee0157e21b1704250a61b4bad541d6c30c5b6179b1a0db39",
                "md5": "cd333a16fc3b2fdaa02ab2ed72d01004",
                "sha256": "60d1ce08126ae77aa14fbd0d2137a1259043518c67ca30f87d903a2aa190f50b"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd333a16fc3b2fdaa02ab2ed72d01004",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 1502479,
            "upload_time": "2025-01-10T01:04:01",
            "upload_time_iso_8601": "2025-01-10T01:04:01.338084Z",
            "url": "https://files.pythonhosted.org/packages/fa/11/ba5053c6bb09ee0157e21b1704250a61b4bad541d6c30c5b6179b1a0db39/python_kadmin_rs-0.5.3-cp313-cp313-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fffac2a8b7f8829fd2e8bee3de583275414b60aaff944512a631dab4d18ff5db",
                "md5": "d82e979e73dea9b2061af1c76d31f82b",
                "sha256": "109450153c33f9e6dd26a9da6f74e1fd58cc9367c1e55edc677e5697f92d977f"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d82e979e73dea9b2061af1c76d31f82b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 3267905,
            "upload_time": "2025-01-10T01:04:03",
            "upload_time_iso_8601": "2025-01-10T01:04:03.202933Z",
            "url": "https://files.pythonhosted.org/packages/ff/fa/c2a8b7f8829fd2e8bee3de583275414b60aaff944512a631dab4d18ff5db/python_kadmin_rs-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "224c0d21e079039492ca84ab6ca28e6f6c348102edfff42cfa42a2020f6a4143",
                "md5": "0b454f954c842d1004bbe92eb9ba2745",
                "sha256": "316a12f972b2881e642b5c5dde8f32f03d9829a1c382493b55239d8960e2ed90"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b454f954c842d1004bbe92eb9ba2745",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 3370773,
            "upload_time": "2025-01-10T01:04:06",
            "upload_time_iso_8601": "2025-01-10T01:04:06.396250Z",
            "url": "https://files.pythonhosted.org/packages/22/4c/0d21e079039492ca84ab6ca28e6f6c348102edfff42cfa42a2020f6a4143/python_kadmin_rs-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e52d700771abd5c70cbd839057b4a19c0c0676d1722909c9433a1120f8e68879",
                "md5": "62bf3bc78350a68a800dd44eb93ee067",
                "sha256": "e42f6598ff7591c5bc6823b7da403d2b853f6d74c64cacb9aa929cd9246ca41c"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62bf3bc78350a68a800dd44eb93ee067",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 1568233,
            "upload_time": "2025-01-10T01:04:11",
            "upload_time_iso_8601": "2025-01-10T01:04:11.828006Z",
            "url": "https://files.pythonhosted.org/packages/e5/2d/700771abd5c70cbd839057b4a19c0c0676d1722909c9433a1120f8e68879/python_kadmin_rs-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb6ee155a01ef6cba8b2b1aad9316e616297bda754806c0402fe77bf6ab9a9c7",
                "md5": "911a660e326a462f7d2638232f8bfce3",
                "sha256": "4dd05225b469726935f9adf61e76ab93f0841e81204db62f0f7e017aac6d5610"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "911a660e326a462f7d2638232f8bfce3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.9",
            "size": 1589331,
            "upload_time": "2025-01-10T01:04:13",
            "upload_time_iso_8601": "2025-01-10T01:04:13.579066Z",
            "url": "https://files.pythonhosted.org/packages/fb/6e/e155a01ef6cba8b2b1aad9316e616297bda754806c0402fe77bf6ab9a9c7/python_kadmin_rs-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c95fef2d51a19b72af0e6da4d68f5a5fae9011c4e03439ba2b587060e2706fd",
                "md5": "4108ca5afb0652c29dfd56acefe22ced",
                "sha256": "e5fe560c468428fc8dd75fc492993a7bebd27f87f916229f9bca2bb432f1a3e0"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4108ca5afb0652c29dfd56acefe22ced",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 1427961,
            "upload_time": "2025-01-10T01:04:15",
            "upload_time_iso_8601": "2025-01-10T01:04:15.450585Z",
            "url": "https://files.pythonhosted.org/packages/7c/95/fef2d51a19b72af0e6da4d68f5a5fae9011c4e03439ba2b587060e2706fd/python_kadmin_rs-0.5.3-cp39-cp39-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6bf6092abd63a6f5acbe19d68a7fa7db022cacb0eae21174fe7d5752ffc2156",
                "md5": "cda1be47c87b159218f4b9d121b9e801",
                "sha256": "81a6b16c0eadaefc7a22ac623df91af7d33a7796603468fe15a8c5c83edae1a3"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cda1be47c87b159218f4b9d121b9e801",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 1517931,
            "upload_time": "2025-01-10T01:04:17",
            "upload_time_iso_8601": "2025-01-10T01:04:17.310960Z",
            "url": "https://files.pythonhosted.org/packages/f6/bf/6092abd63a6f5acbe19d68a7fa7db022cacb0eae21174fe7d5752ffc2156/python_kadmin_rs-0.5.3-cp39-cp39-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddac61a06552f85bdc478ad45d067559b6b153635ccee5405bb34ed483d7371b",
                "md5": "bb5e655fad670cc571f543edaa709f19",
                "sha256": "2ffdae3516d5b350189925cd403007960f989751d48c7eabcecef527b181762a"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb5e655fad670cc571f543edaa709f19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 3265662,
            "upload_time": "2025-01-10T01:04:20",
            "upload_time_iso_8601": "2025-01-10T01:04:20.481951Z",
            "url": "https://files.pythonhosted.org/packages/dd/ac/61a06552f85bdc478ad45d067559b6b153635ccee5405bb34ed483d7371b/python_kadmin_rs-0.5.3-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90c0a4bad353abf59be4f648dd5195ac61d7dff9e8935219c523e1ecfef9d746",
                "md5": "03c1cf9981df31c27220d32e43dbc17c",
                "sha256": "2756362289dffd2656ab50fa4723fc29b82f2035d6d927b3ec889e88fe36009c"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03c1cf9981df31c27220d32e43dbc17c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 3370713,
            "upload_time": "2025-01-10T01:04:22",
            "upload_time_iso_8601": "2025-01-10T01:04:22.738243Z",
            "url": "https://files.pythonhosted.org/packages/90/c0/a4bad353abf59be4f648dd5195ac61d7dff9e8935219c523e1ecfef9d746/python_kadmin_rs-0.5.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43378d058b01311e0787a75f8911fd2a6c4d24971d4491aedfbc428fed52628e",
                "md5": "12a60f8945248e7e567c44d7101740d3",
                "sha256": "b18fee5f03f1ac89d70c621e99e2ebfc9c973daa157662fec55008980fd70247"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "12a60f8945248e7e567c44d7101740d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 1567665,
            "upload_time": "2025-01-10T01:04:24",
            "upload_time_iso_8601": "2025-01-10T01:04:24.597077Z",
            "url": "https://files.pythonhosted.org/packages/43/37/8d058b01311e0787a75f8911fd2a6c4d24971d4491aedfbc428fed52628e/python_kadmin_rs-0.5.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "137072507d1a7c309995bec1e3f8bb3ef524fda125e62a8644cbca42ad2d6f0b",
                "md5": "fbd5fbfef69534f51f36aabd9546a4b4",
                "sha256": "8056f03f82822ff7580a11969f16a4073f3afcece7c73c0b633d1e73e1abcc08"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbd5fbfef69534f51f36aabd9546a4b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.9",
            "size": 1588803,
            "upload_time": "2025-01-10T01:04:26",
            "upload_time_iso_8601": "2025-01-10T01:04:26.409742Z",
            "url": "https://files.pythonhosted.org/packages/13/70/72507d1a7c309995bec1e3f8bb3ef524fda125e62a8644cbca42ad2d6f0b/python_kadmin_rs-0.5.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4481e05f992f2b6aed037415055c21334731479915a4c6b00102d3294136a344",
                "md5": "da61fb59842aa5e3dfbb0af4a9623ab6",
                "sha256": "2d7b1d6a94d93191ec9b12bbe70994b18f8d7a9e5805faa55a22847d3f49c24e"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da61fb59842aa5e3dfbb0af4a9623ab6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.14,>=3.9",
            "size": 1519290,
            "upload_time": "2025-01-10T01:04:28",
            "upload_time_iso_8601": "2025-01-10T01:04:28.116332Z",
            "url": "https://files.pythonhosted.org/packages/44/81/e05f992f2b6aed037415055c21334731479915a4c6b00102d3294136a344/python_kadmin_rs-0.5.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b5d27d150b0ebbfff41298c2a0b2d9c4ed16273d7702245510886c0693721ce",
                "md5": "a3ac6c500b68f23f83c8c340e3472e7e",
                "sha256": "52061b7228bc5d497e91627f805734c280c71a00a82e09f093f5df6e13112d61"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a3ac6c500b68f23f83c8c340e3472e7e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.14,>=3.9",
            "size": 3253350,
            "upload_time": "2025-01-10T01:04:31",
            "upload_time_iso_8601": "2025-01-10T01:04:31.300370Z",
            "url": "https://files.pythonhosted.org/packages/5b/5d/27d150b0ebbfff41298c2a0b2d9c4ed16273d7702245510886c0693721ce/python_kadmin_rs-0.5.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68a1e34275619667e2c0f49be9e8b3c9e89467692dca5f878d1d4bbc309b4ea7",
                "md5": "43ad126c6f49117944426e32ce2cfc99",
                "sha256": "a261179cab163eb23e7adb2e0e6637339d1e99dbcf5d0ae58c0dcc0f31c844d2"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43ad126c6f49117944426e32ce2cfc99",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.14,>=3.9",
            "size": 3369585,
            "upload_time": "2025-01-10T01:04:34",
            "upload_time_iso_8601": "2025-01-10T01:04:34.730929Z",
            "url": "https://files.pythonhosted.org/packages/68/a1/e34275619667e2c0f49be9e8b3c9e89467692dca5f878d1d4bbc309b4ea7/python_kadmin_rs-0.5.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5308e54d0d1d0b378320d4d688fc1ad25c5b58469b7962e0a12b4c5e79365a5b",
                "md5": "a9354ad9219ac5954afba27aeed8a6d7",
                "sha256": "058b6e305e01896ce52810324dd21562345ed7b13c651c83ef1d6c384a42f239"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9354ad9219ac5954afba27aeed8a6d7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.14,>=3.9",
            "size": 1520173,
            "upload_time": "2025-01-10T01:04:36",
            "upload_time_iso_8601": "2025-01-10T01:04:36.618204Z",
            "url": "https://files.pythonhosted.org/packages/53/08/e54d0d1d0b378320d4d688fc1ad25c5b58469b7962e0a12b4c5e79365a5b/python_kadmin_rs-0.5.3-pp39-pypy39_pp73-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "553f6499f11ca6f580d7c1a8bca3dd81a1135fb9b53797278ce071d6dceed4db",
                "md5": "e1f61e025ecec56b86b3aedd05f384c2",
                "sha256": "8d12ded8ee64843494188ab1f8e6bce9360edb7f9f3aedb3909ef309154e6d4d"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e1f61e025ecec56b86b3aedd05f384c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.14,>=3.9",
            "size": 3268132,
            "upload_time": "2025-01-10T01:04:39",
            "upload_time_iso_8601": "2025-01-10T01:04:39.159213Z",
            "url": "https://files.pythonhosted.org/packages/55/3f/6499f11ca6f580d7c1a8bca3dd81a1135fb9b53797278ce071d6dceed4db/python_kadmin_rs-0.5.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61a2ef419f72494ed3584f44d99c1daa3c58bbb4481668f948f4d625bfde5ebb",
                "md5": "ac9aed19a03f479dc0869415ff317e10",
                "sha256": "f2895dcc2b03db5bddbda1eb4eebda0da5371347c2408a331762a4dad1942516"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac9aed19a03f479dc0869415ff317e10",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.14,>=3.9",
            "size": 3372079,
            "upload_time": "2025-01-10T01:04:41",
            "upload_time_iso_8601": "2025-01-10T01:04:41.127801Z",
            "url": "https://files.pythonhosted.org/packages/61/a2/ef419f72494ed3584f44d99c1daa3c58bbb4481668f948f4d625bfde5ebb/python_kadmin_rs-0.5.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e79507b708623f13874ad86dc603f2fe36e980a5f5890edea87286d13f2b0b81",
                "md5": "853b2743ed8836fb06b5e51b169ef73c",
                "sha256": "4f46fd854af622896136c3ac4fc5e6a37d37bfffb5b2023e438001ffa62ab7e3"
            },
            "downloads": -1,
            "filename": "python_kadmin_rs-0.5.3.tar.gz",
            "has_sig": false,
            "md5_digest": "853b2743ed8836fb06b5e51b169ef73c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.9",
            "size": 89865,
            "upload_time": "2025-01-10T01:04:42",
            "upload_time_iso_8601": "2025-01-10T01:04:42.730799Z",
            "url": "https://files.pythonhosted.org/packages/e7/95/07b708623f13874ad86dc603f2fe36e980a5f5890edea87286d13f2b0b81/python_kadmin_rs-0.5.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-10 01:04:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "authentik-community",
    "github_project": "kadmin-rs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "python-kadmin-rs"
}
        
Elapsed time: 0.42612s