Metadata-Version: 2.1
Name: chaintrailapi
Version: 0.0.5
Summary: A small example package
Home-page: https://github.com/swyngaard/chaintrailapi
Author: Sebastian Wyngaard
Author-email: basbot@gmail.com
License: UNKNOWN
Description: # Chaintrail API Wrapper
        
        Installation
        ```
        pip3 install chaintrailapi
        ```
        
        
        Import and use the package as demonstrated in `example.py` below:
        ```python
        from chaintrailapi import Account
        
        uuid = Account.uuid()
        account = Account('0x7f5f79c034e9781c03c4b4412e1f99ae9b413658')
        
        print('UUID response: {}'.format(uuid))
        print('Info response: {}'.format(account.info()))
        ```
        
        
        Be sure to the `CHAINTRAIL_BASE_URL` environment variable before running `example.py` as follows:
        ```bash
        export CHAINTRAIL_BASE_URL=https://httpbin.org
        python3 example.py
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
