Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 811 Bytes

File metadata and controls

33 lines (26 loc) · 811 Bytes

Untappd API Python Wrapper

Python wrapper for the Untappd.com API.

Version

  • 1.0 Initial release

API

TODO

  • Test authentication with OAuth to allow authorized calls
  • Exception handling
  • Parsing meta returns

Dependencies

Usage

from untappd import Untappd
untappd_client = Untappd('CLIENT_ID', 'CLIENT_SECRET'[, 'REDIRECT_URL'])

Code Examples

Get trending beers:

untappd_client.beer_trending()

Get single beer info:

untappd_client.beer_info(123)

Get user info:

untappd_client.user_info('mattyschmo')

Search for beer:

untappd_client.search_beer({'q': 'coors'})