J'ai essayé d'installer le module urllib.request en utilisant la commande ci-dessous
Sudo pip install urllib.request
mais il est revenu
Downloading/unpacking urllib.request
Could not find any downloads that satisfy the requirement urllib.request
Cleaning up...
No distributions at all found for urllib.request
Storing debug log for failure in /home/mounarajan/.pip/pip.log
Comment puis-je installer ce module?
urllib.request est uniquement disponible dans la branche python3. Voir le post suivant pour plus d'informations. urllib.request in Python 2.7
En python3, vous devez utiliser le module urllib3.
$ pip3 install urllib3
Ou si vous utilisez un env virtuel:
$ pip install urllib3
En python 2, vous utilisez simplement urllib Par exemple
import urllib
htmlfile=urllib.urlopen("your url")
htmltext=htmlfile.read()
en python 3, vous devez utiliser urllib.request
import urllib.request
htmlfile=urllib.request.urlopen("your url")
htmltext=htmlfile.read()
Pour Python3 en cmd,
pip install urllib3
Ou si vous utilisez un anaconda:
conda install urllib3
J'espère que ceci vous aidera