4. Scraping Data using Beautiful Soup | IMDB Top Movies | Web Scraping Tutorial | Python

4. Scraping Data using Beautiful Soup | IMDB Top Movies | Web Scraping Tutorial | Python

Hackers Realm

3 года назад

17,820 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@reshamchawra1598
@reshamchawra1598 - 06.08.2021 09:36

Please tell me the difference between select and find all method and which one to use when

Ответить
@akshathaaravind1211
@akshathaaravind1211 - 24.10.2021 05:21

sir, i want to seperate movie name and year how to do it please help

Ответить
@pushpanjalidash1453
@pushpanjalidash1453 - 26.10.2021 11:25

I want to scrap only top 100 from the 250. How to do it sir?

Ответить
@pushpanjalidash1453
@pushpanjalidash1453 - 28.10.2021 14:15

Can u help me with a website where the class or attributes are missing?

Ответить
@lewiss1773
@lewiss1773 - 12.12.2021 18:58

Good job man, you have helped me. Keep it up

Ответить
@sirichandana549
@sirichandana549 - 19.02.2022 14:20

nice video can u tell me how to get the links of movies

Ответить
@harshadajain6663
@harshadajain6663 - 19.02.2022 20:29

After specifying tag and class name I am getting empty list in soup.findall method what would be the reason behind this??

Ответить
@sharans5771
@sharans5771 - 20.02.2022 16:43

What a professional way of scraping. Perfect

Ответить
@aabhatathed5437
@aabhatathed5437 - 21.02.2022 17:52

how to filter top rated 100 Indian movies?

Ответить
@abhishek11910
@abhishek11910 - 20.03.2022 13:20

how to get the ranking and cast of movies?

Ответить
@santhoshpraneetha5482
@santhoshpraneetha5482 - 20.03.2022 21:52

for release date how we have to do

Ответить
@gurpindersinghmuttar
@gurpindersinghmuttar - 17.05.2022 21:32

I want to extract user reviews data of multiple pages in imdb with ratings can you tell me

Ответить
@hrishabhkumbhalkar2665
@hrishabhkumbhalkar2665 - 11.07.2022 10:33

Very well explained 👍 thanks ❤️

Ответить
@timepassgamer2602
@timepassgamer2602 - 13.08.2022 05:23

Can we use this dataset to build a movies recommendation system?

Ответить
@rohanbanekar
@rohanbanekar - 22.10.2022 20:33

it is possible with blogger post???

Ответить
@abhinavkale4632
@abhinavkale4632 - 16.11.2022 09:53

Great work!!!
can you please do a part2 video demonstrating - adding all the movie posters beside the respective movie name in excel using xlsxwriter or openpyxl?
It will be such a great help!
Thank you

Ответить
@ambujars1199
@ambujars1199 - 16.11.2022 20:19

when i run the code movie name is displayed in chinese why?

Ответить
@darshanprasadsharma
@darshanprasadsharma - 11.02.2023 22:46

Really nice

Ответить
@VimlehsOjha-br5ld
@VimlehsOjha-br5ld - 29.04.2023 22:03

How can I separate the Year.

Ответить
@mr._hrathod
@mr._hrathod - 21.09.2023 14:59

i cant find my data in PC how to save it.

Ответить
@tryingtocode0
@tryingtocode0 - 13.12.2023 15:14

My scraped ratings appear to have another bracketed value after each rating i.e. 7.0(41K), how do I get rid of this bracket and the value within for each rating of the list so just the rating is left? thanks!

Ответить
@Bhuvan-g2v
@Bhuvan-g2v - 16.12.2023 12:35

>>page.content
instead of large data it is showing "403 forbidden" :
-> b'<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403 Forbidden</h1></center>\r\n</body>\r\n</html>\r\n'
how can we fix this

Ответить
@khalidabarbach4109
@khalidabarbach4109 - 20.12.2023 21:42

how can you get each movie's rank, great video !

Ответить
@HackersRealm
@HackersRealm - 10.07.2023 13:08

Hey Hackers,
I believe if you use requests module, you might be receiving 403 error. To resolve that, use the following,
```
HEADERS = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'}
page = requests.get(url, headers=HEADERS)
```
The notebook is updated and available in github repository.

Thank you so much for the support!!!
Happy Coding🔥

Ответить