Skip to main content

No project description provided

Project description

###############
MBQ Service to Service Client
###############

.. image:: https://img.shields.io/pypi/v/mbq.client.svg
:target: https://pypi.python.org/pypi/mbq.client

.. image:: https://img.shields.io/pypi/l/mbq.client.svg
:target: https://pypi.python.org/pypi/mbq.client

.. image:: https://img.shields.io/pypi/pyversions/mbq.client.svg
:target: https://pypi.python.org/pypi/mbq.client

.. image:: https://img.shields.io/travis/managedbyq/mbq.tokens/master.svg
:target: https://travis-ci.org/managedbyq/mbq.client)

Installation
------------

.. code-block:: bash

$ pip install mbq.client


Getting Started
---------------

Key Concepts
^^^^^^^^^^^^

- **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.

Django Integration
^^^^^^^^^^^^^^^^^^

**DjangoCacheStorage** is a thin wrapper that stores token in your django project's cache.

Example
"""""""

.. code-block:: python

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mbq.client-0.0.12.tar.gz (5.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page