This Python package provides a wrapper for the Luno API.
pip install luno-python
Please visit the Settings page to generate an API key.
from luno_python.client import Client
c = Client(api_key_id='key_id', api_key_secret='key_secret')
try:
res = c.get_ticker(pair='XBTZAR')
print res
except Exception as e:
print e