Skip to content

Commit 2184c39

Browse files
committed
doordash mcp in misc/
1 parent b36e2cc commit 2184c39

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+6558
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Authors
2+
=======
3+
4+
``pyjwt`` is currently written and maintained by `Jose Padilla <https://github.com/jpadilla>`_.
5+
Originally written and maintained by `Jeff Lindsay <https://github.com/progrium>`_.
6+
7+
A full list of contributors can be found on GitHub’s `overview <https://github.com/jpadilla/pyjwt/graphs/contributors>`_.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015-2022 José Padilla
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
Metadata-Version: 2.1
2+
Name: PyJWT
3+
Version: 2.10.1
4+
Summary: JSON Web Token implementation in Python
5+
Author-email: Jose Padilla <hello@jpadilla.com>
6+
License: MIT
7+
Project-URL: Homepage, https://github.com/jpadilla/pyjwt
8+
Keywords: json,jwt,security,signing,token,web
9+
Classifier: Development Status :: 5 - Production/Stable
10+
Classifier: Intended Audience :: Developers
11+
Classifier: License :: OSI Approved :: MIT License
12+
Classifier: Natural Language :: English
13+
Classifier: Programming Language :: Python
14+
Classifier: Programming Language :: Python :: 3
15+
Classifier: Programming Language :: Python :: 3 :: Only
16+
Classifier: Programming Language :: Python :: 3.9
17+
Classifier: Programming Language :: Python :: 3.10
18+
Classifier: Programming Language :: Python :: 3.11
19+
Classifier: Programming Language :: Python :: 3.12
20+
Classifier: Programming Language :: Python :: 3.13
21+
Classifier: Topic :: Utilities
22+
Requires-Python: >=3.9
23+
Description-Content-Type: text/x-rst
24+
License-File: LICENSE
25+
License-File: AUTHORS.rst
26+
Provides-Extra: crypto
27+
Requires-Dist: cryptography>=3.4.0; extra == "crypto"
28+
Provides-Extra: dev
29+
Requires-Dist: coverage[toml]==5.0.4; extra == "dev"
30+
Requires-Dist: cryptography>=3.4.0; extra == "dev"
31+
Requires-Dist: pre-commit; extra == "dev"
32+
Requires-Dist: pytest<7.0.0,>=6.0.0; extra == "dev"
33+
Requires-Dist: sphinx; extra == "dev"
34+
Requires-Dist: sphinx-rtd-theme; extra == "dev"
35+
Requires-Dist: zope.interface; extra == "dev"
36+
Provides-Extra: docs
37+
Requires-Dist: sphinx; extra == "docs"
38+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
39+
Requires-Dist: zope.interface; extra == "docs"
40+
Provides-Extra: tests
41+
Requires-Dist: coverage[toml]==5.0.4; extra == "tests"
42+
Requires-Dist: pytest<7.0.0,>=6.0.0; extra == "tests"
43+
44+
PyJWT
45+
=====
46+
47+
.. image:: https://github.com/jpadilla/pyjwt/workflows/CI/badge.svg
48+
:target: https://github.com/jpadilla/pyjwt/actions?query=workflow%3ACI
49+
50+
.. image:: https://img.shields.io/pypi/v/pyjwt.svg
51+
:target: https://pypi.python.org/pypi/pyjwt
52+
53+
.. image:: https://codecov.io/gh/jpadilla/pyjwt/branch/master/graph/badge.svg
54+
:target: https://codecov.io/gh/jpadilla/pyjwt
55+
56+
.. image:: https://readthedocs.org/projects/pyjwt/badge/?version=stable
57+
:target: https://pyjwt.readthedocs.io/en/stable/
58+
59+
A Python implementation of `RFC 7519 <https://tools.ietf.org/html/rfc7519>`_. Original implementation was written by `@progrium <https://github.com/progrium>`_.
60+
61+
Sponsor
62+
-------
63+
64+
.. |auth0-logo| image:: https://github.com/user-attachments/assets/ee98379e-ee76-4bcb-943a-e25c4ea6d174
65+
:width: 160px
66+
67+
+--------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
68+
| |auth0-logo| | If you want to quickly add secure token-based authentication to Python projects, feel free to check Auth0's Python SDK and free plan at `auth0.com/signup <https://auth0.com/signup?utm_source=external_sites&utm_medium=pyjwt&utm_campaign=devn_signup>`_. |
69+
+--------------+-----------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
70+
71+
Installing
72+
----------
73+
74+
Install with **pip**:
75+
76+
.. code-block:: console
77+
78+
$ pip install PyJWT
79+
80+
81+
Usage
82+
-----
83+
84+
.. code-block:: pycon
85+
86+
>>> import jwt
87+
>>> encoded = jwt.encode({"some": "payload"}, "secret", algorithm="HS256")
88+
>>> print(encoded)
89+
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg
90+
>>> jwt.decode(encoded, "secret", algorithms=["HS256"])
91+
{'some': 'payload'}
92+
93+
Documentation
94+
-------------
95+
96+
View the full docs online at https://pyjwt.readthedocs.io/en/stable/
97+
98+
99+
Tests
100+
-----
101+
102+
You can run tests from the project root after cloning with:
103+
104+
.. code-block:: console
105+
106+
$ tox
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
PyJWT-2.10.1.dist-info/AUTHORS.rst,sha256=klzkNGECnu2_VY7At89_xLBF3vUSDruXk3xwgUBxzwc,322
2+
PyJWT-2.10.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
3+
PyJWT-2.10.1.dist-info/LICENSE,sha256=eXp6ICMdTEM-nxkR2xcx0GtYKLmPSZgZoDT3wPVvXOU,1085
4+
PyJWT-2.10.1.dist-info/METADATA,sha256=EkewF6D6KU8SGaaQzVYfxUUU1P_gs_dp1pYTkoYvAx8,3990
5+
PyJWT-2.10.1.dist-info/RECORD,,
6+
PyJWT-2.10.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7+
PyJWT-2.10.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
8+
PyJWT-2.10.1.dist-info/top_level.txt,sha256=RP5DHNyJbMq2ka0FmfTgoSaQzh7e3r5XuCWCO8a00k8,4
9+
jwt/__init__.py,sha256=VB2vFKuboTjcDGeZ8r-UqK_dz3NsQSQEqySSICby8Xg,1711
10+
jwt/__pycache__/__init__.cpython-311.pyc,,
11+
jwt/__pycache__/algorithms.cpython-311.pyc,,
12+
jwt/__pycache__/api_jwk.cpython-311.pyc,,
13+
jwt/__pycache__/api_jws.cpython-311.pyc,,
14+
jwt/__pycache__/api_jwt.cpython-311.pyc,,
15+
jwt/__pycache__/exceptions.cpython-311.pyc,,
16+
jwt/__pycache__/help.cpython-311.pyc,,
17+
jwt/__pycache__/jwk_set_cache.cpython-311.pyc,,
18+
jwt/__pycache__/jwks_client.cpython-311.pyc,,
19+
jwt/__pycache__/types.cpython-311.pyc,,
20+
jwt/__pycache__/utils.cpython-311.pyc,,
21+
jwt/__pycache__/warnings.cpython-311.pyc,,
22+
jwt/algorithms.py,sha256=cKr-XEioe0mBtqJMCaHEswqVOA1Z8Purt5Sb3Bi-5BE,30409
23+
jwt/api_jwk.py,sha256=6F1r7rmm8V5qEnBKA_xMjS9R7VoANe1_BL1oD2FrAjE,4451
24+
jwt/api_jws.py,sha256=aM8vzqQf6mRrAw7bRy-Moj_pjWsKSVQyYK896AfMjJU,11762
25+
jwt/api_jwt.py,sha256=OGT4hok1l5A6FH_KdcrU5g6u6EQ8B7em0r9kGM9SYgA,14512
26+
jwt/exceptions.py,sha256=bUIOJ-v9tjopTLS-FYOTc3kFx5WP5IZt7ksN_HE1G9Q,1211
27+
jwt/help.py,sha256=vFdNzjQoAch04XCMYpCkyB2blaqHAGAqQrtf9nSPkdk,1808
28+
jwt/jwk_set_cache.py,sha256=hBKmN-giU7-G37L_XKgc_OZu2ah4wdbj1ZNG_GkoSE8,959
29+
jwt/jwks_client.py,sha256=p9b-IbQqo2tEge9Zit3oSPBFNePqwho96VLbnUrHUWs,4259
30+
jwt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31+
jwt/types.py,sha256=VnhGv_VFu5a7_mrPoSCB7HaNLrJdhM8Sq1sSfEg0gLU,99
32+
jwt/utils.py,sha256=hxOjvDBheBYhz-RIPiEz7Q88dSUSTMzEdKE_Ww2VdJw,3640
33+
jwt/warnings.py,sha256=50XWOnyNsIaqzUJTk6XHNiIDykiL763GYA92MjTKmok,59

misc/doordash-mcp/PyJWT-2.10.1.dist-info/REQUESTED

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Wheel-Version: 1.0
2+
Generator: setuptools (75.6.0)
3+
Root-Is-Purelib: true
4+
Tag: py3-none-any
5+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jwt

0 commit comments

Comments
 (0)