Metadata-Version: 2.1
Name: berbix
Version: 0.0.5
Summary: SDK for Berbix integrations
Home-page: https://github.com/berbix/berbix-python
Author: Eric Levine
Author-email: eric@berbix.com
License: UNKNOWN
Description: # Berbix Python SDK
        
        This Berbix Python library provides simple interfaces to interact with the Berbix API.
        
        ## Usage
        
        ### Constructing the client
        
            import berbix
        
            client = berbix.Client(
              client_id='your_client_id_here',
              client_secret='your_client_secret_here')
        
        ### Fetching user tokens
        
            user_tokens = client.exchange_code(code)
        
        ### Fetching user data
        
            client.fetch_user(user_tokens)
        
        ### User tokens from storage
        
            refresh_token = '' # fetched from database
            user_tokens = UserTokens.from_refresh(refresh_token)
        
        ## Release
        
        To release a new version of the SDK, first bump the version in `setup.py`.
        
            python setup.py sdist bdist_wheel
            twine upload dist/*
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
