Easy way extact hotel names from booking.com?

chillyourmind

Regular Member
Joined
Jan 25, 2020
Messages
336
Reaction score
130
I want to extract hotel names from booking.com.
So I can then search the name on google and extract emails from their website.
Any idea on an easy way to extract all the hotel names in my country through booking.com?
 
you could scrape the site, and then pick out the HTML element which shows the hotel name and then add them into a list.
 
You can use selenium with python or java - picking the id from the field with the hotel names and saving it in a list

https://towardsdatascience.com/how-to-use-selenium-to-web-scrape-with-example-80f9b23a843a
 
Back
Top