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\"
urllib went through some changes in Python3 and can now be imported from the parse submodule
>>> from urllib.parse import quote >>> quote('"') '%22'