```
try:
import httplib
except ImportError:
import http.client as httplib
try:
from urlparse import urlparse
except ImportError:
from urllib.parse import urlparse
try:
from urllib import urlencode
except ImportError:
from urllib.parse import urlencode
```