Skip to content

Instantly share code, notes, and snippets.

@sethwoodworth
Created March 27, 2015 02:50
Show Gist options
  • Save sethwoodworth/9139deafa35cb22e58fd to your computer and use it in GitHub Desktop.
Save sethwoodworth/9139deafa35cb22e58fd to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .login import auth
def append(gen, target):
target.append(gen.next())
g = auth()
s = g.search_code("language:html user:GITenberg")
ss = []
[append(s, ss) for _ in xrange(30)]
h = ss[20]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment