I would like to use urllib.quote(). But python (python3) is not finding the module. Suppose, I have this line of code:
urllib.quote()
print(urllib.quote(\"châteu\"
Use six:
from six.moves.urllib.parse import quote
six will simplify compatibility problems between Python 2 and Python 3, such as different import paths.
six