Skip to main content

Python wrapper for quickbase JSON API.

Project description

quickbase-json-api-client

logo_1x

build size license downloads

Unofficial QuickBase JSON API wrapper for Python.

logo

Created by Synctivate Developers! Custom software solutions from Fredericksburg, Virginia!

Documentation

https://github.com/robswc/quickbase-json-api-client/wiki

Quickstart

Installation

To install, run:

pip install quickbase-json-api-client

Initialize Client

Use the following code to create and initialize a client object.

from quickbase_json import QBClient

client = QBClient(realm="yourRealm", auth="userToken")

Where yourRealm is the name (subdomain) of your Quickbase Realm and userToken is the user token used to authenticate with the realm. You can also include an optional agent: str argument, which will change the User-Agent (used in headers) from the default "QJAC" to whatever string is passed. This is heavily recommended, as it makes figuring out the origin of API calls easier.

Query Records

Querying for records is one of the most useful features of the Quickbase JSON API. Querying records with QJAC can be done using the following code

Basic Example

response = client.query_records(table='tableId', select=[3, 6, 12], where='queryString')
data = response.data()

Where tableId is the ID of the table you wish to query from, fids is a list of field IDs you wish to receive and queryString is a quickbase query string.

Adv. Example

from quickbase_json.helpers import Where
# have static fids for table/records
NEEDED_FIDS = [3, 6, 12]
# build query str where 3 is either 130, 131 or 132
# https://help.quickbase.com/api-guide/componentsquery.html
q_str = Where(3, 'EX', [130, 131, 132]).build(join='OR') 
response = client.query_records(table='tableId', select=NEEDED_FIDS, where=q_str)

In this example, we use the Where() helper. This can make building complex QuickBase queries easier.

The Where() helper documentation can be found here.

Response Objects

A QBResponse object is returned when querying records with QJAC. A QBResponse has several methods that make handling returned data easier. Here are a few of the most useful ones.

Response Methods

  • .data()
r = qbc.query_records(...).data()

Returns the data from QuickBase. Equivalent to calling .get('data')

  • .denest()
r = qbc.query_records(...).denest()

Denests the data. I.e. changes {'fid': {'value': 'actualValue'}} to {'fid': 'actualValue'}

  • orient(orient: str, key: int)
r = qbc.query_records(...).orient('records', key=3)

Orients the data. Currently, the only option is 'records'. This will orient the returned data into a "record like structure", i.e. changes {'fid': 'actualValue', 'fid': 'actualValue'} to {'key': {etc: etc}}

  • convert()
r = qbc.query_records(...).convert('datetime')

Converts the data, based on fields and provided arguments. For example, calling convert('datetime') will convert all data with fields of the 'date time' type to python datetime objects. Other conversions are 'currency' and 'int'.

  • round_ints()
r = qbc.query_records(...).round_ints()

Rounds all float integers into whole number ints. i.e. converts 55.0 to 55.

Additional Features

Information on additional features that go beyond the scope of an introduction README.md, can be found on the GitHub Wiki!

This include things like...

Issues/Bugs

If you come across any issues or want to file a bug report, please do so here.

Thanks!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quickbase-json-api-client-0.3.0.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

quickbase_json_api_client-0.3.0-py3-none-any.whl (17.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page