Web Scraping with Python | BoxOffice Project | Python Complete Course | in Urdu/Hindi

Опубликовано: 28 Март 2026
на канале: XProgrammer
708
33

In this video Web Scraping with Python | BoxOffice Project | Python Complete Course | in Urdu/Hindi.
we are going to do Web scraping of Box Office Mojo in Python .
Don't worry if you have no knowledge of web scraping . I will teach you from scratch in this video.
Web Scraping has very important role in Data Science and Big Data. You can perform analysis on data and you can make automatic bot which can generate and store data in excel files whenever Data is updated on website.

Following are important points and functions you should remember while scraping.
1- libraries to install
bs4 , requests , pandas
2- important functions

soup.find_all('tag_name') it will return object of list}
soup.find_all('tag_name',class_='class_name') it will return object of list
soup.find('tag_name') it will give you only first tag
soup.find_all('a')[0] it will give first element from list of anchor tags
soup.find_all('a')[0].get('href') it will give url of first tag
we can reach to attribute of tag by .get('attribute_name')

3- you can disable javascript by Ctrl+shift+P if it is creating problem while inspection

4- Export your data and save into csv
df=pd.DataFrame((use angular bracket)'key':value,'key':value(use angular brcket here))
df.to_csv("file_name",index=True)

5 - If you have any query and want to lean more read following article: very well explained
https://bigdata-madesimple.com/scrape...

►Click here to subscribe my Channel -    / xprogrammer  

►WebScraping Complete Course in Hindi/Urdu -    • Python Tutorial for beginners | Make First...  

►Scrapy Webscraping Complete Course in Hindi/Urdu -    • What is XPath and how to use xpath in webS...  

►Farming Tips for Business -    • Home Business Ideas | Layer Farming Busine...  

►Cyber Attacks in Urdu -    • What is Buffer Overflow Attack ,Types, Cau...  

Follow us on Social Media
►Instagram -   / xprogrammer1  
►Facebook -   / xprogrammer  
►Twitter -   / xprogrammer  

#webscrapingcourse #pythonfullcoursehindi #pythontoturialurdu #pythoncourse2021 #xprogrammer