Skip to main content

A Thin JamBase API Client library for Django/Python Applications.

Project description

http://images.jambase.com/logos/jambase140x70.gif

A Python Jambase API Client Library

Getting Started

$ pip install DjamBase

Get a valid Developer API key at http://developer.jambase.com.

import DjamBase

db = DjamBase.API("your_api_key")

Usage

db.artist_search(params)

‘params’ is a dictionary, with: {"id": <int>, "name": <str>} as valid key, value options. These will serve as the JamBase Artist search parameters.

db.venue_search(params)

‘params’ is a dictionary, with: {"id": <int>, "zipCode": <int>, "radius"*: <int>} as valid key, value options. These are the JamBase Venue search parameters. * miles.

db.event_list(params)

params’ is a dictionary, with:

{
"id": <int>,
"artist": <str>,
"artistId": <int>,
"band": <str>,
"bandId": <int>,
"venueId": <int>,
"zipCode": <int>,
"radius": <int>,
"startDate": <YYYY-MM-DD>,
"endDate": <YYYY-MM-DD>
}

as possible valid key, value options. These are the JamBase Event search parameters.

Use any combination of a functions’ available parameters that you like, depending on the desired results. Notice that all keys are written in “camelCase”.

Use as below:

r = db.event_list( {"name": "the foobar fighters", "radius": 200} )

Response

Of course, you can use whatever variable name you like, but the above variable “r” will contain a response object. It’s that simple! The “.body” attribute of this object contains the response in JSON format. If you would like XML, pass “xml” as the optional 2nd argument when instantiating the client.

r.body

-Use this response object property retrieve the content of the search response. JSON by default.

r.status

-This property will give you access to the dialogues’ HTTP status code, in case there are issues.

r.text

-This property will give you a stringified version of the JSON/XML response.

r.binary

-This property will get you binary version of the response.

json = r.body
print json

Example

import DjamBase

db = DjamBase.API("your_api_key", "xml")

r = db.event_list( {"name": "the foobar fighters", "radius": 200} )
code = r.status
print code      **<Response-200>**

xml = r.body
print xml

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

DjamBase-1.0.16.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

DjamBase-1.0.16.macosx-10.11-intel.exe (110.8 kB view details)

Uploaded Source

File details

Details for the file DjamBase-1.0.16.tar.gz.

File metadata

  • Download URL: DjamBase-1.0.16.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for DjamBase-1.0.16.tar.gz
Algorithm Hash digest
SHA256 6bb24fa7dda5f6980649dfad537527e7fa8001fd2594426ac6f7e056c819a29d
MD5 e351bddd0a237c9f1f449170b9d9a526
BLAKE2b-256 224e02a3f0994709df4c33401bd3dcd9845fb87f10b4c710f0a4e3592f2271f8

See more details on using hashes here.

File details

Details for the file DjamBase-1.0.16.macosx-10.11-intel.exe.

File metadata

File hashes

Hashes for DjamBase-1.0.16.macosx-10.11-intel.exe
Algorithm Hash digest
SHA256 106de233ce54359799372e771797592eb463c7720d0d8b597b4b63f2a6663815
MD5 2842024ee1c690e9671b2ba829aed309
BLAKE2b-256 2e3a7eabdfcad8408078da54a69a77f5d51f74e9c636e415ae89fed5aa8f9355

See more details on using hashes here.

Supported by

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