Skip to content

Instantly share code, notes, and snippets.

@ksc91u
Created July 12, 2015 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksc91u/c3c872679654ec9ebed4 to your computer and use it in GitHub Desktop.
Save ksc91u/c3c872679654ec9ebed4 to your computer and use it in GitHub Desktop.
Python 3/Python 2 urllib
IS_PYTHON_3=False
try:
import urllib.request as urllib2
IS_PYTHON_3=True
except ImportError:
IS_PYTHON_3=False
import urllib2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment