auth0-server-python 1.0.0b2__tar.gz → 1.0.0b4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: auth0-server-python
3
- Version: 1.0.0b2
3
+ Version: 1.0.0b4
4
4
  Summary: Auth0 server-side Python SDK
5
5
  License: MIT
6
6
  Author: Auth0
@@ -15,7 +15,6 @@ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Requires-Dist: authlib (>=1.2,<2.0)
17
17
  Requires-Dist: cryptography (>=43.0.1)
18
- Requires-Dist: fastapi (>=0.115.11,<0.116.0)
19
18
  Requires-Dist: httpx (>=0.28.1,<0.29.0)
20
19
  Requires-Dist: jwcrypto (>=1.5.6,<2.0.0)
21
20
  Requires-Dist: pydantic (>=2.10.6,<3.0.0)
@@ -24,7 +23,7 @@ Description-Content-Type: text/markdown
24
23
 
25
24
  The Auth0 Server Python SDK is a library for implementing user authentication in Python applications.
26
25
 
27
- ![PyPI](https://img.shields.io/pypi/v/auth0-server-python) ![Downloads](https://img.shields.io/pypi/dw/auth0-server-python) [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT) [![Codecov](https://img.shields.io/codecov/c/github/auth0/auth0-server-python)](https://codecov.io/gh/auth0/auth0-server-python) [![CI](https://github.com/auth0/auth0-server-python/actions/workflows/ci.yml/badge.svg)](https://github.com/auth0/auth0-server-python/actions)
26
+ ![PyPI](https://img.shields.io/pypi/v/auth0-server-python) ![Downloads](https://img.shields.io/pypi/dw/auth0-server-python) [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
28
27
 
29
28
  📚 [Documentation](#documentation) - 🚀 [Getting Started](#getting-started) - 💬 [Feedback](#feedback)
30
29
 
@@ -53,7 +52,7 @@ Create an instance of the Auth0 client. This instance will be imported and used
53
52
 
54
53
 
55
54
  ```python
56
- from auth0_server_python import ServerClient
55
+ from auth0_server_python.auth_server.server_client import ServerClient
57
56
 
58
57
  auth0 = ServerClient(
59
58
  domain='<AUTH0_DOMAIN>',
@@ -133,7 +132,7 @@ We appreciate feedback and contribution to this repo! Before you get started, pl
133
132
 
134
133
  - [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
135
134
  - [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
136
- - [This repo's contribution guide](./CONTRIBUTING.md)
135
+ - [This repo's contribution guide](./../../CONTRIBUTING.md)
137
136
 
138
137
  ### Raise an issue
139
138
 
@@ -1,6 +1,6 @@
1
1
  The Auth0 Server Python SDK is a library for implementing user authentication in Python applications.
2
2
 
3
- ![PyPI](https://img.shields.io/pypi/v/auth0-server-python) ![Downloads](https://img.shields.io/pypi/dw/auth0-server-python) [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT) [![Codecov](https://img.shields.io/codecov/c/github/auth0/auth0-server-python)](https://codecov.io/gh/auth0/auth0-server-python) [![CI](https://github.com/auth0/auth0-server-python/actions/workflows/ci.yml/badge.svg)](https://github.com/auth0/auth0-server-python/actions)
3
+ ![PyPI](https://img.shields.io/pypi/v/auth0-server-python) ![Downloads](https://img.shields.io/pypi/dw/auth0-server-python) [![License](https://img.shields.io/:license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
4
4
 
5
5
  📚 [Documentation](#documentation) - 🚀 [Getting Started](#getting-started) - 💬 [Feedback](#feedback)
6
6
 
@@ -29,7 +29,7 @@ Create an instance of the Auth0 client. This instance will be imported and used
29
29
 
30
30
 
31
31
  ```python
32
- from auth0_server_python import ServerClient
32
+ from auth0_server_python.auth_server.server_client import ServerClient
33
33
 
34
34
  auth0 = ServerClient(
35
35
  domain='<AUTH0_DOMAIN>',
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "auth0-server-python"
3
- version = "1.0.0.b2"
3
+ version = "1.0.0.b4"
4
4
  description = "Auth0 server-side Python SDK"
5
5
  readme = "README.md"
6
6
  authors = ["Auth0 <support@okta.com>"]
@@ -17,7 +17,6 @@ pyjwt = ">=2.8.0"
17
17
  authlib = "^1.2"
18
18
  httpx = "^0.28.1"
19
19
  pydantic = "^2.10.6"
20
- fastapi = "^0.115.11"
21
20
  jwcrypto = "^1.5.6"
22
21
 
23
22
  [tool.poetry.group.dev.dependencies]