我正在为Python scrapy编写自己的管道:
from scrapy.exceptions import NotConfigured
from scrapy.exceptions import DropItem
import pymssql
from slybot.item import create_item_version
class SQLStore(object):
def __init__(self):
self.conn = pymssql.connect(host='XXXXXX', user='sa', password='1timep', database='DBSample')
self.cursor = self.conn.cursor()
#log data to json file
def process_item(self, item, spider):
try:
self.cursor.execute("INSERT INTO Movie(Description, Location,Title) VALUES (%s, %s, %s)", (item['Description'], item['Location'], item['Title']))
self.conn.commit()
except pymssql.Error, e:
print ("error")
return item
我正在尝试将值插入SQL Server。
以下是我的蜘蛛设置:
ITEM_PIPELINES = {'slybot.dupefilter.SQLStore' : 100}
工作正常。当我在Scrapyd提交我的蜘蛛时,我看到下面的日志文件
2015-01-19 16:07:57+0530 [scrapy] INFO: Enabled item pipelines: SQLStore
从日志文件中我看到我的蜘蛛正在使用SQLStore
pipline。
但值未加载到SQL Server 。我能够以json格式查看日志文件中的内容。
出了什么问题。问题是什么?
任何人都可以帮助我吗?谢谢。
答案 0 :(得分:3)
代码没有正确缩进。 process_item
与SQLStore
类定义处于同一级别,因此它不是类的方法,永远不会被调用。缩进它:
import pymssql
from slybot.item import create_item_version
class SQLStore(object):
def __init__(self):
self.conn = pymssql.connect(host='XXXXXX', user='sa', password='1timep', database='DBSample')
self.cursor = self.conn.cursor()
def process_item(self, item, spider):
try:
self.cursor.execute("INSERT INTO Movie(Description, Location,Title) VALUES (%s, %s, %s)",
(item['Description'], item['Location'], item['Title']))
self.conn.commit()
except pymssql.Error, e:
print ("error")
return item