add basic spider template

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40398
This commit is contained in:
Daniel Grana 2008-11-24 10:17:32 +00:00
parent 0938984de0
commit c7b3fae97a
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
from scrapy.spider import BaseSpider
class $classname(BaseSpider):
domain_name = "$site"
start_urls = (
'http://www.$site/',
)
def parse(self, response):
return ()
SPIDER = $classname()