From 31be2b258563abf2aaace82f09cc90559d2765b9 Mon Sep 17 00:00:00 2001 From: Hasnain Lakhani Date: Tue, 13 May 2014 22:18:32 -0700 Subject: [PATCH] Fix typo in scrape.rst --- docs/scenarios/scrape.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scenarios/scrape.rst b/docs/scenarios/scrape.rst index 69c6e349f..8533919d8 100644 --- a/docs/scenarios/scrape.rst +++ b/docs/scenarios/scrape.rst @@ -20,7 +20,7 @@ lxml and Requests `lxml `_ is a pretty extensive library written for parsing XML and HTML documents really fast. It even handles messed up tags. We will also be using the `Requests `_ -module instead of the already built-in urlib2 due to improvements in speed and +module instead of the already built-in urllib2 module due to improvements in speed and readability. You can easily install both using ``pip install lxml`` and ``pip install requests``.