Skip to content

Instantly share code, notes, and snippets.

@0532
Created June 2, 2015 02:30
Show Gist options
  • Save 0532/4991ebb2095169a7c42c to your computer and use it in GitHub Desktop.
Save 0532/4991ebb2095169a7c42c to your computer and use it in GitHub Desktop.
sublime commit
# -*- coding: UTF-8 -*-
import requests
def getLang(user):
re = requests.get('https://api.github.com/users/'+user+'/repos')
if 200 == re.status_code:
for k,v in enumerate(re.json()):
print v['name'],v['language']
if __name__ == '__main__':
getLang('zhanrui')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment