How to use XPath In Python

XPath works very much like a traditional file system

Diagram of a File System

To access file 1,

C:/File1

Similarly, To access file 2,

C:/Documents/User1/File2

Now consider a simple web page,

HTML




<html>
   <head>
       <title>My page</title>
   </head>
   <body>
       <h2>Welcome to my page<h2>
      <a href="www.example.com">page</a>
        
<p>This is the first paragraph</p>
 
       <h2>Hello World</h2>
   </body>
</html>


This can be represented as an XML Tree as follows,

XML Tree of the Webpage

For getting the text inside the <p> tag,

XPath : html/body/p/text()
Result : This is the first paragraph

For getting a value inside the <href> attribute in the anchor or <a> tag,

XPath : html/body/a/@href
Result: www.example.com

For getting the value inside the second <h2> tag,

XPath : html/body/h2[2]/text()
Result: Hello World

To find the XPath for a particular element on a page:

  • Right-click the element in the page and click on Inspect.
  • Right click on the element in the Elements Tab.
  • Click on copy XPath.

Web Scraping using lxml and XPath in Python

In this article, we will discuss the lxml python library to scrape data from a webpage, which is built on top of the libxml2 XML parsing library written in C. When compared to other python web scraping libraries like BeautifulSoup and Selenium, the lxml package gives an advantage in terms of performance. Reading and writing large XML files takes an indiscernible amount of time, making data processing easier & much faster.

We will be using the lxml library for Web Scraping and the requests library for making HTTP requests in Python. These can be installed in the command line using the pip package installer for Python.

Getting data from an element on the webpage using lxml requires the usage of Xpaths.

Similar Reads

Using XPath

XPath works very much like a traditional file system...

Using LXML

...

Contact Us