Skip to content

Instantly share code, notes, and snippets.

View scottvdp's full-sized avatar

Scott VanDenPlas scottvdp

View GitHub Profile

Keybase proof

I hereby claim:

  • I am scottvdp on github.
  • I am scottvdp (https://keybase.io/scottvdp) on keybase.
  • I have a public key whose fingerprint is DE85 2BD3 9FB0 0820 6693 6F51 C4F0 2A55 D485 542D

To claim this, I am signing this object:

@scottvdp
scottvdp / untappd.py
Created May 26, 2013 21:50
Playing with hammock to wrap the untappd API
from hammock import Hammock
class Untappd(object):
"""Base object for the untappd API wrapper"""
def __init__(self, client_id, client_secret):
self.params = {'client_id':client_id,'client_secret':client_secret}
self._api = Hammock("http://api.untappd.com/v4", params=self.params)
class User(Untappd):