auth0-server-python 1.0.0b3__tar.gz → 1.0.0b5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/PKG-INFO +7 -5
  2. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/README.md +3 -3
  3. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/pyproject.toml +3 -2
  4. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/auth_server/__init__.py +0 -1
  5. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/auth_server/server_client.py +475 -336
  6. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/auth_types/__init__.py +21 -31
  7. auth0_server_python-1.0.0b5/src/auth0_server_python/encryption/__init__.py +3 -0
  8. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/encryption/encrypt.py +10 -11
  9. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/error/__init__.py +27 -12
  10. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/store/__init__.py +3 -3
  11. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/store/abstract.py +29 -29
  12. auth0_server_python-1.0.0b5/src/auth0_server_python/tests/test_server_client.py +1254 -0
  13. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/utils/__init__.py +3 -2
  14. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/src/auth0_server_python/utils/helpers.py +39 -38
  15. auth0_server_python-1.0.0b3/src/auth0_server_python/encryption/__init__.py +0 -4
  16. {auth0_server_python-1.0.0b3 → auth0_server_python-1.0.0b5}/LICENSE +0 -0
@@ -1,8 +1,9 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: auth0-server-python
3
- Version: 1.0.0b3
3
+ Version: 1.0.0b5
4
4
  Summary: Auth0 server-side Python SDK
5
5
  License: MIT
6
+ License-File: LICENSE
6
7
  Author: Auth0
7
8
  Author-email: support@okta.com
8
9
  Requires-Python: >=3.9
@@ -13,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.10
13
14
  Classifier: Programming Language :: Python :: 3.11
14
15
  Classifier: Programming Language :: Python :: 3.12
15
16
  Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
16
18
  Requires-Dist: authlib (>=1.2,<2.0)
17
19
  Requires-Dist: cryptography (>=43.0.1)
18
20
  Requires-Dist: httpx (>=0.28.1,<0.29.0)
@@ -29,7 +31,7 @@ The Auth0 Server Python SDK is a library for implementing user authentication in
29
31
 
30
32
  ## Documentation
31
33
 
32
- - [Examples](https://github.com/auth0/auth0-server-python/blob/main/packages/auth0_server_python/EXAMPLES.md) - examples for your different use cases.
34
+ - [Examples](https://github.com/auth0/auth0-server-python/blob/main/examples) - examples for your different use cases.
33
35
  - [Docs Site](https://auth0.com/docs) - explore our docs site and learn more about Auth0.
34
36
 
35
37
  ## Getting Started
@@ -132,7 +134,7 @@ We appreciate feedback and contribution to this repo! Before you get started, pl
132
134
 
133
135
  - [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
134
136
  - [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
135
- - [This repo's contribution guide](./../../CONTRIBUTING.md)
137
+ - [This repo's contribution guide](./CONTRIBUTING.md)
136
138
 
137
139
  ### Raise an issue
138
140
 
@@ -155,5 +157,5 @@ Please do not report security vulnerabilities on the public GitHub issue tracker
155
157
  Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0?</a>
156
158
  </p>
157
159
  <p align="center">
158
- This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-server-python/blob/main/packages/auth0_server_python/LICENSE"> LICENSE</a> file for more info.
160
+ This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-server-python/blob/main/LICENSE"> LICENSE</a> file for more info.
159
161
  </p>
@@ -6,7 +6,7 @@ The Auth0 Server Python SDK is a library for implementing user authentication in
6
6
 
7
7
  ## Documentation
8
8
 
9
- - [Examples](https://github.com/auth0/auth0-server-python/blob/main/packages/auth0_server_python/EXAMPLES.md) - examples for your different use cases.
9
+ - [Examples](https://github.com/auth0/auth0-server-python/blob/main/examples) - examples for your different use cases.
10
10
  - [Docs Site](https://auth0.com/docs) - explore our docs site and learn more about Auth0.
11
11
 
12
12
  ## Getting Started
@@ -109,7 +109,7 @@ We appreciate feedback and contribution to this repo! Before you get started, pl
109
109
 
110
110
  - [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
111
111
  - [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
112
- - [This repo's contribution guide](./../../CONTRIBUTING.md)
112
+ - [This repo's contribution guide](./CONTRIBUTING.md)
113
113
 
114
114
  ### Raise an issue
115
115
 
@@ -132,5 +132,5 @@ Please do not report security vulnerabilities on the public GitHub issue tracker
132
132
  Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <a href="https://auth0.com/why-auth0">Why Auth0?</a>
133
133
  </p>
134
134
  <p align="center">
135
- This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-server-python/blob/main/packages/auth0_server_python/LICENSE"> LICENSE</a> file for more info.
135
+ This project is licensed under the MIT license. See the <a href="https://github.com/auth0/auth0-server-python/blob/main/LICENSE"> LICENSE</a> file for more info.
136
136
  </p>
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "auth0-server-python"
3
- version = "1.0.0.b3"
3
+ version = "1.0.0.b5"
4
4
  description = "Auth0 server-side Python SDK"
5
5
  readme = "README.md"
6
6
  authors = ["Auth0 <support@okta.com>"]
@@ -25,9 +25,10 @@ pytest-cov = "^4.0"
25
25
  pytest-asyncio = "^0.20.3"
26
26
  pytest-mock = "^3.14.0"
27
27
  twine = "^6.1.0"
28
+ ruff = "^0.1.0"
28
29
 
29
30
  [tool.pytest.ini_options]
30
- addopts = "--cov=auth_server --cov-report=term-missing:skip-covered --cov-report=xml"
31
+ addopts = "--cov=auth0_server_python --cov-report=term-missing:skip-covered --cov-report=xml"
31
32
 
32
33
  [build-system]
33
34
  requires = ["poetry-core>=1.4.0"]
@@ -1,4 +1,3 @@
1
1
  from .server_client import ServerClient
2
2
 
3
-
4
3
  __all__ = ["ServerClient"]