A simple Python wrapper for the Wine.com API. Response formats include JSON and XML.
pip install wino
>>> import wino as w
# Require necessary api key
>>> c = w.Catalog("insert-your-api-key-here", "json")
# Search catalog
>>> c.search("mondavi")
# Parameters can be passed as well
>>> c.search("mondavi", size = 1, state = 'CA')
- Add appropriate tests
- Build out Category API portion