Skip to content

Instantly share code, notes, and snippets.

View robinsonkwame's full-sized avatar

Kwame Porter Robinson robinsonkwame

View GitHub Profile
#!/usr/bin/env python
import urllib
class Worker(object):
def __init__(self, myurl):
self.myurl = myurl
def dowork(self):
resp = urllib.request.urlopen(self.myurl)