My code works fine in PyCharm, but I have error messages when I try to open it in the terminal. What happened to my code or where did I make mistakes?
import urllib.request with urllib.request.urlopen('http://python.org/') as response: html = response.read() print(html)
Exit the terminal:
Ξ» python Desktop\url1.py Traceback (most recent call last): File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked AttributeError: 'module' object has no attribute '__path__' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "Desktop\url1.py", line 1, in <module> import urllib.request File "C:\Users\Przemek\Desktop\urllib.py", line 1, in <module> import urllib.request ImportError: No module named 'urllib.request'; 'urllib' is not a package
python urllib
Przemek
source share