Skip to content

Instantly share code, notes, and snippets.

View dreizehnutters's full-sized avatar

dreizehnutters

View GitHub Profile
@dreizehnutters
dreizehnutters / scrape_gists.py
Created January 8, 2020 11:17
scrape github gists
"""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])