The centralindex Python module allows developers to start using the Central Index API with minimal code. The Central Index is a global data exchange, with a simple REST/JSON api.
- Read up on what Central Index is here http://centralindex.com/
- Read up on the developer API here http://developer.centralindex.com/
- Sign up for a Mashery account, if you don't have one already http://developer.centralindex.com/member/register
- Sign up for an API key here http://developer.centralindex.com/apps/register
You'll need to put the CentralIndex.py file alongside your code.
Then your first script could look something like:
import CentralIndex
from CentralIndex import *
ci = CentralIndex('<insert api key here>')
print ci.getEntity('379236608286720')
See the API Docs for more information.