Name | rsjwt JSON |
Version |
0.0.4
JSON |
| download |
home_page | None |
Summary | Python wrapper for jsonwebtoken from rust |
upload_time | 2024-12-08 20:29:38 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
jwt
rust
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
rsjwt
=====
.. image:: https://img.shields.io/badge/License-MIT-blue.svg
:target: https://lbesson.mit-license.org/
.. image:: https://img.shields.io/pypi/v/rsjwt.svg
:target: https://pypi.org/project/rsjwt
.. image:: https://img.shields.io/pypi/pyversions/rsjwt.svg
:target: https://pypi.org/project/rsjwt
:alt: Python versions
.. image:: https://readthedocs.org/projects/rsjwt/badge/?version=latest
:target: https://github.com/aamalev/rsjwt#rsjwt
:alt: Documentation Status
.. image:: https://github.com/aamalev/rsjwt/workflows/Tests/badge.svg
:target: https://github.com/aamalev/rsjwt/actions?query=workflow%3ATests
.. image:: https://img.shields.io/pypi/dm/rsjwt.svg
:target: https://pypi.org/project/rsjwt
|
.. image:: https://img.shields.io/badge/Rustc-1.80.0-blue?logo=rust
:target: https://www.rust-lang.org/
.. image:: https://img.shields.io/badge/cargo-clippy-blue?logo=rust
:target: https://doc.rust-lang.org/stable/clippy/
.. image:: https://img.shields.io/badge/PyO3-maturin-blue.svg
:target: https://github.com/PyO3/maturin
.. image:: https://img.shields.io/badge/PyO3-asyncio-blue.svg
:target: https://github.com/awestlake87/pyo3-asyncio
.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
:target: https://github.com/astral-sh/ruff
:alt: Linter: ruff
.. image:: https://img.shields.io/badge/code%20style-ruff-000000.svg
:target: https://github.com/astral-sh/ruff
:alt: Code style: ruff
.. image:: https://img.shields.io/badge/types-Mypy-blue.svg
:target: https://github.com/python/mypy
:alt: Code style: Mypy
.. image:: https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg
:alt: Hatch project
:target: https://github.com/pypa/hatch
Python wrapper for:
| `jsonwebtoken <https://github.com/Keats/jsonwebtoken>`_,
Features
--------
* Encode and decode JWT
* Support HS256, HS384, HS512
* encode datetime.timedelta to float (now + delta)
* encode datetime.datetime with timezone (example datetime.now(timezone.utc))
Install
-------
.. code-block:: shell
pip install rsjwt
Using
-----
.. code-block:: python
from datetime import timedelta
import rsjwt
v = rsjwt.JWT("my-secret")
data = {
"exp": timedelta(hours=8),
"s": "123",
"a": ["123", 123],
"m": {"a": 1},
}
token = v.encode(data)
assert isinstance(token, str)
td = v.decode(token)
assert td["a"] == data["a"]
assert td["s"] == data["s"]
assert td["m"] == data["m"]
assert isinstance(td["exp"], float)
Bench
-----
.. code-block:: bash
% hatch run bench:py
───────────────────────────────────────────────────────────────────────────────── bench.py3.9 ─────────────────────────────────────────────────────────────────────────────────
Python: 3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:37:23)
[Clang 13.0.0 (clang-1300.0.29.30)]
Algorithm: HS256
Iterations: 1000000
| package | secs | n |
| ------------ | ------- | ------ |
| rsjwt | 2.2350 | 1.000 |
| pyjwt | 9.4796 | 4.241 |
| authlib | 12.0257 | 5.381 |
| python-jose | 14.7699 | 6.608 |
| jwcrypto | 61.5658 | 27.546 |
──────────────────────────────────────────────────────────────────────────────── bench.py3.13 ─────────────────────────────────────────────────────────────────────────────────
Python: 3.13.0 (main, Oct 7 2024, 05:02:14) [Clang 16.0.0 (clang-1600.0.26.4)]
Algorithm: HS256
Iterations: 1000000
| package | secs | n |
| ------------ | ------- | ------ |
| rsjwt | 2.1902 | 1.000 |
| pyjwt | 6.2054 | 2.833 |
| authlib | 7.2337 | 3.303 |
| jwcrypto | 41.4919 | 18.944 |
Development
-----------
.. code-block:: bash
cargo fmt
cargo clippy
maturin develop
or use hatch envs:
.. code-block:: bash
hatch run fmt
hatch run check
hatch run build
hatch run test
Raw data
{
"_id": null,
"home_page": null,
"name": "rsjwt",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "jwt, rust",
"author": null,
"author_email": "Alexander Malev <yttrium@somedev.ru>",
"download_url": "https://files.pythonhosted.org/packages/30/fa/c1e23c8a87cae4126c52d09d736ef874905f53c174db847098b202eba611/rsjwt-0.0.4.tar.gz",
"platform": null,
"description": "rsjwt\n=====\n\n.. image:: https://img.shields.io/badge/License-MIT-blue.svg\n :target: https://lbesson.mit-license.org/\n\n.. image:: https://img.shields.io/pypi/v/rsjwt.svg\n :target: https://pypi.org/project/rsjwt\n\n.. image:: https://img.shields.io/pypi/pyversions/rsjwt.svg\n :target: https://pypi.org/project/rsjwt\n :alt: Python versions\n\n.. image:: https://readthedocs.org/projects/rsjwt/badge/?version=latest\n :target: https://github.com/aamalev/rsjwt#rsjwt\n :alt: Documentation Status\n\n.. image:: https://github.com/aamalev/rsjwt/workflows/Tests/badge.svg\n :target: https://github.com/aamalev/rsjwt/actions?query=workflow%3ATests\n\n.. image:: https://img.shields.io/pypi/dm/rsjwt.svg\n :target: https://pypi.org/project/rsjwt\n\n|\n\n.. image:: https://img.shields.io/badge/Rustc-1.80.0-blue?logo=rust\n :target: https://www.rust-lang.org/\n\n.. image:: https://img.shields.io/badge/cargo-clippy-blue?logo=rust\n :target: https://doc.rust-lang.org/stable/clippy/\n\n.. image:: https://img.shields.io/badge/PyO3-maturin-blue.svg\n :target: https://github.com/PyO3/maturin\n\n.. image:: https://img.shields.io/badge/PyO3-asyncio-blue.svg\n :target: https://github.com/awestlake87/pyo3-asyncio\n\n.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\n :target: https://github.com/astral-sh/ruff\n :alt: Linter: ruff\n\n.. image:: https://img.shields.io/badge/code%20style-ruff-000000.svg\n :target: https://github.com/astral-sh/ruff\n :alt: Code style: ruff\n\n.. image:: https://img.shields.io/badge/types-Mypy-blue.svg\n :target: https://github.com/python/mypy\n :alt: Code style: Mypy\n\n.. image:: https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg\n :alt: Hatch project\n :target: https://github.com/pypa/hatch\n\n\nPython wrapper for:\n | `jsonwebtoken <https://github.com/Keats/jsonwebtoken>`_,\n\n\nFeatures\n--------\n\n* Encode and decode JWT\n* Support HS256, HS384, HS512\n* encode datetime.timedelta to float (now + delta)\n* encode datetime.datetime with timezone (example datetime.now(timezone.utc))\n\n\nInstall\n-------\n\n.. code-block:: shell\n\n pip install rsjwt\n\n\nUsing\n-----\n\n.. code-block:: python\n\n from datetime import timedelta\n\n import rsjwt\n\n\n v = rsjwt.JWT(\"my-secret\")\n data = {\n \"exp\": timedelta(hours=8),\n \"s\": \"123\",\n \"a\": [\"123\", 123],\n \"m\": {\"a\": 1},\n }\n token = v.encode(data)\n assert isinstance(token, str)\n\n td = v.decode(token)\n assert td[\"a\"] == data[\"a\"]\n assert td[\"s\"] == data[\"s\"]\n assert td[\"m\"] == data[\"m\"]\n assert isinstance(td[\"exp\"], float)\n\n\nBench\n-----\n\n.. code-block:: bash\n\n % hatch run bench:py \n \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 bench.py3.9 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n Python: 3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:37:23) \n [Clang 13.0.0 (clang-1300.0.29.30)]\n Algorithm: HS256\n Iterations: 1000000\n\n | package | secs | n |\n | ------------ | ------- | ------ |\n | rsjwt | 2.2350 | 1.000 |\n | pyjwt | 9.4796 | 4.241 |\n | authlib | 12.0257 | 5.381 |\n | python-jose | 14.7699 | 6.608 |\n | jwcrypto | 61.5658 | 27.546 |\n \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 bench.py3.13 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n Python: 3.13.0 (main, Oct 7 2024, 05:02:14) [Clang 16.0.0 (clang-1600.0.26.4)]\n Algorithm: HS256\n Iterations: 1000000\n\n | package | secs | n |\n | ------------ | ------- | ------ |\n | rsjwt | 2.1902 | 1.000 |\n | pyjwt | 6.2054 | 2.833 |\n | authlib | 7.2337 | 3.303 |\n | jwcrypto | 41.4919 | 18.944 |\n\n\nDevelopment\n-----------\n\n.. code-block:: bash\n\n cargo fmt\n cargo clippy\n maturin develop\n\n\nor use hatch envs:\n\n.. code-block:: bash\n\n hatch run fmt\n hatch run check\n hatch run build\n hatch run test\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Python wrapper for jsonwebtoken from rust",
"version": "0.0.4",
"project_urls": {
"Changelog": "https://github.com/aamalev/rsjwt/releases",
"Documentation": "https://github.com/aamalev/rsjwt#using",
"Issues": "https://github.com/aamalev/rsjwt/issues",
"Source Code": "https://github.com/aamalev/rsjwt"
},
"split_keywords": [
"jwt",
" rust"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "969cc413e1d70ef58038a769e88c013129a157d1014cbeae9f3865b3f41d9aa8",
"md5": "8a7287d2f58da11b7225d5b541fa86e0",
"sha256": "1e7464a231ae1c8643e387cce05fe7c0d95797cc6170a4f1504960d858556dc1"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8a7287d2f58da11b7225d5b541fa86e0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 621621,
"upload_time": "2024-12-08T20:27:22",
"upload_time_iso_8601": "2024-12-08T20:27:22.684289Z",
"url": "https://files.pythonhosted.org/packages/96/9c/c413e1d70ef58038a769e88c013129a157d1014cbeae9f3865b3f41d9aa8/rsjwt-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4acb151eab6dd7157b1f80b8ed4f123a2b44cfa26f451b66b1809a10e783817",
"md5": "cd8bb59cdcbab8c704d94fd73e11dad3",
"sha256": "33f889faba803da06a29875ae062edaea696a7bc4cbbaa024ad05b485a06e32d"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cd8bb59cdcbab8c704d94fd73e11dad3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 805525,
"upload_time": "2024-12-08T20:27:39",
"upload_time_iso_8601": "2024-12-08T20:27:39.648239Z",
"url": "https://files.pythonhosted.org/packages/c4/ac/b151eab6dd7157b1f80b8ed4f123a2b44cfa26f451b66b1809a10e783817/rsjwt-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7a321b9a5134bfbcc31c397c43867090665f4c93bb8f2fc73f54ca76b85f59b",
"md5": "369dce01cb1b75f5211ea95fb245f696",
"sha256": "64633e41f3d35cf6cecc8f4ad0a9ef309c16dd2830ce4973137ece70072b69f7"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "369dce01cb1b75f5211ea95fb245f696",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 740478,
"upload_time": "2024-12-08T20:27:54",
"upload_time_iso_8601": "2024-12-08T20:27:54.357693Z",
"url": "https://files.pythonhosted.org/packages/c7/a3/21b9a5134bfbcc31c397c43867090665f4c93bb8f2fc73f54ca76b85f59b/rsjwt-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7870ec2965754af892bd89364cf76176835533210ea3acc575481638acc720e",
"md5": "5332c01eecccbcbd34e8e9c4ff88e183",
"sha256": "abc911dfde9a9713866ebdaec8921ea771f3d3b5f433f7bd01e6182f153a555a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5332c01eecccbcbd34e8e9c4ff88e183",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 760941,
"upload_time": "2024-12-08T20:28:18",
"upload_time_iso_8601": "2024-12-08T20:28:18.044724Z",
"url": "https://files.pythonhosted.org/packages/b7/87/0ec2965754af892bd89364cf76176835533210ea3acc575481638acc720e/rsjwt-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2a166cb73796bcc4911b39beecca116cf8a49dfd5fda9b3d946dae61591c13b",
"md5": "32ac51b48d25ab153c1bd90b4ced32e2",
"sha256": "86f2f249f2e239f98248ba32a65ea9f1200502495c08af3b905346bbe69c022f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "32ac51b48d25ab153c1bd90b4ced32e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 619902,
"upload_time": "2024-12-08T20:28:07",
"upload_time_iso_8601": "2024-12-08T20:28:07.473784Z",
"url": "https://files.pythonhosted.org/packages/d2/a1/66cb73796bcc4911b39beecca116cf8a49dfd5fda9b3d946dae61591c13b/rsjwt-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "335b4c968c246eb0746a55aaffcb2830b656ff7115706b605868fc623bbe121b",
"md5": "936995e609e709130285a504efcb5c10",
"sha256": "a794ebf4aeda9f44185e96d81dcc727916d8ca24392de5a318b78aea223ab461"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "936995e609e709130285a504efcb5c10",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 937809,
"upload_time": "2024-12-08T20:28:38",
"upload_time_iso_8601": "2024-12-08T20:28:38.795057Z",
"url": "https://files.pythonhosted.org/packages/33/5b/4c968c246eb0746a55aaffcb2830b656ff7115706b605868fc623bbe121b/rsjwt-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a95f6f49f0d09bfa9980ea25f22416661b039c2abf4b91834a9bdf56a511e32",
"md5": "245daa2afa233e4c3f10a7c4aa9f087c",
"sha256": "2a5bd7d99b5d9c2f08333ee51eef603a7b00e2dbc30ff316256ce48de20f574a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "245daa2afa233e4c3f10a7c4aa9f087c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 854522,
"upload_time": "2024-12-08T20:28:54",
"upload_time_iso_8601": "2024-12-08T20:28:54.150450Z",
"url": "https://files.pythonhosted.org/packages/3a/95/f6f49f0d09bfa9980ea25f22416661b039c2abf4b91834a9bdf56a511e32/rsjwt-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fca5f4ce81a54b420fc0ea05346bdc043f9441dce69004644ac22b0a74166d19",
"md5": "e176cc6ee950a6d9304396325f70e682",
"sha256": "b570d79e2763b213d05301a71c14d875d2ed52343a281e1b1ef1eb4946dccf72"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e176cc6ee950a6d9304396325f70e682",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 784522,
"upload_time": "2024-12-08T20:29:08",
"upload_time_iso_8601": "2024-12-08T20:29:08.119927Z",
"url": "https://files.pythonhosted.org/packages/fc/a5/f4ce81a54b420fc0ea05346bdc043f9441dce69004644ac22b0a74166d19/rsjwt-0.0.4-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2223e6049037d0f39f1ba5e1b4873b78694f594e578d3c68fd8fa49de8e538be",
"md5": "0736fb9d3291ea9ad20dcf2047ed6fcb",
"sha256": "e33bb805251e4f27769c0029f583e96cccc26147642f773197cf28cb9c6ab59d"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0736fb9d3291ea9ad20dcf2047ed6fcb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 932809,
"upload_time": "2024-12-08T20:29:21",
"upload_time_iso_8601": "2024-12-08T20:29:21.465986Z",
"url": "https://files.pythonhosted.org/packages/22/23/e6049037d0f39f1ba5e1b4873b78694f594e578d3c68fd8fa49de8e538be/rsjwt-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fdd43bb5843c99eda8a72d52f1de279a801d239ee0c992253658f0e2074167ab",
"md5": "d823853aed14afd9e0cf8550ea0dde2a",
"sha256": "ddd606caf77d291213f3eddeb92933746609f582ecaeca8abf90a5d0947efad2"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d823853aed14afd9e0cf8550ea0dde2a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 356242,
"upload_time": "2024-12-08T20:29:47",
"upload_time_iso_8601": "2024-12-08T20:29:47.091340Z",
"url": "https://files.pythonhosted.org/packages/fd/d4/3bb5843c99eda8a72d52f1de279a801d239ee0c992253658f0e2074167ab/rsjwt-0.0.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa24b0015f3a1e263d0eb9eb631fbd6cfad8fee790156e1d9e79b73e63bf8981",
"md5": "2ab084b4f2ea34c02e9713f911c83e99",
"sha256": "49105e3de9a5764237fcfb67e4f1e842423da2784e78de83ab11aea1df0748ab"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "2ab084b4f2ea34c02e9713f911c83e99",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 568330,
"upload_time": "2024-12-08T20:29:39",
"upload_time_iso_8601": "2024-12-08T20:29:39.411295Z",
"url": "https://files.pythonhosted.org/packages/aa/24/b0015f3a1e263d0eb9eb631fbd6cfad8fee790156e1d9e79b73e63bf8981/rsjwt-0.0.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e67cc550e7a46af49227098cfab54747eea03e2d8e473db654927f676998025",
"md5": "ff721473e75ad5b19cabd649a290b667",
"sha256": "67d9c06987aa4056978e02df06932cb803b4f6a4cef032d69c90f58d055a1544"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ff721473e75ad5b19cabd649a290b667",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 714653,
"upload_time": "2024-12-08T20:28:33",
"upload_time_iso_8601": "2024-12-08T20:28:33.682058Z",
"url": "https://files.pythonhosted.org/packages/4e/67/cc550e7a46af49227098cfab54747eea03e2d8e473db654927f676998025/rsjwt-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fbe7a14d3fb9de29923eb69545db7a7f40e7c99bdd532ad9b32b1794729228e7",
"md5": "15f767af2145283848ef0abc360a9733",
"sha256": "5557e7f98a296dbe3ba33beb11cf725e55e294ac2c609c3381967e0790963816"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "15f767af2145283848ef0abc360a9733",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 677111,
"upload_time": "2024-12-08T20:28:29",
"upload_time_iso_8601": "2024-12-08T20:28:29.617878Z",
"url": "https://files.pythonhosted.org/packages/fb/e7/a14d3fb9de29923eb69545db7a7f40e7c99bdd532ad9b32b1794729228e7/rsjwt-0.0.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72bad103f856e627ec60d12876f38c40863c3cecf84f593e5812a44197dea682",
"md5": "8db8953134f0213b71905bb82dfb7f29",
"sha256": "fbd9b2f791182a2259b4c3ea9408e95dacf35b7fd34c11f92de20f31efb0dc2b"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8db8953134f0213b71905bb82dfb7f29",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 622483,
"upload_time": "2024-12-08T20:27:24",
"upload_time_iso_8601": "2024-12-08T20:27:24.767483Z",
"url": "https://files.pythonhosted.org/packages/72/ba/d103f856e627ec60d12876f38c40863c3cecf84f593e5812a44197dea682/rsjwt-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb49adeaca5a9ed19fec213237d7fcd54bbcd50d990ca5380a0f1486fff82ec2",
"md5": "89ca4e7443a98a4833883555ea8b67f5",
"sha256": "4b40de4260bd9ddf1079637482fcd4855536e6fe10254d84b3b97ca46f9a81ad"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "89ca4e7443a98a4833883555ea8b67f5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 806467,
"upload_time": "2024-12-08T20:27:41",
"upload_time_iso_8601": "2024-12-08T20:27:41.806310Z",
"url": "https://files.pythonhosted.org/packages/fb/49/adeaca5a9ed19fec213237d7fcd54bbcd50d990ca5380a0f1486fff82ec2/rsjwt-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b26c6452364d9b1cecc1a5f0eb8e20b449edbede8a2b0a79d3aab0247934355e",
"md5": "d73c624cfb2766fb0adc78d778d5903c",
"sha256": "e3a2370211d55a265a2f1ca9cc503f3fa180aff086224bf8042cfd68e23fc271"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d73c624cfb2766fb0adc78d778d5903c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 739736,
"upload_time": "2024-12-08T20:27:55",
"upload_time_iso_8601": "2024-12-08T20:27:55.598574Z",
"url": "https://files.pythonhosted.org/packages/b2/6c/6452364d9b1cecc1a5f0eb8e20b449edbede8a2b0a79d3aab0247934355e/rsjwt-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "868b8530fe9233520119a7e4b7552958bda839d2427b364ba65db3e60a63d0a9",
"md5": "997cf1aec9c36d3804cd8e7a24662437",
"sha256": "f0ebadd3b58b163ab0698e3d17b95d3d3d5a73f1de535be2e3d495b7671c07fa"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "997cf1aec9c36d3804cd8e7a24662437",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 760820,
"upload_time": "2024-12-08T20:28:19",
"upload_time_iso_8601": "2024-12-08T20:28:19.427192Z",
"url": "https://files.pythonhosted.org/packages/86/8b/8530fe9233520119a7e4b7552958bda839d2427b364ba65db3e60a63d0a9/rsjwt-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cffcd5e860945b430d94d0418933d676020012a57712b6a5f1cbd699b7641c1a",
"md5": "24a44a9c23268c5453d546842a1ff7fd",
"sha256": "8a17937a72aa10a249fff6778b5c3bae37eac350f666132c8c6e0c495e42335f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "24a44a9c23268c5453d546842a1ff7fd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 619934,
"upload_time": "2024-12-08T20:28:09",
"upload_time_iso_8601": "2024-12-08T20:28:09.414369Z",
"url": "https://files.pythonhosted.org/packages/cf/fc/d5e860945b430d94d0418933d676020012a57712b6a5f1cbd699b7641c1a/rsjwt-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f49203b0bcafebdda76af9e1005b11800c260af453f8598338a6f96f5442b34e",
"md5": "01b7529ffdf5aa9f1a8c6a9f8bb90a51",
"sha256": "d5cdad5b1db5faf79f57be463cbaf14ea2107c4ea5dddcbe8bd1ab607f02d978"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "01b7529ffdf5aa9f1a8c6a9f8bb90a51",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 938124,
"upload_time": "2024-12-08T20:28:40",
"upload_time_iso_8601": "2024-12-08T20:28:40.933110Z",
"url": "https://files.pythonhosted.org/packages/f4/92/03b0bcafebdda76af9e1005b11800c260af453f8598338a6f96f5442b34e/rsjwt-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9d460a921cd5615de65d80d1a26f14c925ea9548e42968b1be2b0cf5107af54",
"md5": "0e483f14c271f693a28ee6aeeafa2e3f",
"sha256": "49424311112bde9f6fd408e14136575714a96ba43bb00d410593377b549711f8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0e483f14c271f693a28ee6aeeafa2e3f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 855272,
"upload_time": "2024-12-08T20:28:55",
"upload_time_iso_8601": "2024-12-08T20:28:55.452644Z",
"url": "https://files.pythonhosted.org/packages/a9/d4/60a921cd5615de65d80d1a26f14c925ea9548e42968b1be2b0cf5107af54/rsjwt-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6929b39fba24e64dcc64347a2f8cdaa497ac69ff6495df635dc4a55b74940a34",
"md5": "515a636191656bf4789d63a1c3e034cc",
"sha256": "351f4683fbd64dd17199074bd21b5e3d3f633d14d8c911122b8d0e9e393fd60c"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "515a636191656bf4789d63a1c3e034cc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 784922,
"upload_time": "2024-12-08T20:29:09",
"upload_time_iso_8601": "2024-12-08T20:29:09.466903Z",
"url": "https://files.pythonhosted.org/packages/69/29/b39fba24e64dcc64347a2f8cdaa497ac69ff6495df635dc4a55b74940a34/rsjwt-0.0.4-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac7c557c441b13ce7b5ec0553850d89f336056181c6c4b8961e79f6876e0a8c9",
"md5": "2c02a2c31024fbd79c5f41b30c3f5e59",
"sha256": "c50eacb67b657ec088339ffbf5ef1ec2c2372672f6eb7e342cdd46a1805fbb92"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2c02a2c31024fbd79c5f41b30c3f5e59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 932641,
"upload_time": "2024-12-08T20:29:23",
"upload_time_iso_8601": "2024-12-08T20:29:23.457913Z",
"url": "https://files.pythonhosted.org/packages/ac/7c/557c441b13ce7b5ec0553850d89f336056181c6c4b8961e79f6876e0a8c9/rsjwt-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3aa74e6c1fc9ab92647115a5b395f5603b91de0b439faba7c5f08683d4eb6771",
"md5": "4e6799d64e5fa45193eec6ca60471e83",
"sha256": "797c9c3c87ebc46be91a8afa5c0c9a6b0140fbb8be54232096414dbe17b9caa8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "4e6799d64e5fa45193eec6ca60471e83",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 357002,
"upload_time": "2024-12-08T20:29:48",
"upload_time_iso_8601": "2024-12-08T20:29:48.753873Z",
"url": "https://files.pythonhosted.org/packages/3a/a7/4e6c1fc9ab92647115a5b395f5603b91de0b439faba7c5f08683d4eb6771/rsjwt-0.0.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4875b8aeaf0562c7b759f59aff3d677604c323fcb5f6747137f033e4ac9a272",
"md5": "7b9b1a88dd2adeb109c2b31433e5d762",
"sha256": "d9c8a875d473799f23ff6ab2515961af1aca98a7e1b77a7d5ed2bee934702059"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "7b9b1a88dd2adeb109c2b31433e5d762",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 568457,
"upload_time": "2024-12-08T20:29:40",
"upload_time_iso_8601": "2024-12-08T20:29:40.849171Z",
"url": "https://files.pythonhosted.org/packages/b4/87/5b8aeaf0562c7b759f59aff3d677604c323fcb5f6747137f033e4ac9a272/rsjwt-0.0.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecc9cf8f15f624ce22a417023d3f16fe1760cec00f7f526e26dd4dc2c29f4e28",
"md5": "8d33298193cd33928f4d689f367ad8c5",
"sha256": "3901924fcca26d5aa68c5004c5561979fc9937dd54a5449f9c8a00324bea22aa"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "8d33298193cd33928f4d689f367ad8c5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 712077,
"upload_time": "2024-12-08T20:28:35",
"upload_time_iso_8601": "2024-12-08T20:28:35.045459Z",
"url": "https://files.pythonhosted.org/packages/ec/c9/cf8f15f624ce22a417023d3f16fe1760cec00f7f526e26dd4dc2c29f4e28/rsjwt-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b721f486720d53577dd21bfaadc858fbc029e4ab7fe8ae2b5a227bc6584a2d91",
"md5": "61d97292d5ed14280e37329dd9197244",
"sha256": "aede8defb7ada982b26a14e56b6c40bea2088f37ab9119a5d8bdb494190cf266"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "61d97292d5ed14280e37329dd9197244",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 675181,
"upload_time": "2024-12-08T20:28:30",
"upload_time_iso_8601": "2024-12-08T20:28:30.908214Z",
"url": "https://files.pythonhosted.org/packages/b7/21/f486720d53577dd21bfaadc858fbc029e4ab7fe8ae2b5a227bc6584a2d91/rsjwt-0.0.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42715a5d17880672cfa4191c84a7c4ccd800958095254c207a873ddaf691ec81",
"md5": "f52213eb559250c3dd72a60fdc531ea0",
"sha256": "e697d524f4fba7fd056ab70094cf52fbbd6bd84306db7bbbbe8e8ea929aec96d"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f52213eb559250c3dd72a60fdc531ea0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 622473,
"upload_time": "2024-12-08T20:27:26",
"upload_time_iso_8601": "2024-12-08T20:27:26.810148Z",
"url": "https://files.pythonhosted.org/packages/42/71/5a5d17880672cfa4191c84a7c4ccd800958095254c207a873ddaf691ec81/rsjwt-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c79bdabf79b66ac0353b68fed535a316c957fd74bb92bb8328dc1b279a5d95",
"md5": "50ec594852f139bd430c4d2cbbf0481b",
"sha256": "648080d04df4524daaf80833eb01a7c49686aaa8a54f34fd9d10752fb61c08ef"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "50ec594852f139bd430c4d2cbbf0481b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 806813,
"upload_time": "2024-12-08T20:27:43",
"upload_time_iso_8601": "2024-12-08T20:27:43.153011Z",
"url": "https://files.pythonhosted.org/packages/e0/c7/9bdabf79b66ac0353b68fed535a316c957fd74bb92bb8328dc1b279a5d95/rsjwt-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1736faad5efc34d131c1a9b43d4febbd379664a35d408519587af0ef95dc954",
"md5": "529e3bbe40b60193f5b2612ac22a8b2c",
"sha256": "eda6c3520c00786943058f5e7e71aa37617b2ce866121123d572bff0e6f3f564"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "529e3bbe40b60193f5b2612ac22a8b2c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 739540,
"upload_time": "2024-12-08T20:27:57",
"upload_time_iso_8601": "2024-12-08T20:27:57.034981Z",
"url": "https://files.pythonhosted.org/packages/a1/73/6faad5efc34d131c1a9b43d4febbd379664a35d408519587af0ef95dc954/rsjwt-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "110edaadd2e05ede723ad92b9aecfa363185d85733af6d6fb2d127aab14628ff",
"md5": "b833429ac7a0fa359781f2e3f94524d7",
"sha256": "02d57b6df48eae8ddfa3aefe7ecb0e2438e22359bbe74874c0da55d289d9e28e"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b833429ac7a0fa359781f2e3f94524d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 760849,
"upload_time": "2024-12-08T20:28:21",
"upload_time_iso_8601": "2024-12-08T20:28:21.036002Z",
"url": "https://files.pythonhosted.org/packages/11/0e/daadd2e05ede723ad92b9aecfa363185d85733af6d6fb2d127aab14628ff/rsjwt-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b50b0724e27df5b083dfe09434cd78b3f7d4169101125f5aed45b6c843c24c4b",
"md5": "d19b51c628d711a41ad132918ae86642",
"sha256": "213320217f831ceada0c2a17213717028a3a5eba3ad4e182c8c4b2581f7bdad7"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d19b51c628d711a41ad132918ae86642",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 620225,
"upload_time": "2024-12-08T20:28:10",
"upload_time_iso_8601": "2024-12-08T20:28:10.697350Z",
"url": "https://files.pythonhosted.org/packages/b5/0b/0724e27df5b083dfe09434cd78b3f7d4169101125f5aed45b6c843c24c4b/rsjwt-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "415d5f3af5b9c24a5f80803ae2932408dc22e44d702787aa1a4992e279cc9495",
"md5": "ed998022a79ee521a363a9e749e0dfad",
"sha256": "d958163676722a3dc16974c25b036aa0f101c250fecf70db952f5f0a3f046d11"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ed998022a79ee521a363a9e749e0dfad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 938225,
"upload_time": "2024-12-08T20:28:43",
"upload_time_iso_8601": "2024-12-08T20:28:43.571176Z",
"url": "https://files.pythonhosted.org/packages/41/5d/5f3af5b9c24a5f80803ae2932408dc22e44d702787aa1a4992e279cc9495/rsjwt-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf994ea34feef511e47c9bb4ac40da63859854adf40a86daf1cd99e4048b38bf",
"md5": "5fc4ee3f1a1b0f3278b43ba13e557e33",
"sha256": "bb5feb606bcf9dec15aa99c6d2e012d36e8407e9e838b4a0004a70e41bee9302"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "5fc4ee3f1a1b0f3278b43ba13e557e33",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 855337,
"upload_time": "2024-12-08T20:28:56",
"upload_time_iso_8601": "2024-12-08T20:28:56.966417Z",
"url": "https://files.pythonhosted.org/packages/bf/99/4ea34feef511e47c9bb4ac40da63859854adf40a86daf1cd99e4048b38bf/rsjwt-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ea36b825b523c9f19a81406a40184abe25857046750eb88cc0dc10122c0b534",
"md5": "07ba9473f59295b7c5b89f7908763728",
"sha256": "de4c5e1202b9456959d93176737382416a64fde26e324acfd14173dcd570c2e8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "07ba9473f59295b7c5b89f7908763728",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 783104,
"upload_time": "2024-12-08T20:29:10",
"upload_time_iso_8601": "2024-12-08T20:29:10.881663Z",
"url": "https://files.pythonhosted.org/packages/6e/a3/6b825b523c9f19a81406a40184abe25857046750eb88cc0dc10122c0b534/rsjwt-0.0.4-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7639b66bce15e9dc4d49392f7f4ee981890d9b86c10057c8c56035cf7ec5d4ab",
"md5": "3295d777fd69ae732ff5f59d8d249da7",
"sha256": "08560b5d9f67c1fbfc95f73487a1d188f8753d1c60eb63e29127dd9336fc0702"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3295d777fd69ae732ff5f59d8d249da7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 932116,
"upload_time": "2024-12-08T20:29:25",
"upload_time_iso_8601": "2024-12-08T20:29:25.122466Z",
"url": "https://files.pythonhosted.org/packages/76/39/b66bce15e9dc4d49392f7f4ee981890d9b86c10057c8c56035cf7ec5d4ab/rsjwt-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee70ed597a4b6cffb8865ae41a9dbdf05027b921ea2856c0315f3479153076fc",
"md5": "a0d9d2ae72087b087de2dbe65ab2ff6b",
"sha256": "af1b3d326a0dc226e0da72e13545be16b2f100f4e236ff40b1439426e045a0a7"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "a0d9d2ae72087b087de2dbe65ab2ff6b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 357323,
"upload_time": "2024-12-08T20:29:50",
"upload_time_iso_8601": "2024-12-08T20:29:50.963245Z",
"url": "https://files.pythonhosted.org/packages/ee/70/ed597a4b6cffb8865ae41a9dbdf05027b921ea2856c0315f3479153076fc/rsjwt-0.0.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8c0712eaf8efe3eca96330debcf56d21fa8f4102d01349f9dcde5b0d64f9233",
"md5": "a8f16dc92c7f54710acbb0745f186823",
"sha256": "7e85fbe6d7252caa79012fb2e53ecc6d55001aeaf58ddb3791a56fc691a18ceb"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a8f16dc92c7f54710acbb0745f186823",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 569708,
"upload_time": "2024-12-08T20:29:42",
"upload_time_iso_8601": "2024-12-08T20:29:42.448664Z",
"url": "https://files.pythonhosted.org/packages/d8/c0/712eaf8efe3eca96330debcf56d21fa8f4102d01349f9dcde5b0d64f9233/rsjwt-0.0.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f5bad42a090f6a922d5b4a1c60a60011b0a3930482a00a0b0b54a9bf35c3504",
"md5": "1c2cbb0ef76a229f67ebb8919281f10a",
"sha256": "638d29219acac949c5f7e643c5ae7ea1dd5bfe74c24d7b54910f56fb7671340a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1c2cbb0ef76a229f67ebb8919281f10a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 711744,
"upload_time": "2024-12-08T20:28:36",
"upload_time_iso_8601": "2024-12-08T20:28:36.403447Z",
"url": "https://files.pythonhosted.org/packages/8f/5b/ad42a090f6a922d5b4a1c60a60011b0a3930482a00a0b0b54a9bf35c3504/rsjwt-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20d27844bf1fcf122fd97c47325540c57a5cbcda001269e5c68df2054b5b2d2a",
"md5": "70b0f7496a843d0a9a7d1d83d79726e1",
"sha256": "39032c2eecef9a3fca6e4476720a288304a21ebfd4e080867bc7589a268c4609"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "70b0f7496a843d0a9a7d1d83d79726e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 675115,
"upload_time": "2024-12-08T20:28:32",
"upload_time_iso_8601": "2024-12-08T20:28:32.241081Z",
"url": "https://files.pythonhosted.org/packages/20/d2/7844bf1fcf122fd97c47325540c57a5cbcda001269e5c68df2054b5b2d2a/rsjwt-0.0.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ff76f0a28a0015e951f62db4c2b118d09e0616d7646d2a67db0c4de5125dad3",
"md5": "2cfbae880b4b1f0e33a6ed653c886596",
"sha256": "e9bc018089d0148648f94d1884255cc9c34eca2f3833d3489bae6cf7c3937213"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2cfbae880b4b1f0e33a6ed653c886596",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 621688,
"upload_time": "2024-12-08T20:27:28",
"upload_time_iso_8601": "2024-12-08T20:27:28.770808Z",
"url": "https://files.pythonhosted.org/packages/9f/f7/6f0a28a0015e951f62db4c2b118d09e0616d7646d2a67db0c4de5125dad3/rsjwt-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2cfc1bc59a8e2a7ffc694e36e5da76e350509ecee6b8515e2a5d4967cc185a0",
"md5": "d4aa817927a11fceacff51b71d7d5517",
"sha256": "af55a6442cef142413b69aa249e69df175695600271742ec7c8956947a343ed1"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d4aa817927a11fceacff51b71d7d5517",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 806251,
"upload_time": "2024-12-08T20:27:44",
"upload_time_iso_8601": "2024-12-08T20:27:44.654259Z",
"url": "https://files.pythonhosted.org/packages/c2/cf/c1bc59a8e2a7ffc694e36e5da76e350509ecee6b8515e2a5d4967cc185a0/rsjwt-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da2ac152e67c3b9f0ed2e5432022ad46300c38dace507f2144c013a13abd1657",
"md5": "a480e9cefc49edff5da948e2eebba8c9",
"sha256": "7b0a5e6d71ce835e037b5718e3611e06bb971b4d5436908b671e1948da4eb547"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a480e9cefc49edff5da948e2eebba8c9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 738555,
"upload_time": "2024-12-08T20:27:58",
"upload_time_iso_8601": "2024-12-08T20:27:58.373458Z",
"url": "https://files.pythonhosted.org/packages/da/2a/c152e67c3b9f0ed2e5432022ad46300c38dace507f2144c013a13abd1657/rsjwt-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4a6a190b869d68640b0afe29f8e884ca948f9c110b618f740de91cc37a6a8f9",
"md5": "9e87be3c32766c5ded7b3c15e0e7f5f5",
"sha256": "8e92a09345cb575cdfa6a81f827def8319764af35ddb9d4f4126765f701ad3a2"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e87be3c32766c5ded7b3c15e0e7f5f5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 760887,
"upload_time": "2024-12-08T20:28:23",
"upload_time_iso_8601": "2024-12-08T20:28:23.087325Z",
"url": "https://files.pythonhosted.org/packages/f4/a6/a190b869d68640b0afe29f8e884ca948f9c110b618f740de91cc37a6a8f9/rsjwt-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "beab0592b2b69862e4f13eae508e68d263ca4c4479d49ccf8d8484f18ea3684e",
"md5": "18fd17035b5ae512f288926ffc314b18",
"sha256": "364c20293986e6c3d4dc5f8c97515f3706c7b272f1cf684d6c5d23566cc79c27"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "18fd17035b5ae512f288926ffc314b18",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 619452,
"upload_time": "2024-12-08T20:28:11",
"upload_time_iso_8601": "2024-12-08T20:28:11.955009Z",
"url": "https://files.pythonhosted.org/packages/be/ab/0592b2b69862e4f13eae508e68d263ca4c4479d49ccf8d8484f18ea3684e/rsjwt-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a3445de1227d1733ac6750cdda9374ae12a937ac9d6c7113ea4d887f4571e31",
"md5": "f1db7aaf02356523e03bc536d64f4f52",
"sha256": "7cba9c532a88bb836965b22433734907ce732f0768cffdf2b450bc4784ed85c3"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f1db7aaf02356523e03bc536d64f4f52",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 938091,
"upload_time": "2024-12-08T20:28:44",
"upload_time_iso_8601": "2024-12-08T20:28:44.995311Z",
"url": "https://files.pythonhosted.org/packages/0a/34/45de1227d1733ac6750cdda9374ae12a937ac9d6c7113ea4d887f4571e31/rsjwt-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0236549d41a3bd5ff31938344b334eb63fe07bba44dcb6f330e5c643274fcb69",
"md5": "4bed672b57c9ca26bfcb6b5cd5da0425",
"sha256": "6c407728ebc49e28d445d7585c8f4da1b944ef587ce232960b82504aefab178e"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4bed672b57c9ca26bfcb6b5cd5da0425",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 854544,
"upload_time": "2024-12-08T20:28:59",
"upload_time_iso_8601": "2024-12-08T20:28:59.248056Z",
"url": "https://files.pythonhosted.org/packages/02/36/549d41a3bd5ff31938344b334eb63fe07bba44dcb6f330e5c643274fcb69/rsjwt-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42476ecb124200f0f2f4cbc632d84f4bd1dc192d9df5a689548667adca18dd09",
"md5": "0cc8671fbed9eda09b2f9df8757d6f2c",
"sha256": "5fee0a09c8ece9458d68e797b65b354edcc82e513948ad29d977865500df505a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0cc8671fbed9eda09b2f9df8757d6f2c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 782575,
"upload_time": "2024-12-08T20:29:12",
"upload_time_iso_8601": "2024-12-08T20:29:12.283570Z",
"url": "https://files.pythonhosted.org/packages/42/47/6ecb124200f0f2f4cbc632d84f4bd1dc192d9df5a689548667adca18dd09/rsjwt-0.0.4-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "726713f2cc497cef92fb88b679c74e2fa5c47820667f0e3f4bb27a0fd1b7fcb7",
"md5": "3f31749fee363f78e860fba8c59f10b4",
"sha256": "17328cc08e57a8c2759c26a8eaa3f4fd27a7487177161a7290bd512bcffbe7c5"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3f31749fee363f78e860fba8c59f10b4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 932200,
"upload_time": "2024-12-08T20:29:26",
"upload_time_iso_8601": "2024-12-08T20:29:26.568405Z",
"url": "https://files.pythonhosted.org/packages/72/67/13f2cc497cef92fb88b679c74e2fa5c47820667f0e3f4bb27a0fd1b7fcb7/rsjwt-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0da4246e7de36bf4eb0f622816d8a618aa5991ca665e81a98421ee42b611092",
"md5": "37497599c1a3b5563285548c7bc2b2ef",
"sha256": "1edfaf6f6011f3fcb085fb2a020c0ff5df93f36b2866ee8bdf877e7a91a2743a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "37497599c1a3b5563285548c7bc2b2ef",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 620003,
"upload_time": "2024-12-08T20:27:30",
"upload_time_iso_8601": "2024-12-08T20:27:30.787996Z",
"url": "https://files.pythonhosted.org/packages/c0/da/4246e7de36bf4eb0f622816d8a618aa5991ca665e81a98421ee42b611092/rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddb92505f20f36468d874fc4325f16dde0f589b5a0901f3b4849dca056aa9f77",
"md5": "7fa9e7ff6097a3ab14ae14511e95e84f",
"sha256": "c5c62f01cffffb3614b32ffca5a128025a14a64e162d46a20810e827629b288f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7fa9e7ff6097a3ab14ae14511e95e84f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 805136,
"upload_time": "2024-12-08T20:27:46",
"upload_time_iso_8601": "2024-12-08T20:27:46.099769Z",
"url": "https://files.pythonhosted.org/packages/dd/b9/2505f20f36468d874fc4325f16dde0f589b5a0901f3b4849dca056aa9f77/rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7411959b62d99005b6b61c435f82000371f9b00677d1c08e4d54d3694667f676",
"md5": "02a78deef09f4546d72bc114beafd31d",
"sha256": "8e8a4e349b0d9661ae309fd486295749c6c03a650aba63ba2a83b1dd6b90ed54"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "02a78deef09f4546d72bc114beafd31d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 740030,
"upload_time": "2024-12-08T20:27:59",
"upload_time_iso_8601": "2024-12-08T20:27:59.661366Z",
"url": "https://files.pythonhosted.org/packages/74/11/959b62d99005b6b61c435f82000371f9b00677d1c08e4d54d3694667f676/rsjwt-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f7eed12028657c9ca02466e00120f4cad9e87e51f6e76de352c094ba66f82ff1",
"md5": "8a96369f0d87f717b252bbd640401547",
"sha256": "d717bd975ac6d87f2af78ad8140d08e7d4ed2251e682ab6eb356a2e409e3e776"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8a96369f0d87f717b252bbd640401547",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 936917,
"upload_time": "2024-12-08T20:28:46",
"upload_time_iso_8601": "2024-12-08T20:28:46.414237Z",
"url": "https://files.pythonhosted.org/packages/f7/ee/d12028657c9ca02466e00120f4cad9e87e51f6e76de352c094ba66f82ff1/rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "746c2b4804066348cfc67fced8f8ac111a0ee95a836926bea0d6055c3894da99",
"md5": "f20aa97957cf4c521fc7195fda7bf7a8",
"sha256": "b43c02b64b9aaa538b4126cf17b2bece04402179f573fc73f9df7b027919faac"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f20aa97957cf4c521fc7195fda7bf7a8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 853303,
"upload_time": "2024-12-08T20:29:00",
"upload_time_iso_8601": "2024-12-08T20:29:00.643497Z",
"url": "https://files.pythonhosted.org/packages/74/6c/2b4804066348cfc67fced8f8ac111a0ee95a836926bea0d6055c3894da99/rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "772c0ea7fdb997e0512686c4ef5308dd7b35c966b93f43d2bca0c9eea7c3ea82",
"md5": "da9b9c7693798e1b9858938b1f89866b",
"sha256": "f34e48c22c7d9589fa5a02177e326ea3ef28c91d689225049bd5f3addbce3b90"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "da9b9c7693798e1b9858938b1f89866b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 782597,
"upload_time": "2024-12-08T20:29:13",
"upload_time_iso_8601": "2024-12-08T20:29:13.725407Z",
"url": "https://files.pythonhosted.org/packages/77/2c/0ea7fdb997e0512686c4ef5308dd7b35c966b93f43d2bca0c9eea7c3ea82/rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bb95aaecfda15ec7252fd46d347b1d80cabdbc2ce9c7a10ae7c9dc1665436eb",
"md5": "3a0a73dc20649dc1f5386b437360d99c",
"sha256": "2743529497bfa0fc3dee2c65bc9f298d9927f71edaa4568f383fe8b115332bd5"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3a0a73dc20649dc1f5386b437360d99c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 931860,
"upload_time": "2024-12-08T20:29:28",
"upload_time_iso_8601": "2024-12-08T20:29:28.963607Z",
"url": "https://files.pythonhosted.org/packages/2b/b9/5aaecfda15ec7252fd46d347b1d80cabdbc2ce9c7a10ae7c9dc1665436eb/rsjwt-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "493b17b3106ae3b95646425f5e70871288d512ff83390bb86a1fe2ae8dccb9f2",
"md5": "e5cd17980092cf813e8633baec65df52",
"sha256": "f1edf5c1d6520dc77abed5dce2aa77a7b76883399adb86e6740afc7ea499c82b"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e5cd17980092cf813e8633baec65df52",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 622087,
"upload_time": "2024-12-08T20:27:32",
"upload_time_iso_8601": "2024-12-08T20:27:32.007592Z",
"url": "https://files.pythonhosted.org/packages/49/3b/17b3106ae3b95646425f5e70871288d512ff83390bb86a1fe2ae8dccb9f2/rsjwt-0.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60f50f6ab1f53d8e2a6d4fa0687b544d90d578740c5e46d37b37272f46e77f23",
"md5": "beb58c5a36803e00b299a860fe5eebf8",
"sha256": "7a26f98723c2720b083c4467e864cb6329a80abd1db62bb4922a9f755cf9a80f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "beb58c5a36803e00b299a860fe5eebf8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 806317,
"upload_time": "2024-12-08T20:27:48",
"upload_time_iso_8601": "2024-12-08T20:27:48.045383Z",
"url": "https://files.pythonhosted.org/packages/60/f5/0f6ab1f53d8e2a6d4fa0687b544d90d578740c5e46d37b37272f46e77f23/rsjwt-0.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c65cbb127a78ea34d7c06f6fcabe2fd54b9c49f5bb20897f696c028ac2a38fa6",
"md5": "3bd0bb1f70a41bb61ca52d86e98958ba",
"sha256": "04e5fa00f1c6708db32e0cbeb7617d594de51229016400eef7e11986afcee7af"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3bd0bb1f70a41bb61ca52d86e98958ba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 740799,
"upload_time": "2024-12-08T20:28:00",
"upload_time_iso_8601": "2024-12-08T20:28:00.903536Z",
"url": "https://files.pythonhosted.org/packages/c6/5c/bb127a78ea34d7c06f6fcabe2fd54b9c49f5bb20897f696c028ac2a38fa6/rsjwt-0.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "815c54507dcab496deb2d26d48e3bf708ccc6488b4e400c61d5be2d87dbf96d1",
"md5": "dc40d133dbeef4912151f86043d7dc1e",
"sha256": "3fc810fa3aabdfec803468034e99e200a85a847649e9c580289ccbe7971a48b6"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dc40d133dbeef4912151f86043d7dc1e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 762389,
"upload_time": "2024-12-08T20:28:24",
"upload_time_iso_8601": "2024-12-08T20:28:24.803260Z",
"url": "https://files.pythonhosted.org/packages/81/5c/54507dcab496deb2d26d48e3bf708ccc6488b4e400c61d5be2d87dbf96d1/rsjwt-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11c95f76376f186c5f94b34f36cbb5efb988f4200e909325f8ce75a271669539",
"md5": "ede42cf68c958b0f4bd1800d94769958",
"sha256": "1e06ecc9ce36830cba13fed267eec00c951dba8186354aa3e7d6a67096f20416"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ede42cf68c958b0f4bd1800d94769958",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 621176,
"upload_time": "2024-12-08T20:28:13",
"upload_time_iso_8601": "2024-12-08T20:28:13.366574Z",
"url": "https://files.pythonhosted.org/packages/11/c9/5f76376f186c5f94b34f36cbb5efb988f4200e909325f8ce75a271669539/rsjwt-0.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d728fc9daac814d2148aa9b79718ba1aa9827dd1ce3a3e028b0ccda730be646",
"md5": "b2981f7d065032e80175713b9fc86921",
"sha256": "89738644cb44cf6ccd8ab36e6a195e5f6a453ed74b47db2555d856e92e54ae3e"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b2981f7d065032e80175713b9fc86921",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 939038,
"upload_time": "2024-12-08T20:28:48",
"upload_time_iso_8601": "2024-12-08T20:28:48.079792Z",
"url": "https://files.pythonhosted.org/packages/3d/72/8fc9daac814d2148aa9b79718ba1aa9827dd1ce3a3e028b0ccda730be646/rsjwt-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "101eed8c05e5c4492041116523e0e6cc3a4ee565da743b11b06efd1cb4290763",
"md5": "d8f9df245f71da3a51a435cccf0434ef",
"sha256": "ff941ca5b5fd01ecc2b4e9ddf930322f00b51a4e51510438b280a480e52f070c"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d8f9df245f71da3a51a435cccf0434ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 855461,
"upload_time": "2024-12-08T20:29:02",
"upload_time_iso_8601": "2024-12-08T20:29:02.045876Z",
"url": "https://files.pythonhosted.org/packages/10/1e/ed8c05e5c4492041116523e0e6cc3a4ee565da743b11b06efd1cb4290763/rsjwt-0.0.4-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "572e2af35f5b84c4ac3156bad8ea51619062c51535211050bd4d8b435e6e2b0b",
"md5": "610857a92a9ddfe7fef23b3d51daf9b1",
"sha256": "90f1131c475252a94dbe72bf45355384113e2bbaebe98c4d16ef7cec7b6048f8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "610857a92a9ddfe7fef23b3d51daf9b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 785194,
"upload_time": "2024-12-08T20:29:15",
"upload_time_iso_8601": "2024-12-08T20:29:15.515271Z",
"url": "https://files.pythonhosted.org/packages/57/2e/2af35f5b84c4ac3156bad8ea51619062c51535211050bd4d8b435e6e2b0b/rsjwt-0.0.4-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3a5974b137f2f098d5db853e5ef36841e5473069fdb7edb012f1f1f8f30cc43",
"md5": "13d142d67808db6e3fff96b7d4a16076",
"sha256": "7125ec1efcee6e210c32435135636760f57c8046bdf0fde358bfe81a7bfa266f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "13d142d67808db6e3fff96b7d4a16076",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 933816,
"upload_time": "2024-12-08T20:29:30",
"upload_time_iso_8601": "2024-12-08T20:29:30.577642Z",
"url": "https://files.pythonhosted.org/packages/d3/a5/974b137f2f098d5db853e5ef36841e5473069fdb7edb012f1f1f8f30cc43/rsjwt-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94fa2f60c437e06a88194d862fd846b86863edb9782fae0b8ce9fed870c4ea85",
"md5": "978199f7347b6ab69fa5e7fcc922c37a",
"sha256": "ae5f11ce23517a1e7414b19b50208317f4117d6f434cb67a60b2a0bb3bc441c5"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "978199f7347b6ab69fa5e7fcc922c37a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 357327,
"upload_time": "2024-12-08T20:29:52",
"upload_time_iso_8601": "2024-12-08T20:29:52.326103Z",
"url": "https://files.pythonhosted.org/packages/94/fa/2f60c437e06a88194d862fd846b86863edb9782fae0b8ce9fed870c4ea85/rsjwt-0.0.4-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "424a2afd776a76e533cf5425d50ef6115a0f79954678a2a2d7f97d6f20a1264b",
"md5": "5d84102c417ef26f3eeab4563df2f563",
"sha256": "ada99dcbbab11b752bc6af6a7eac509564c8665c601079036c2467cb98d6bd23"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d84102c417ef26f3eeab4563df2f563",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 568975,
"upload_time": "2024-12-08T20:29:43",
"upload_time_iso_8601": "2024-12-08T20:29:43.860855Z",
"url": "https://files.pythonhosted.org/packages/42/4a/2afd776a76e533cf5425d50ef6115a0f79954678a2a2d7f97d6f20a1264b/rsjwt-0.0.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3c0bef1b5712fac3db7789640905b4bcc4a937cc258b8ef83e620a3e9348c5e",
"md5": "4e5e3ae8b69d88969b510092a3ae5e06",
"sha256": "6073e020a626d55e18b3ca920cb33831bceef7c201da8232dae72853d2310b0e"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4e5e3ae8b69d88969b510092a3ae5e06",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 622901,
"upload_time": "2024-12-08T20:27:34",
"upload_time_iso_8601": "2024-12-08T20:27:34.066799Z",
"url": "https://files.pythonhosted.org/packages/a3/c0/bef1b5712fac3db7789640905b4bcc4a937cc258b8ef83e620a3e9348c5e/rsjwt-0.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3018de25e56b62f11477e3a9d5b869eb7a08c4e71ec0fc88fb347f1f8aba9b55",
"md5": "f46cb0e96acf5a85c0e25d4a9041176f",
"sha256": "babf4aed64cd15e7b4840a124d92cc37c3bf735a86ec7a2273ca08246c0356cd"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f46cb0e96acf5a85c0e25d4a9041176f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 806193,
"upload_time": "2024-12-08T20:27:49",
"upload_time_iso_8601": "2024-12-08T20:27:49.366376Z",
"url": "https://files.pythonhosted.org/packages/30/18/de25e56b62f11477e3a9d5b869eb7a08c4e71ec0fc88fb347f1f8aba9b55/rsjwt-0.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d22c175a6e8cc0602d94e6d9a5f612533f138f4d98b45a13a70d520300dee4a",
"md5": "bdad1afdded5421689de86fd0b039e56",
"sha256": "499a3a23bf8335935abb9439f64b1d9afae475321d32cdb4639de28cc481206f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bdad1afdded5421689de86fd0b039e56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 741962,
"upload_time": "2024-12-08T20:28:02",
"upload_time_iso_8601": "2024-12-08T20:28:02.588795Z",
"url": "https://files.pythonhosted.org/packages/4d/22/c175a6e8cc0602d94e6d9a5f612533f138f4d98b45a13a70d520300dee4a/rsjwt-0.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1615c4fa396ef52165333dd38006373b990b9c191113c34f7e720e5fd3344a1d",
"md5": "2f4364ecf3ba955adfb5a17ddb9fa0c4",
"sha256": "9cffbc2cc4309a0427100e70258601132233e1f868e15e7c87468d43b5937a2f"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2f4364ecf3ba955adfb5a17ddb9fa0c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 762546,
"upload_time": "2024-12-08T20:28:26",
"upload_time_iso_8601": "2024-12-08T20:28:26.843354Z",
"url": "https://files.pythonhosted.org/packages/16/15/c4fa396ef52165333dd38006373b990b9c191113c34f7e720e5fd3344a1d/rsjwt-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d68ca5375cf607e17ed77de6d76d79f7cf4819577d99b3a49e52a048911788b",
"md5": "b0d7d67e2dce0731a3a64c9d52312755",
"sha256": "95bd2388419401c805699ab5a52f94983526498f6be56c0321c237e25bf2c924"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b0d7d67e2dce0731a3a64c9d52312755",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 621772,
"upload_time": "2024-12-08T20:28:14",
"upload_time_iso_8601": "2024-12-08T20:28:14.651157Z",
"url": "https://files.pythonhosted.org/packages/3d/68/ca5375cf607e17ed77de6d76d79f7cf4819577d99b3a49e52a048911788b/rsjwt-0.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "152f583f727b92bb10e998a67f670e61cd0a557dfb962bde3a6cc9791b54e184",
"md5": "b750cc49b568d0fed108e87cd5d3b9cf",
"sha256": "480edb050f9ac9a9ba56d76103018b0107511c2c2e72f2eda5d9bc103c15c442"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b750cc49b568d0fed108e87cd5d3b9cf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 939290,
"upload_time": "2024-12-08T20:28:49",
"upload_time_iso_8601": "2024-12-08T20:28:49.517886Z",
"url": "https://files.pythonhosted.org/packages/15/2f/583f727b92bb10e998a67f670e61cd0a557dfb962bde3a6cc9791b54e184/rsjwt-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "123df260ea65cb801b6742f2c66092df8f743c57b14b603f45a4457f273ca810",
"md5": "40f78c8e35c8cabe54848706d6923e63",
"sha256": "229d5334a7caee20f8b7def7e381cadef959492db8ad88de79e6e84d77090cf2"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "40f78c8e35c8cabe54848706d6923e63",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 855332,
"upload_time": "2024-12-08T20:29:03",
"upload_time_iso_8601": "2024-12-08T20:29:03.528177Z",
"url": "https://files.pythonhosted.org/packages/12/3d/f260ea65cb801b6742f2c66092df8f743c57b14b603f45a4457f273ca810/rsjwt-0.0.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "687f3a65b2dc5510c09c93251816a3b217e084e3c1dba6387b214243a54a2dfd",
"md5": "27bfb153f14d93d73d8d5526583f0d94",
"sha256": "3d1ebfd0c93622289d081440c6d348f129e205e0429e9ea22e74d521fa662020"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "27bfb153f14d93d73d8d5526583f0d94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 785601,
"upload_time": "2024-12-08T20:29:17",
"upload_time_iso_8601": "2024-12-08T20:29:17.210525Z",
"url": "https://files.pythonhosted.org/packages/68/7f/3a65b2dc5510c09c93251816a3b217e084e3c1dba6387b214243a54a2dfd/rsjwt-0.0.4-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f1de88cfcf93177c381eb03f3f7a6265392bcbfd16507aa1b52611cb39c8fe3",
"md5": "c84b8ecc9d39496bab75620195b3efd4",
"sha256": "9e2bc1cc2a50dd0e50c10f78bdcd54e627ca55cc7449ca62172ec61028ade7e1"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c84b8ecc9d39496bab75620195b3efd4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 934162,
"upload_time": "2024-12-08T20:29:32",
"upload_time_iso_8601": "2024-12-08T20:29:32.397421Z",
"url": "https://files.pythonhosted.org/packages/1f/1d/e88cfcf93177c381eb03f3f7a6265392bcbfd16507aa1b52611cb39c8fe3/rsjwt-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4236665251f250d5864e2aa5a1822ae3fc5acd81c8fddd069be187d62bf8214d",
"md5": "95d28f6cdc0ed13087b01b2712768868",
"sha256": "31f5b2ed911dc07fe4eef824c6a0bd8127593c6e4224f60e8527ee343793161d"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "95d28f6cdc0ed13087b01b2712768868",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 357487,
"upload_time": "2024-12-08T20:29:53",
"upload_time_iso_8601": "2024-12-08T20:29:53.863276Z",
"url": "https://files.pythonhosted.org/packages/42/36/665251f250d5864e2aa5a1822ae3fc5acd81c8fddd069be187d62bf8214d/rsjwt-0.0.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e048045753a5ad39b81a24f2b7f69c20aa6f2ba2e68bf01a10ce147de4c6c4f",
"md5": "c24cf55a97fc311333efbdee6df03e6a",
"sha256": "f5d0e3434174efdbd24eab9821674515c8d1dfb835f2d7c16c3e5885f4a8a7ed"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "c24cf55a97fc311333efbdee6df03e6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 569057,
"upload_time": "2024-12-08T20:29:45",
"upload_time_iso_8601": "2024-12-08T20:29:45.237002Z",
"url": "https://files.pythonhosted.org/packages/3e/04/8045753a5ad39b81a24f2b7f69c20aa6f2ba2e68bf01a10ce147de4c6c4f/rsjwt-0.0.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d32b773101208eb3223ddd10ee80fd918998bafae267477f091b989ea51e51fe",
"md5": "4cdc628f50d5738987e4f3c44d806d15",
"sha256": "5441b45179df84a720d4e5df9a7330eb12fbd78c08a5b4f33a474797fe0db3d1"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4cdc628f50d5738987e4f3c44d806d15",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 624143,
"upload_time": "2024-12-08T20:27:36",
"upload_time_iso_8601": "2024-12-08T20:27:36.108578Z",
"url": "https://files.pythonhosted.org/packages/d3/2b/773101208eb3223ddd10ee80fd918998bafae267477f091b989ea51e51fe/rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbf0382a3f6e724528df5cbc9e6094bd111c185a53def56d7f8822f388d13c79",
"md5": "8dba5105549a51c8aa1807870fba20ab",
"sha256": "6c6e41eef1c26ccfa50dc44ac129ea9264154c20e816b194b6a6ea94336e75fc"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8dba5105549a51c8aa1807870fba20ab",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 807951,
"upload_time": "2024-12-08T20:27:50",
"upload_time_iso_8601": "2024-12-08T20:27:50.753224Z",
"url": "https://files.pythonhosted.org/packages/bb/f0/382a3f6e724528df5cbc9e6094bd111c185a53def56d7f8822f388d13c79/rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aad7bcff8773df60f62a0063565dae145519e1f1f44801171e0cfa24b408e379",
"md5": "9e5a377814467552d8490508149b90cd",
"sha256": "65d42f2701dbb0824dd30e67f18c70a286d065c03ff9396845cf61b7a7db4e24"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9e5a377814467552d8490508149b90cd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 742159,
"upload_time": "2024-12-08T20:28:03",
"upload_time_iso_8601": "2024-12-08T20:28:03.964752Z",
"url": "https://files.pythonhosted.org/packages/aa/d7/bcff8773df60f62a0063565dae145519e1f1f44801171e0cfa24b408e379/rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c7e1641acd67dfdbde63b458efd98aa9eb9b613489b7acc768fbd2cf5a6741e",
"md5": "55f42f2405e18dd66f00937d37648aef",
"sha256": "32a34546a0178c21a6e026e4d47a2e1cb88b857d5d131b2f9855f6da7dea45aa"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "55f42f2405e18dd66f00937d37648aef",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 762179,
"upload_time": "2024-12-08T20:28:28",
"upload_time_iso_8601": "2024-12-08T20:28:28.321060Z",
"url": "https://files.pythonhosted.org/packages/1c/7e/1641acd67dfdbde63b458efd98aa9eb9b613489b7acc768fbd2cf5a6741e/rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb9411f7142cef5d09e7a1b04115c936899780eea004373149a81c78ba82d50",
"md5": "bac6ea7e4dcc41a263a8aeae41b775f4",
"sha256": "116ac7036a363f4e31d762b465e9ae09b32bb9c769158adc4ae41a6decfcde86"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "bac6ea7e4dcc41a263a8aeae41b775f4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 621205,
"upload_time": "2024-12-08T20:28:16",
"upload_time_iso_8601": "2024-12-08T20:28:16.779450Z",
"url": "https://files.pythonhosted.org/packages/2c/b9/411f7142cef5d09e7a1b04115c936899780eea004373149a81c78ba82d50/rsjwt-0.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50fbc3211be43a145ab8657d80970ced80a2840601a11f5eec9563ae71e3a88a",
"md5": "118585e1b361cdc244274a1e46fcbb28",
"sha256": "cffca65f208c3ad48b88aac0dd454db4d5a476c7355c2b6c5484cecdf7a5c118"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "118585e1b361cdc244274a1e46fcbb28",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 939978,
"upload_time": "2024-12-08T20:28:51",
"upload_time_iso_8601": "2024-12-08T20:28:51.259644Z",
"url": "https://files.pythonhosted.org/packages/50/fb/c3211be43a145ab8657d80970ced80a2840601a11f5eec9563ae71e3a88a/rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d668f102fb56dcbacfffb73bab1ddf091bde62138d93d376ccb806d75f0796f9",
"md5": "e9416f54a79440ff9a96323c9a79da9e",
"sha256": "e66e08843df3263b958faa9558886bd6dc545beaf5c558fc0a55cde0c8110b0a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e9416f54a79440ff9a96323c9a79da9e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 857092,
"upload_time": "2024-12-08T20:29:05",
"upload_time_iso_8601": "2024-12-08T20:29:05.426120Z",
"url": "https://files.pythonhosted.org/packages/d6/68/f102fb56dcbacfffb73bab1ddf091bde62138d93d376ccb806d75f0796f9/rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41ddbff74678da0630a0190b2424fe0593376d41bd522935ee152ad65452d13a",
"md5": "2e7bae30ff1c30d8cbc89655e9b4995a",
"sha256": "1f7c1e755e23c3163a3b55c361675a903a7763fab82331f650514877637b4dce"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2e7bae30ff1c30d8cbc89655e9b4995a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 784738,
"upload_time": "2024-12-08T20:29:18",
"upload_time_iso_8601": "2024-12-08T20:29:18.677504Z",
"url": "https://files.pythonhosted.org/packages/41/dd/bff74678da0630a0190b2424fe0593376d41bd522935ee152ad65452d13a/rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be1c915f989fd3090d466ffbfcb6cbd91ad42c7a297de33248169cddf8a10750",
"md5": "a88daa957ccb98fe1dbea3f58120ac55",
"sha256": "d094973557cbf30acd16e51998fc391519111b54ef2f5aeb54112245bb2c9ad8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a88daa957ccb98fe1dbea3f58120ac55",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 933724,
"upload_time": "2024-12-08T20:29:34",
"upload_time_iso_8601": "2024-12-08T20:29:34.688449Z",
"url": "https://files.pythonhosted.org/packages/be/1c/915f989fd3090d466ffbfcb6cbd91ad42c7a297de33248169cddf8a10750/rsjwt-0.0.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81ee85574628402dbb6521eafccc7d4d1d683a6b62a3a050c1e7ca55035d7a96",
"md5": "345bb2f21aba87b15d6203e7a19f7f74",
"sha256": "3ad4e18bf02090c2d092cac2bb27397d99cdb17d8c9b8569c7c5515df7d0cad0"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "345bb2f21aba87b15d6203e7a19f7f74",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 624670,
"upload_time": "2024-12-08T20:27:38",
"upload_time_iso_8601": "2024-12-08T20:27:38.065702Z",
"url": "https://files.pythonhosted.org/packages/81/ee/85574628402dbb6521eafccc7d4d1d683a6b62a3a050c1e7ca55035d7a96/rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aaebabd1cc7469668a73a356c38ad61bb012e5361e5d827f4c04da830dcd340e",
"md5": "c1910530a1bc02563e7166e014cc549b",
"sha256": "c4dd179f57ce8b4284df87d2c78767528c503af0ec682927211169d51f8de17a"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c1910530a1bc02563e7166e014cc549b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 808148,
"upload_time": "2024-12-08T20:27:52",
"upload_time_iso_8601": "2024-12-08T20:27:52.379056Z",
"url": "https://files.pythonhosted.org/packages/aa/eb/abd1cc7469668a73a356c38ad61bb012e5361e5d827f4c04da830dcd340e/rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a35edd69c86cb1679f948f85f2133bef7ade5249e0546337af44bb9469b9a8a4",
"md5": "0184a9c14fdedb7074a4ae197f827e6b",
"sha256": "b36491c4d60610dd4465798e1e4ed2fd0ca19cf7c3358fce878b26a335c877ef"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0184a9c14fdedb7074a4ae197f827e6b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 742645,
"upload_time": "2024-12-08T20:28:05",
"upload_time_iso_8601": "2024-12-08T20:28:05.387455Z",
"url": "https://files.pythonhosted.org/packages/a3/5e/dd69c86cb1679f948f85f2133bef7ade5249e0546337af44bb9469b9a8a4/rsjwt-0.0.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35c1f7e0634f308f25193c03c6a4361a1971aa284fbe895c5a2fd8e6d43c6517",
"md5": "47a1fc251f88efa481bdae7cebd6e9c4",
"sha256": "b007b74b754656eef72991830f373b3515c632127074febc34d5d89993a25ff8"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "47a1fc251f88efa481bdae7cebd6e9c4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 940472,
"upload_time": "2024-12-08T20:28:52",
"upload_time_iso_8601": "2024-12-08T20:28:52.676025Z",
"url": "https://files.pythonhosted.org/packages/35/c1/f7e0634f308f25193c03c6a4361a1971aa284fbe895c5a2fd8e6d43c6517/rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10b2c2d6b03be0fa784168bc9dc09d5990c2c2fc2c875b9269ce67b42a43f41d",
"md5": "3eefc03d79f7c5d32ba30da2b268a3f6",
"sha256": "ffe4cc763a36130939301d806453f6592d2d74c9075b689dab77c107266e55be"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3eefc03d79f7c5d32ba30da2b268a3f6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 857182,
"upload_time": "2024-12-08T20:29:06",
"upload_time_iso_8601": "2024-12-08T20:29:06.756421Z",
"url": "https://files.pythonhosted.org/packages/10/b2/c2d6b03be0fa784168bc9dc09d5990c2c2fc2c875b9269ce67b42a43f41d/rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60d88062aae4b95ffda5477faa4d74bc09e500a3425b492a5509eb72b191e066",
"md5": "31d30460c01e46ec54080053e0d81f7d",
"sha256": "72658294e6b0f7793a790d24b3b13fadc83f41f3be9c231d0f064b4c3c61cea7"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "31d30460c01e46ec54080053e0d81f7d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 785552,
"upload_time": "2024-12-08T20:29:20",
"upload_time_iso_8601": "2024-12-08T20:29:20.014100Z",
"url": "https://files.pythonhosted.org/packages/60/d8/8062aae4b95ffda5477faa4d74bc09e500a3425b492a5509eb72b191e066/rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57ae38f194ce77c2921c96bfaed1c2ec4efb7566e4175196d5b786edcfc9b222",
"md5": "c43d607e3ef9ced0e2e3d565a75ba74a",
"sha256": "9956d4b403d4e6a68019caa08b3467b8e4fe9fc4889f1ab36dd7b9f10b503642"
},
"downloads": -1,
"filename": "rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c43d607e3ef9ced0e2e3d565a75ba74a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 934189,
"upload_time": "2024-12-08T20:29:36",
"upload_time_iso_8601": "2024-12-08T20:29:36.435360Z",
"url": "https://files.pythonhosted.org/packages/57/ae/38f194ce77c2921c96bfaed1c2ec4efb7566e4175196d5b786edcfc9b222/rsjwt-0.0.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30fac1e23c8a87cae4126c52d09d736ef874905f53c174db847098b202eba611",
"md5": "c99a7ffd396e5f3e762ea8d68bc63210",
"sha256": "d4d54cc97486c20b800d27870944f6ca8284afb634c96ff994b9f8a7909a9b97"
},
"downloads": -1,
"filename": "rsjwt-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "c99a7ffd396e5f3e762ea8d68bc63210",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 14753,
"upload_time": "2024-12-08T20:29:38",
"upload_time_iso_8601": "2024-12-08T20:29:38.440480Z",
"url": "https://files.pythonhosted.org/packages/30/fa/c1e23c8a87cae4126c52d09d736ef874905f53c174db847098b202eba611/rsjwt-0.0.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-08 20:29:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "aamalev",
"github_project": "rsjwt",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "rsjwt"
}