This Python package provides a wrapper for the Luno API.
pip install luno-python
Please visit the Settings page to generate an API key.
fromluno_python.clientimportClientc=Client(api_key_id='key_id', api_key_secret='key_secret')
try:
res=c.get_ticker(pair='XBTZAR')
print(res)
exceptExceptionase:
print(e)For more examples, see the examples folder.
