-
-
Save sethwoodworth/9139deafa35cb22e58fd to your computer and use it in GitHub Desktop.
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
#!/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