Metadata-Version: 1.1
Name: bunqclient
Version: 2017.7.8
Summary: Python client for the bunq public API
Home-page: https://github.com/bartbroere/bunqclient/
Author: Bart Broere
Author-email: mail@bartbroere.eu
License: MIT
Description: # bunqclient
        Python client for the bunq public API
        
        ## Installation
        Installing the latest release can be done from PyPi:
        ```
        pip install bunqclient
        ```
        
        The latest unreleased version can be installed from GitHub:
        ```
        git clone https://github.com/bartbroere/bunqclient/
        cd ./bunqclient
        python setup.py install
        ```
        
        ## Usage
        Before using it, make sure that you understand the cost scheme of this API. 
        Replace the value of the parameter ``secret`` with the API key generated in
        the bunq app.
        
        ```python
        from bunqclient import BunqClient
        bunq = BunqClient(secret="")
        ```
        
        To use the sandbox version change the ``base`` parameter. Note that you should
        use a separate API key for this. A sandbox key can be acquired by asking bunq
        support.
        
        ```python
        from bunqclient import BunqClient
        bunq_sandbox = BunqClient(base="https://sandbox.public.api.bunq.com/v1", 
                                  secret="")
        ```
        
        ``LIST`` requests are basically ``GET`` requests without a specified key. The 
        first two API calls have the same effect. The third requests a specific 
        ``monetary-account``. Due to the way Python interprets variable names, dashes
        in API methods (``-``) should be replaced with underscores (``_``).
        
        ```python
        bunq.request(method="LIST", monetary_account="", user=1)
        bunq.request(method="GET", monetary_account="", user=1)
        bunq.request(method="GET", monetary_account=11, user=1)
        ```
        
        These API calls return a python dictionary with the query's result.
        
        ## Contributing
        To report bugs and submit feature requests, please open an issue on GitHub.
        Pull requests that resolve issues or TODO's are also greatly appreciated.
        
Keywords: bunq,bank,api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Utilities
