You are on page 1of 1

REQUESTS:

It's a library or a package used to access the content related to a web page
or web url.

->Requests is a open source package with the following function


1.get()-to redirect to specific url(address)
2.text-is not a method-it displays all source code related to web page
3.ok-it's a variable to know the status of website to access-true/false values
true-access data
false-cannot access data
4.headers-it returns a dictionary -where it will display particular details of
server/
webpage
5.status_code-it returns number
200-suuccessful
300-problematic code
6.content-will return any information/external sources like images,files,
videos,audio(in generally used for images)

Beautifulsoup:It is an extract or scrapping mechanism of given website(parsing)


EG:we can also modify website content or data-i.e dynamic web
content access

Pillow:It is a package for image libraries


EG:processsing images,manipulation images(it works like a tuple)
tuple with 2 values-black n white image
tuple with 3 values-coloured image

wikipedia:It's an external package -to extract or access the content of a


wikipedia

In order to work with date n time we use date time module

You might also like