Learn how to scrape details from TripAdvisor using lxml.
Tripadvisor.com has tons of information regarding hotels from all over the world, which can be used for monitoring prices of hotels in a locality, competitive pricing, analyzing how the price changes with each season, understand ratings of hotels in a city and lot more. We are dividing the tutorial into two parts to scrape Tripadvisor
- Scrape Hotel List for City
- Scrape Hotels Details from a Hotel URL
In this part of the tutorial to scrape Tripadvisor, we’ll search Tripadvisor.com for hotels in a City, for specific check-in and check-out dates and extract the following data from the first page of search results
- Hotel Name
- Hotel Detail Page URL
- Number of Reviews
- Tripadvisor Rating
- Hotel Features
- Booking Provider
- Price per Night
- Number of Deals available
The annotated screenshot below shows the data extracted using Tripadvisor scraper.
Read More – Scrape Booking.com for hotel data
Scraping Logic
- Construct the search results page URL from TripAdvisor – Tripadvisor has complex URL for the search results page of each locality. For example here is the one for Boston
https://www.tripadvisor.com/Hotels-g60745-Boston_Massachusetts-Hotels.html
. We’ll have to construct this URL manually to scrape results from that page. We do that by getting this URL from Tripadvisor autocomplete API. - Download HTML of the search result page using Python Requests – Quite easy, once you have the URL. We use python requests to download the entire HTML of this page.
- Parse the page using LXML – LXML lets you navigate the HTML Tree Structure using Xpaths. We have predefined the XPaths for the details we need in the code.
- Save the data to a CSV file
Requirements
Since this is web scraping tutorial using Python, you’ll obviously need Python. We use some python packages for downloading and parsing the HTML. Below are the requirements
- Python 2.7 ( https://www.python.org/downloads/ )
- PIP to install the following packages in Python ( https://pip.pypa.io/en/stable/installing/)
- Python Requests, to make requests and download the HTML content of the pages ( http://docs.python-requests.org/en/master/user/install/).
- Python LXML, for parsing the HTML Tree Structure using Xpaths ( Learn how to install that here – http://lxml.de/installation.html )
The Code
The code is self-explanatory. We’ve added positional arguments in the command line scripts to specify check-in check-out date, locality and sort order for the results.
https://gist.github.com/scrapehero/1c425fdf290144cd4c7c635587feb459
You can download the Tripadvisor code from here https://gist.github.com/scrapehero/1c425fdf290144cd4c7c635587feb459 if the embed above doesn’t work.
Read More – Analyzing the Restaurants in top 10 US cities
Running the Scraper
Assuming you named the script tripadvisor_scraper.py. If you type in the script name in a command prompt or terminal with an -h
python tripadvisor_scraper.py -h usage: tripadvisor_scraper.py [-h] checkin_date checkout_date sort locality positional arguments: checkin_date Hotel Check In Date (Format: YYYY/MM/DD checkout_date Hotel Chek Out Date (Format: YYYY/MM/DD) sort available sort orders are : priceLow - hotels with lowest price, distLow : Hotels located near to the search center, recommended: highest rated hotels based on traveler reviews, popularity :Most popular hotels as chosen by Tipadvisor users locality Search Locality optional arguments: -h, --help show this help message and exit
Run it using python with arguments for the locality, sort order, check-in and check-out dates in YYYY/MM/DD format.
For an example – finding hotels in Boston for 2017-Jan-01 to 2017-Jan-02, sorted by popularity.
python tripadvisor_scraper.py "2017/01/01" "2017/01/02" "popularity" "boston"
This will create a CSV file called tripadvisor_data.csv in the same folder as the script.
Here is some sample data extracted from TripAdvisor for the command above.
You can download the code at https://gist.github.com/scrapehero/1c425fdf290144cd4c7c635587feb459
Let us know in comments how this scraper worked for you.
Part 2 can be found here How to scrape Tripadvisor.com Hotel Details using Python and LXML
Known Limitations
This code should work for grabbing the first page of results for most cities. However, if you want to scrape for thousands of pages there are some important things you should be aware of and you can read about them at Scalable do-it-yourself scraping – How to build and run scrapers on a large scale and How to prevent getting blacklisted while scraping .
If you need some professional help with scraping complex websites like TripAdvisor let us know by filling up the form below.
Tell us about your complex web scraping projects
Turn the Internet into meaningful, structured and usable data
Disclaimer: Any code provided in our tutorials is for illustration and learning purposes only. We are not responsible for how it is used and assume no liability for any detrimental usage of the source code. The mere presence of this code on our site does not imply that we encourage scraping or scrape the websites referenced in the code and accompanying tutorial. The tutorials only help illustrate the technique of programming web scrapers for popular internet websites. We are not obligated to provide any support for the code, however, if you add your questions in the comments section, we may periodically address them.
Responses
Thanks for helping me getting used with Python, this script is working well! The only problem i get is prices are printed incorrect and i can’t seem to solve the problem:
Example:
price_per_night
€161*
€318*
€139*
I’m in Tripadvisor europe so i’m getting Euro prices instead of dollar.
Thanks in advance!
Hi guys. This is really helpful. Do you by any chance have a scraper for the actual text of the reviews? Im working on a text mining Project for a specific Hotel
Thanks a lot
How can get all the hotels. This is giving me first page of results. Plz help.
Hi.This is really helpful. Many thanks.
Is it possible to explain about the form_data? I need to change them to adjust to my needs.
Hello,
I am a web developer and I happen to scratch web with other API. I would like to learn how to do it with python 2.7 that I installed and also pip except that I have trouble installing LXML because the download lxml-4.1.1-cp27-cp27m-win32.whl (3.2mb) n did not succeed and this sends me a message Exception:
Traceback (most recent call last):
i start in python and i would really like to help and many thanks
Did you try looking into this link here – http://lxml.de/2.2/installation.html
You can download easy_install from here – http://peak.telecommunity.com/DevCenter/EasyInstall and then do a simple
easy_install easy_install lxml
If this didn’t work can you paste the full traceback here ?
Hellom I’m getting “error: unrecognized arguments: Boston”
from the updated code, what could it mean?
Nevermind, works like a charm, thanks for sharing
Is posible get the image of the hotel?
Thank you for this artcile and code, I am not able to scrap data : Installation Ok – URL found Ok – Parsing Data Ok – tripadvisor_data.csv Empty (only first line).
I tried with different cities for different dates.
I am also getting warning :
/usr/local/lib/python2.7/dist-packages/urllib3/connectionpool.py:858: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecureRequestWarning)
I think my code has been blocked by tripadvisor or i have been blacklisted. Now , is there any alternative
Mine too
Hi, how would we iterate the to the all pages and get the list of all hotels?
The tutorials are intended to provide a starting point for learning and making advanced enhancements. The next step to learn would be pagination and is a great exercise to learn Python
Hi,
I am try to scrape the following website for the list of all the hotels and my code is as follows
–– coding: utf-8 ––
from time import sleep
import scrapy
from selenium import webdriver
from scrapy.selector import Selector
from scrapy.http import Request
from selenium.common.exceptions import NoSuchElementException
class DineoutRestaurantSpider(scrapy.Spider):
name = ‘dineout_restaurant’
allowed_domains = [‘dineout.co.in/bangalore-restaurants?search_str=’]
start_urls = [‘http://dineout.co.in/bangalore-restaurants?search_str=’]
In the above code when i yield the request the callback=self.parse is not getting called as the function is not called and it is only called at the end of the program.
HI,
I tried out your code, but the prices are not reflecting. I tried debugging the issue and found prices dont seem to be populated in the response text from the website. When I am checking the source in the actual webpage in chrome it is showing up, but not in the response text. Please advise
Hi Ventura, Thanks for pointing this out, and taking the time to debug :+1: It seems like Tripadvisor has made some alterations to its website, to have to price show up only when a real browser is used ( execute javascript). We will rewrite this tutorial or modify our code to fix this.
Meanwhile, you could use selenium or puppeteer for this. Here is something that could help – https://www.scrapehero.com/tutorial-web-scraping-hotel-prices-using-selenium-and-python/
Thank you so much. This is very helpful.
The original code doesn’t work with my system somehow and I have made below changes according to error info. Finally it works.
Below are my summary, in case anyone has encountered the same error.
SyntaxError: Missing parentheses in call to ‘print’. Did you mean print(“Scraper Inititated for Locality:%s”%locality)?
Solution:
Add () for all print element
for example
print “Writing to output file tripadvisor_data.csv” ->
print(“Writing to output file tripadvisor_data.csv”)
price_per_night = ”.join(raw_hotel_price_per_night).encode(‘utf-8’).replace(‘\n’,”) if raw_hotel_price_per_night else None
TypeError: a bytes-like object is required, not ‘str’
Solution:
price_per_night = ”.join(raw_hotel_price_per_night).encode(‘utf-8’).replace(‘\n’,”) ->
price_per_night = ”.join(raw_hotel_price_per_night).encode(‘utf-8’).decode().replace(‘\n’,”)
3.TypeError: write() argument must be str, not bytes
Solution:
with open(‘tripadvisor_data.csv’,’b’) ->
with open(r’C:\Users\Python_workspace\tripadvisor_data.csv’,’wb’)
My system:
Python 3.7.0b4 (v3.7.0b4:eb96c37699, May 2 2018, 19:02:22) [MSC v.1913 64 bit (AMD64)] on win32
Thanks for this, figured out the first one on my own but really thankful to have your help on the other too.
Thanks for posting this! However, I can’t get the code to work:
Scraper Inititated for Locality:%s
Traceback (most recent call last):
File “tripadvisor_scraper.py”, line 138, in
data = parse(locality, checkin_date, checkout_date, sort)
File “tripadvisor_scraper.py”, line 14, in parse
print(“Scraper Inititated for Locality:%s”) % locality
TypeError: unsupported operand type(s) for %: ‘NoneType’ and ‘str’
What should I do?
Cheers
Could you please share the command you used to run the script? Here is a sample command to run the script –
python tripadvisor_scraper.py 2018/11/2 2018/11/3 priceLow boston
What would the URL need to be changed to in order to get info for “Restaurants” and “Things to do”? I’ve been playing around for it for awhile but can’t seem to a correct ‘ur’ key back. Thanks!
*geo-url
Why your “üguests” is not working ? I am changing it to 3 but it is showing results for only 2
Comments are closed.