Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 688 Bytes

File metadata and controls

30 lines (21 loc) · 688 Bytes

zuora_restful_python

A python class for accessing the Zuora API via REST

install

pip install  git+git://github.com/bolaurent/zuora_restful_python.git
 -- or --
pip install --upgrade git+git://github.com/bolaurent/zuora_restful_python

sample use

import sys
from zuora_restful_python.zuora import Zuora

(username, password) = sys.argv[1:3]
zuora = Zuora(username, password)

for record in zuora.query_all('select Name from Account'):
    print(record['Name'])

References

Note

if you are looking for the command line tool zoql, it has moved to https://github.com/bolaurent/python-cmdline-zoql.