INACTIVE - http://mzl.la/ghe-archive - A client for the BadgeKit API, in Python
1b8397d473 | ||
---|---|---|
badgekitapiclient | ||
test | ||
.gitignore | ||
LICENSE | ||
README.md | ||
setup.py | ||
test.py |
README.md
Python BadgeKit API Client
A client for the BadgeKit API, in Python
Usage
from badgekitapiclient import init
endpoint = 'http://api.example.org'
auth = {'key': 'auth key', 'secret': 'auth secret'}
client = init(endpoint, auth)
badges = client.get_badges(system='system-slug')
for badge in badges:
print badge['name']
Testing
python test