Python wrapper for the unofficial LCBO API
Full API documentation for LCBO API can be found at: [https://lcboapi.com/docs]
Via PyPI:
$ pip install lcboapi
Via Github:
$ git clone https://github.com/shamrt/LCBOAPI.git $ cd LCBOAPI $ python setup.py install
Obtain an access key from LCBO API.
Initialize API wrapper:
from lcboapi import LCBOAPI
api = LCBOAPI('your_API_access_key')
Get data for store #614:
print api.stores(614)
First setup your virtual environment:
$ virtualenv env $ . env/bin/active $ pip install -r requirements.txt
Then set an environment variable for your API access key:
$ export LCBOAPI_ACCESS_KEY='your_API_access_key'
Finally, run tests:
$ py.test