$ pip install mbq.client
- ServiceClient wraps python's requests library to enable token based service to service authentication
- Authenticator provides Auth0 token based authentication
- TokenManager A manager that stores refreshable tokens with support for different persistent storage backends.
DjangoCacheStorage is a thin wrapper that stores token in your django project's cache.
from django.core.cache import cache
from mbq.client import ServiceClient, Authenticator, TokenManager, DjangoCacheStorage
token_manager = TokenManager(
settings={
'api_ids': {'my_service': 'id'},
'client_id': 'client_id',
'client_secret': 'your_secret'
'domain': 'auth0domain'
},
storage=DjangoCacheStorage(cache),
)
my_service_client = ServiceClient(
auth=Authenticator(
service_name='my_service',
token_manager=token_manager
)
)
my_service_client.get()
my_service_client.post()
my_service_client.patch()
my_service_client.put()
my_service_client.delete()
access_token.refresh()
access_token() #retrieves token