Skip to content

Commit 158ae05

Browse files
authored
Merge pull request #462 from auth0/remove-v3-folder
2 parents 44de6d9 + 1bb6443 commit 158ae05

112 files changed

Lines changed: 291 additions & 284 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ bin/
2626
*.egg
2727
.pypirc
2828
pyvenv.cfg
29+
.python-version
2930

3031
# Installer logs
3132
pip-log.txt

EXAMPLES.md

Lines changed: 7 additions & 7 deletions

README.md

Lines changed: 5 additions & 5 deletions

V4_MIGRATION_GUIDE.md

Lines changed: 23 additions & 2 deletions

auth0/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
__version__ = "3.24.0"
2+
3+
from auth0.exceptions import Auth0Error, RateLimitError, TokenValidationError
4+
5+
__all__ = ("Auth0Error", "RateLimitError", "TokenValidationError")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import aiohttp
22

3-
from auth0.v3.rest_async import AsyncRestClient
3+
from auth0.rest_async import AsyncRestClient
44

55

66
def _gen_async(client, method):
File renamed without changes.
Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
import base64
2-
import json
3-
import platform
4-
import sys
1+
from auth0.rest import RestClient, RestClientOptions
52

6-
import requests
7-
8-
from auth0.v3.rest import RestClient, RestClientOptions
9-
10-
from ..exceptions import Auth0Error, RateLimitError
113
from .client_authentication import add_client_authentication
124

135
UNKNOWN_ERROR = "a0.sdk.internal.unknown"
File renamed without changes.

0 commit comments

Comments
 (0)