Wednesday, 23 October 2019

Open a webpage using the urllib library.


Programming steps:
1. Open the python script mode and type below  statements


import urllib.request
data = urllib.request.urlopen('https://www.youtube.com/')
print(data.read())


Output:

Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>>
== RESTART: C:/Users/kvhebbal/AppData/Local/Programs/Python/Python38-32/gbh.py =

squeezed text(180 lines).

No comments:

Post a Comment