This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""scrape github gists""" | |
#!/usr/bin/env python | |
from sys import argv | |
from json import load | |
from urllib import request | |
from subprocess import call | |
GITHUB = "https://api.github.com/users/" | |
USER = argv[1] | |
call(['mkdir', '-p', USER]) |
NewerOlder