straal

Python client for Straal Payments API


License
Apache-2.0
Install
pip install straal==0.2.0

Documentation

straal-python

Installation

$ pip install -U straal

Example

>>> import straal
>>> straal.init("your_api_key")
>>> customer = straal.Customer.create(email="customer@example.net")
>>> customer.email == "customer@example.net"
True
>>> customer.id is not None
True