Skip to content

Python interface to the Intuit QuickBase database API

License

Notifications You must be signed in to change notification settings

oysterhotels/quickbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

Python interface to the Intuit QuickBase database API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages