I am using Version 3.9.0 and also 3.8.5 for some tests i am a begginer with 6 months experience. Anyone can pls help me Thank you in advance, And i saw this urllib.request module fails to install in my system but then it kept going.
Asked
Active
Viewed 73 times
-2
-
1[`urllib`](https://docs.python.org/3/library/urllib.html) is part of the Python Standard Library and is already installed. – Matthias Jan 05 '21 at 10:03
1 Answers
1
You can use it without installing it. Can you please try this :
from urllib.request import urlopen
html = urlopen("http://www.google.com/").read()
print(html)

r.burak
- 514
- 5
- 10
-
Thanks! But geeksforgeeks search said you need to install urllib sorry for inconvenience – Aditya Pardeshi Jan 05 '21 at 14:35