Python wrapper for the Untappd.com API.
- 1.0 Initial release
- Documentaion
- Register for a client ID and client secret
- Test authentication with OAuth to allow authorized calls
- Exception handling
- Parsing meta returns
from untappd import Untappd
untappd_client = Untappd('CLIENT_ID', 'CLIENT_SECRET'[, 'REDIRECT_URL'])
untappd_client.beer_trending()
untappd_client.beer_info(123)
untappd_client.user_info('mattyschmo')
untappd_client.search_beer({'q': 'coors'})