Skip to content

Instantly share code, notes, and snippets.

@six519
Created October 7, 2013 02:02
Show Gist options
  • Save six519/6861541 to your computer and use it in GitHub Desktop.
Save six519/6861541 to your computer and use it in GitHub Desktop.
Grab GitHub Gist
#!/usr/bin/env python
"""
Install requests first
======================
* pip install requests
"""
import requests
gists = requests.get('https://api.github.com/users/six519/gists') #change six519 to your username
for gist in gists.json():
print "%s: %s" % (gist['id'], gist['description'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment