Skip to content

Instantly share code, notes, and snippets.

View esaezgil's full-sized avatar

Enrique Saez esaezgil

View GitHub Profile

Keybase proof

I hereby claim:

  • I am esaezgil on github.
  • I am esaezgil (https://keybase.io/esaezgil) on keybase.
  • I have a public key ASA5RpiZR-HBDfDQM_DIOJrsCNwF3nGvB5OztsMRsALw9wo

To claim this, I am signing this object:

@esaezgil
esaezgil / 01-deferred-list.py
Created September 6, 2016 15:54 — forked from oubiwann/01-deferred-list.py
Async Batching with Twisted: A Walkthrough
from twisted.internet import defer, reactor
from twisted.web.client import getPage
def listCallback(results):
print results
def finish(ign):
reactor.stop()
def test():