diff --git a/twython.py b/twython.py index d135f6e..cf05f71 100644 --- a/twython.py +++ b/twython.py @@ -10,6 +10,11 @@ Questions, comments? ryan@venodesigns.net """ +import httplib, urllib, urllib2, mimetypes, mimetools + +from urlparse import urlparse +from urllib2 import HTTPError + __author__ = "Ryan McGrath " __version__ = "0.8" diff --git a/twython3k.py b/twython3k.py index c55b1b7..dc7026c 100644 --- a/twython3k.py +++ b/twython3k.py @@ -10,6 +10,11 @@ Questions, comments? ryan@venodesigns.net """ +import http.client, urllib, urllib.request, urllib.error, urllib.parse, mimetypes, mimetools + +from urllib.parse import urlparse +from urllib.error import HTTPError + __author__ = "Ryan McGrath " __version__ = "0.8"