pyhton client for Eventbrite's HTTP-based API
Project description
#eventbrite-client.py#
##Description##
A simple python-based http client for the Eventbrite API
For the latest information on this project, take a look at:
* [This project's source code repo](http://github.com/eventbrite/eventbrite-client-py/)
* [The Eventbrite API documentation](http://developer.eventbrite.com/doc/)
##Usage Examples##
###Installation###
NOTE: This package requires a JSON library - by default we check for "simplejson" or use the built-in "json" library provided in python 2.6+
####Installation using easy_install####
easy_install eventbrite
####Installation using pip####
pip install eventbrite
###Loading the Eventbrite API Client library code###
import eventbrite
###Initializing the client###
Your API / Application key is required to initialize the client - http://eventbrite.com/api/key
Set your user_key if you want to access private data - http://eventbrite.com/userkeyapi
eb_auth_tokens = {'app_key': 'YOUR_APP_KEY',
'user_key': 'YOU_USER_KEY'}
eb_client = eventbrite.EventbriteClient(eb_auth_tokens)
###Calling API methods###
See [Eventbrite's API method documentation](http://developer.eventbrite.com/doc/) for more information about the list of available client methods.
Here is an example using the API's [user_list_events](http://developer.eventbrite.com/doc/users/user_list_events/) method:
response = eb_client.user_list_events()
The [event_get](http://developer.eventbrite.com/doc/events/event_get/) API call should look like this:
response = eb_client.event_get({'id':1848891083})
### Widgets ###
Rendering an event in html as a [ticketWidget](http://www.eventbrite.com/t/how-to-use-ticket-widget) is easy:
response = eb_client.event_get({'id':1848891083})
widget_html = eventbrite.EventbriteWidgets.ticketWidget(response['event'])
##Resources##
* API Documentation - <http://developer.eventbrite.com/doc/>
* API QuickStart Guide - <http://developer.eventbrite.com/doc/getting-started/>
* Eventbrite Open Source - <http://eventbrite.github.com/>
* Eventbrite App Showcase - <http://eventbrite.appstores.com/>
* 0.3.x source - <http://github.com/eventbrite/eventbrite-client-py/>
* 0.2.x source - <http://github.com/mtai/eventbrite/>
##Description##
A simple python-based http client for the Eventbrite API
For the latest information on this project, take a look at:
* [This project's source code repo](http://github.com/eventbrite/eventbrite-client-py/)
* [The Eventbrite API documentation](http://developer.eventbrite.com/doc/)
##Usage Examples##
###Installation###
NOTE: This package requires a JSON library - by default we check for "simplejson" or use the built-in "json" library provided in python 2.6+
####Installation using easy_install####
easy_install eventbrite
####Installation using pip####
pip install eventbrite
###Loading the Eventbrite API Client library code###
import eventbrite
###Initializing the client###
Your API / Application key is required to initialize the client - http://eventbrite.com/api/key
Set your user_key if you want to access private data - http://eventbrite.com/userkeyapi
eb_auth_tokens = {'app_key': 'YOUR_APP_KEY',
'user_key': 'YOU_USER_KEY'}
eb_client = eventbrite.EventbriteClient(eb_auth_tokens)
###Calling API methods###
See [Eventbrite's API method documentation](http://developer.eventbrite.com/doc/) for more information about the list of available client methods.
Here is an example using the API's [user_list_events](http://developer.eventbrite.com/doc/users/user_list_events/) method:
response = eb_client.user_list_events()
The [event_get](http://developer.eventbrite.com/doc/events/event_get/) API call should look like this:
response = eb_client.event_get({'id':1848891083})
### Widgets ###
Rendering an event in html as a [ticketWidget](http://www.eventbrite.com/t/how-to-use-ticket-widget) is easy:
response = eb_client.event_get({'id':1848891083})
widget_html = eventbrite.EventbriteWidgets.ticketWidget(response['event'])
##Resources##
* API Documentation - <http://developer.eventbrite.com/doc/>
* API QuickStart Guide - <http://developer.eventbrite.com/doc/getting-started/>
* Eventbrite Open Source - <http://eventbrite.github.com/>
* Eventbrite App Showcase - <http://eventbrite.appstores.com/>
* 0.3.x source - <http://github.com/eventbrite/eventbrite-client-py/>
* 0.2.x source - <http://github.com/mtai/eventbrite/>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
eventbrite-0.3.1-py2.6.egg
(9.7 kB
view details)
File details
Details for the file eventbrite-0.3.1-py2.6.egg
.
File metadata
- Download URL: eventbrite-0.3.1-py2.6.egg
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc24ecce7ec01fd37b62e6d92ff012ac94db8c38f159b6bf20ea8b3f5c3f6639 |
|
MD5 | 3ae0c5913d107366a4ca323c7cf70802 |
|
BLAKE2b-256 | a5a26f7269392197e0f52ecd2b4830231426a9d36a3f5e0e2d8afec8dd32d5c4 |