We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You literaly just need to replace only one line ! This line:
import urllib2
Need to be replaced by this line:
import urllib.request as urllib2
If you want that Python2 and Python3 are supported, replace the import urllib2 line by:
import sys if int(sys.version_info[0]) > 2: import urllib.request as urllib2 else: import urllib2
Please, change this in the code, then republish the package on PyPI. Thanks !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You literaly just need to replace only one line !
This line:
Need to be replaced by this line:
If you want that Python2 and Python3 are supported, replace the
import urllib2
line by:Please, change this in the code, then republish the package on PyPI.
Thanks !
The text was updated successfully, but these errors were encountered: