You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

auth0-python

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth0-python - pypi Package Compare versions

Comparing version
3.23.0
to
3.23.1
+1
-1
auth0_python.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: auth0-python
Version: 3.23.0
Version: 3.23.1
Summary: Auth0 Python SDK

@@ -5,0 +5,0 @@ Home-page: https://github.com/auth0/auth0-python

@@ -1,1 +0,1 @@

__version__ = "3.23.0"
__version__ = "3.23.1"

@@ -83,5 +83,13 @@ from ..utils import is_async_available

cls = asyncify(cls)
setattr(self, name, cls(domain=domain, token=token, rest_options=None))
setattr(
self,
name,
cls(domain=domain, token=token, rest_options=rest_options),
)
else:
for name, cls in modules.items():
setattr(self, name, cls(domain=domain, token=token, rest_options=None))
setattr(
self,
name,
cls(domain=domain, token=token, rest_options=rest_options),
)

@@ -32,2 +32,3 @@ import unittest

from ...management.users_by_email import UsersByEmail
from ...rest import RestClientOptions

@@ -124,1 +125,6 @@

self.assertIsInstance(self.a0.users, Users)
def test_args(self):
rest_options = RestClientOptions(retries=99)
auth0 = Auth0(self.domain, self.token, rest_options=rest_options)
self.assertEqual(auth0.users.client.options.retries, 99)
Metadata-Version: 2.1
Name: auth0-python
Version: 3.23.0
Version: 3.23.1
Summary: Auth0 Python SDK

@@ -5,0 +5,0 @@ Home-page: https://github.com/auth0/auth0-python