Scrapy: Difference between revisions
From charlesreid1
No edit summary |
|||
| Line 16: | Line 16: | ||
</source> | </source> | ||
=Create Project= | |||
Following the instructions [http://doc.scrapy.org/en/latest/intro/tutorial.html#intro-tutorial here], create a new project: | |||
<pre> | |||
$ scrapy startproject tutorial | |||
</pre> | |||
Revision as of 17:20, 12 May 2012
Installation
Prerequisites
You'll need to install libxml2 and libxslt to use Scrapy. Installation instructions can be found here: Libxml and libxslt
Build/Install
Scrapy can be installed by downloading the tarball, unzipping it, and doing the usual Python build/install steps:
$ python setup.py build
$ python setup.py install
Create Project
Following the instructions here, create a new project:
$ scrapy startproject tutorial