pygo-jwt


Namepygo-jwt JSON
Version 0.0.9 PyPI version JSON
download
home_pageNone
SummaryEncode and Decode RS256 JSON Web Tokens with Python and Go
upload_time2024-04-09 22:09:51
maintainerNone
docs_urlNone
authorNone
requires_python<4.0,>=3.10
licenseMIT NON-AI License
keywords python golang jwt rsa
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## pygo-jwt

This project focuses on managing JSON Web Tokens signed with RS256. Inspired by [pyjwt](https://pypi.org/project/PyJWT),
this library provides core encode and decode functionality, utilizing the standard `crypto` package within Go instead of
[cryptography](https://pypi.org/project/cryptography).

### Example Usage for Python

```shell
pip install pygo-jwt
```

```python
import pygo_jwt

private_jwk = pygo_jwt.new_jwk(size=2048)
private_pem = pygo_jwt.jwk_to_pem(private_jwk)

public_jwk = pygo_jwt.extract_public_jwk(private_jwk)
public_pem = pygo_jwt.extract_public_pem(private_pem)

payload = {'message': 'hello world', 'count': 4}
token = pygo_jwt.encode(payload=payload, key=private_pem, mode='pem')
token_data = pygo_jwt.decode(token=token, key=public_jwk, mode='jwk')
```

### Example Usage for Go

```shell
go mod init main
go get github.com/rkhullar/python-libraries/pygo-jwt/pygo_jwt/go
```

```go
package main

import (
	"fmt"
	lib "github.com/rkhullar/python-libraries/pygo-jwt/pygo_jwt/go/core"
)

func main() {
	private_jwk, _ := lib.NewJWK(2048, nil)
	private_pem, _ := lib.JWKToPEM(private_jwk)
	fmt.Println(private_jwk)
	fmt.Println(private_pem)
}
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pygo-jwt",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": "python, golang, jwt, rsa",
    "author": null,
    "author_email": "Rajan Khullar <rkhullar03@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b9/0c/9eaab5282fe5eb4d50768cadc8a463884581ace1e65e45fa077fed88b0c7/pygo-jwt-0.0.9.tar.gz",
    "platform": null,
    "description": "## pygo-jwt\n\nThis project focuses on managing JSON Web Tokens signed with RS256. Inspired by [pyjwt](https://pypi.org/project/PyJWT),\nthis library provides core encode and decode functionality, utilizing the standard `crypto` package within Go instead of\n[cryptography](https://pypi.org/project/cryptography).\n\n### Example Usage for Python\n\n```shell\npip install pygo-jwt\n```\n\n```python\nimport pygo_jwt\n\nprivate_jwk = pygo_jwt.new_jwk(size=2048)\nprivate_pem = pygo_jwt.jwk_to_pem(private_jwk)\n\npublic_jwk = pygo_jwt.extract_public_jwk(private_jwk)\npublic_pem = pygo_jwt.extract_public_pem(private_pem)\n\npayload = {'message': 'hello world', 'count': 4}\ntoken = pygo_jwt.encode(payload=payload, key=private_pem, mode='pem')\ntoken_data = pygo_jwt.decode(token=token, key=public_jwk, mode='jwk')\n```\n\n### Example Usage for Go\n\n```shell\ngo mod init main\ngo get github.com/rkhullar/python-libraries/pygo-jwt/pygo_jwt/go\n```\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\tlib \"github.com/rkhullar/python-libraries/pygo-jwt/pygo_jwt/go/core\"\n)\n\nfunc main() {\n\tprivate_jwk, _ := lib.NewJWK(2048, nil)\n\tprivate_pem, _ := lib.JWKToPEM(private_jwk)\n\tfmt.Println(private_jwk)\n\tfmt.Println(private_pem)\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT NON-AI License",
    "summary": "Encode and Decode RS256 JSON Web Tokens with Python and Go",
    "version": "0.0.9",
    "project_urls": {
        "Repository": "https://github.com/rkhullar/python-libraries/tree/main/pygo-jwt"
    },
    "split_keywords": [
        "python",
        " golang",
        " jwt",
        " rsa"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fd9bd5468680d68d40f8c46931711f1b77f24d94e833263f023f3e8a834228e",
                "md5": "469c207d2ae589cd4b717e1e257716a8",
                "sha256": "41f80f89739b3ea4bdba349f4396a332303d9771a879ff64cf69b26868797cda"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "469c207d2ae589cd4b717e1e257716a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.10",
            "size": 1279056,
            "upload_time": "2024-04-09T22:09:16",
            "upload_time_iso_8601": "2024-04-09T22:09:16.899101Z",
            "url": "https://files.pythonhosted.org/packages/5f/d9/bd5468680d68d40f8c46931711f1b77f24d94e833263f023f3e8a834228e/pygo_jwt-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2429e4f5e7e8b1e1454ccf165c3053fcede41389de4f76e5557970ebd6c6991c",
                "md5": "a55f96519d710cdb3ea3b28a61f85038",
                "sha256": "cd25de23c1cee7e609c299bf3941ce0360f5e519a3ccfbf60cd5aeff430221cb"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a55f96519d710cdb3ea3b28a61f85038",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.10",
            "size": 1205029,
            "upload_time": "2024-04-09T22:09:18",
            "upload_time_iso_8601": "2024-04-09T22:09:18.412990Z",
            "url": "https://files.pythonhosted.org/packages/24/29/e4f5e7e8b1e1454ccf165c3053fcede41389de4f76e5557970ebd6c6991c/pygo_jwt-0.0.9-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "551accc38380807486f7a3342f3251505050070a3d5f0698e24d1ec6744e47f8",
                "md5": "7f5b70d6b75b89cb1ed43f17e39c9234",
                "sha256": "9c4a85bd8ed21b99e230333f689058dee0f4ba62a51383f41fabab60f5770525"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f5b70d6b75b89cb1ed43f17e39c9234",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2210419,
            "upload_time": "2024-04-09T22:09:20",
            "upload_time_iso_8601": "2024-04-09T22:09:20.429304Z",
            "url": "https://files.pythonhosted.org/packages/55/1a/ccc38380807486f7a3342f3251505050070a3d5f0698e24d1ec6744e47f8/pygo_jwt-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5555be2dec76df37331c5432e56570227a7b8a1cd9bc81bd8b66f73006fd48d0",
                "md5": "545ff2991fd68eced488f405cd45fb77",
                "sha256": "e0f8aa917e1be4814e0a3e5ae113ab74101532f931f755f9a154ccc95e7a252f"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "545ff2991fd68eced488f405cd45fb77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2498109,
            "upload_time": "2024-04-09T22:09:22",
            "upload_time_iso_8601": "2024-04-09T22:09:22.388911Z",
            "url": "https://files.pythonhosted.org/packages/55/55/be2dec76df37331c5432e56570227a7b8a1cd9bc81bd8b66f73006fd48d0/pygo_jwt-0.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6cbc46fe56749bb78edea8273ca003be15f429cab27e7acce9d8967a486a491",
                "md5": "d37171110ac8a15c20ca2211e7ed339a",
                "sha256": "86cd7f4cc62ed8653b10df858c09e095326af65d4fa18bc76bd96b334b2e2406"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d37171110ac8a15c20ca2211e7ed339a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2367311,
            "upload_time": "2024-04-09T22:09:23",
            "upload_time_iso_8601": "2024-04-09T22:09:23.761590Z",
            "url": "https://files.pythonhosted.org/packages/b6/cb/c46fe56749bb78edea8273ca003be15f429cab27e7acce9d8967a486a491/pygo_jwt-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "913525fd8df835c16c255f71c78acd58e4f69850e471babffa2c4159225dee02",
                "md5": "4e6d59879ededa8a12d97e56714b3078",
                "sha256": "a9ab50ea8248b72f9a4bca3b081736f27ef6e3de03705d3d0b321120459cea2e"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e6d59879ededa8a12d97e56714b3078",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.10",
            "size": 1279055,
            "upload_time": "2024-04-09T22:09:25",
            "upload_time_iso_8601": "2024-04-09T22:09:25.779464Z",
            "url": "https://files.pythonhosted.org/packages/91/35/25fd8df835c16c255f71c78acd58e4f69850e471babffa2c4159225dee02/pygo_jwt-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11ace35f17ef01949fe438740d9fb5a2959c929c09d946a7ccc5c8faa20b0d52",
                "md5": "ee006dccaa53c299173a14945c7b7202",
                "sha256": "c0f666004de52911398ca3b5393f38c6bffbe5b4e06075d6d9ebb53634d0d866"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee006dccaa53c299173a14945c7b7202",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.10",
            "size": 1205034,
            "upload_time": "2024-04-09T22:09:28",
            "upload_time_iso_8601": "2024-04-09T22:09:28.161655Z",
            "url": "https://files.pythonhosted.org/packages/11/ac/e35f17ef01949fe438740d9fb5a2959c929c09d946a7ccc5c8faa20b0d52/pygo_jwt-0.0.9-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbc647aec514ac25ced38af05f806f943c3e796290be6dfe10a999c3578ff4e0",
                "md5": "029c014558a4a8280356011fd9e987c2",
                "sha256": "fc70c947d9a611343b7b5390adc64bcc1eb95f228910b37802fdd8e85af7e476"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "029c014558a4a8280356011fd9e987c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.10",
            "size": 2210418,
            "upload_time": "2024-04-09T22:09:29",
            "upload_time_iso_8601": "2024-04-09T22:09:29.940624Z",
            "url": "https://files.pythonhosted.org/packages/fb/c6/47aec514ac25ced38af05f806f943c3e796290be6dfe10a999c3578ff4e0/pygo_jwt-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "456e03755d4a64b1df2e1ad5901a9399b5500c5a66c5dca392af36065213a547",
                "md5": "1eae436fd650c956eebc2eff9be62956",
                "sha256": "4450a2bd29238357a27365274a468a7c52d02ac2784e8bded8ad966c04e502c2"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1eae436fd650c956eebc2eff9be62956",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.10",
            "size": 2498123,
            "upload_time": "2024-04-09T22:09:31",
            "upload_time_iso_8601": "2024-04-09T22:09:31.314921Z",
            "url": "https://files.pythonhosted.org/packages/45/6e/03755d4a64b1df2e1ad5901a9399b5500c5a66c5dca392af36065213a547/pygo_jwt-0.0.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66bf1d7643487ddba741b78ae1eb4d15fb7523724992dfe943815dc25f94d991",
                "md5": "37086569c6618110dc066de5097e7906",
                "sha256": "776e2578bb0af98d27f743e9e9b2865652c6b84149966b8faae497f19dbf43c9"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37086569c6618110dc066de5097e7906",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.10",
            "size": 2367313,
            "upload_time": "2024-04-09T22:09:33",
            "upload_time_iso_8601": "2024-04-09T22:09:33.008062Z",
            "url": "https://files.pythonhosted.org/packages/66/bf/1d7643487ddba741b78ae1eb4d15fb7523724992dfe943815dc25f94d991/pygo_jwt-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89c7d4eac385805d3159025ad5d4fcbf51ac255c52bd1937f74f0f6379dfbe5b",
                "md5": "feedbb115bf7fea22e625ac39d9b22e4",
                "sha256": "0ebf30880218c6f29ae9c90ca9fc293903ab1c385f130a2faa40c740baf74549"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "feedbb115bf7fea22e625ac39d9b22e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.10",
            "size": 1279074,
            "upload_time": "2024-04-09T22:09:34",
            "upload_time_iso_8601": "2024-04-09T22:09:34.622011Z",
            "url": "https://files.pythonhosted.org/packages/89/c7/d4eac385805d3159025ad5d4fcbf51ac255c52bd1937f74f0f6379dfbe5b/pygo_jwt-0.0.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cd2408b1b89eddfef7c329ee75b21da8400f60d939bd0d3da05dbde445a4468",
                "md5": "dba3aeb4dc78a5b376b9698c221e0545",
                "sha256": "0979655ec6528912f5bd9962401dcf59eaee6186cc2c6b20f0b1033c15be029e"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dba3aeb4dc78a5b376b9698c221e0545",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.10",
            "size": 1205030,
            "upload_time": "2024-04-09T22:09:36",
            "upload_time_iso_8601": "2024-04-09T22:09:36.551899Z",
            "url": "https://files.pythonhosted.org/packages/1c/d2/408b1b89eddfef7c329ee75b21da8400f60d939bd0d3da05dbde445a4468/pygo_jwt-0.0.9-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0e6ab328a51ef58c01d60f3da3c24188d07587ea3a228ad721fb658bb36e0ca",
                "md5": "e0e4012a95f78534f93fe8958a2cd272",
                "sha256": "34762e8494969509894bf6336dfa82cc570cfa2e5f3bf64614be1bb2fa7f0e7a"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0e4012a95f78534f93fe8958a2cd272",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.10",
            "size": 2210743,
            "upload_time": "2024-04-09T22:09:38",
            "upload_time_iso_8601": "2024-04-09T22:09:38.649685Z",
            "url": "https://files.pythonhosted.org/packages/d0/e6/ab328a51ef58c01d60f3da3c24188d07587ea3a228ad721fb658bb36e0ca/pygo_jwt-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75cd49ab0137d83057455cf61e8faaa70179a11f0fb6303f562e91d631c7a057",
                "md5": "3117f239bd97798865643e2acf0a9ef8",
                "sha256": "f7f48b7213d4e915ab1d75e8c60408d03aff8b99474c62b911f9a11b2dd0e2cd"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3117f239bd97798865643e2acf0a9ef8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.10",
            "size": 2498392,
            "upload_time": "2024-04-09T22:09:40",
            "upload_time_iso_8601": "2024-04-09T22:09:40.523102Z",
            "url": "https://files.pythonhosted.org/packages/75/cd/49ab0137d83057455cf61e8faaa70179a11f0fb6303f562e91d631c7a057/pygo_jwt-0.0.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2726e7ea2b89b9007427ee42e23c6811ace34871f76814103b0b2b78c352d3fb",
                "md5": "927efc59e39309ecc9198aab6341fac4",
                "sha256": "c6719e3dc80bb78e50565aa83f3ea4b87001f870b4b75d896fbfdf32257b0380"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "927efc59e39309ecc9198aab6341fac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.10",
            "size": 2367772,
            "upload_time": "2024-04-09T22:09:41",
            "upload_time_iso_8601": "2024-04-09T22:09:41.956303Z",
            "url": "https://files.pythonhosted.org/packages/27/26/e7ea2b89b9007427ee42e23c6811ace34871f76814103b0b2b78c352d3fb/pygo_jwt-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a07c8ad46ddf3c5ed77b24aa6598ae23dd9d72df8006372d540446a4954d0875",
                "md5": "ebcfa06fb6431fa91f6446b186dcab63",
                "sha256": "b9cd07a9fec1a31ec4d980f31b8946afef53c85dd26be01f6abe5decc2d4e2c2"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebcfa06fb6431fa91f6446b186dcab63",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.10",
            "size": 1275649,
            "upload_time": "2024-04-09T22:09:43",
            "upload_time_iso_8601": "2024-04-09T22:09:43.271506Z",
            "url": "https://files.pythonhosted.org/packages/a0/7c/8ad46ddf3c5ed77b24aa6598ae23dd9d72df8006372d540446a4954d0875/pygo_jwt-0.0.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0661c19bdb5bfe0cf95078259e97f6ce7faf706ebfab1f5912f057488307bb55",
                "md5": "dce21491c0395f43afc77b1d6f79b8ac",
                "sha256": "b839ad892c9ac4e331a46dd6da72289c2ec9c1103579e43522b6540fe7874b21"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dce21491c0395f43afc77b1d6f79b8ac",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.10",
            "size": 1201925,
            "upload_time": "2024-04-09T22:09:44",
            "upload_time_iso_8601": "2024-04-09T22:09:44.604492Z",
            "url": "https://files.pythonhosted.org/packages/06/61/c19bdb5bfe0cf95078259e97f6ce7faf706ebfab1f5912f057488307bb55/pygo_jwt-0.0.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5875f2550c073fa8ebe196ba659b9a857117b9717280edaf05d482ba7201f79a",
                "md5": "2babd2e67974a90ef1c01afc2d595328",
                "sha256": "07867d153a55062c67264aba233cefb9cd848111308732e495f35d1c1aa759f0"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2babd2e67974a90ef1c01afc2d595328",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2192760,
            "upload_time": "2024-04-09T22:09:46",
            "upload_time_iso_8601": "2024-04-09T22:09:46.536221Z",
            "url": "https://files.pythonhosted.org/packages/58/75/f2550c073fa8ebe196ba659b9a857117b9717280edaf05d482ba7201f79a/pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eafe0a1e8c31e493d5ed296725a417a9d315ad3853b8e85bee9c2fcac24dd251",
                "md5": "37c3e22b6ad2fac61f3f2f095fd2ce84",
                "sha256": "338a225438ed0c47f7a6bde9d05686b6e1c97d271a08505e6503d114806cc77a"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37c3e22b6ad2fac61f3f2f095fd2ce84",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2482310,
            "upload_time": "2024-04-09T22:09:47",
            "upload_time_iso_8601": "2024-04-09T22:09:47.942487Z",
            "url": "https://files.pythonhosted.org/packages/ea/fe/0a1e8c31e493d5ed296725a417a9d315ad3853b8e85bee9c2fcac24dd251/pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21cc87a0e16a294998ec20dfe3840b0edc0898376ec9b3fa1fea39b404989b2f",
                "md5": "3ee69ae83105c8af28fd99e76a12c7f1",
                "sha256": "feae78e1e7ba767a25d7cfa91c20c5e0134dd74cda3fa77173de9f690f650aaf"
            },
            "downloads": -1,
            "filename": "pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ee69ae83105c8af28fd99e76a12c7f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.10",
            "size": 2349455,
            "upload_time": "2024-04-09T22:09:49",
            "upload_time_iso_8601": "2024-04-09T22:09:49.353538Z",
            "url": "https://files.pythonhosted.org/packages/21/cc/87a0e16a294998ec20dfe3840b0edc0898376ec9b3fa1fea39b404989b2f/pygo_jwt-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b90c9eaab5282fe5eb4d50768cadc8a463884581ace1e65e45fa077fed88b0c7",
                "md5": "d17671b076844e012189df5facfde15e",
                "sha256": "7bfb397b59b8e5f1ac37dbc81d51928f92fa74000b15365c4fd8ca93b73772dc"
            },
            "downloads": -1,
            "filename": "pygo-jwt-0.0.9.tar.gz",
            "has_sig": false,
            "md5_digest": "d17671b076844e012189df5facfde15e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 10453,
            "upload_time": "2024-04-09T22:09:51",
            "upload_time_iso_8601": "2024-04-09T22:09:51.185824Z",
            "url": "https://files.pythonhosted.org/packages/b9/0c/9eaab5282fe5eb4d50768cadc8a463884581ace1e65e45fa077fed88b0c7/pygo-jwt-0.0.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-09 22:09:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rkhullar",
    "github_project": "python-libraries",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pygo-jwt"
}
        
Elapsed time: 0.31222s