Skip to content

bolaurent/zuora_restful_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A python class for accessing the Zuora API via REST

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages