Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 582 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 582 Bytes

quickbase

Simple Python interface to the Intuit QuickBase API, as used by Oyster.com.

Simple example:

>>> import quickbase
>>> client = quickbase.Client(username, password, database='abcd1234')
>>> client.do_query("{'6'.EX.'Foo'}", columns='a')
[{'record_id': 1234, ...}]
>>> client.edit_record(1234, {6: 'Bar'}, named=False)
1

See the docstring comments in the code for more details and the QuickBase API docs for more details.