Scrapy Pipeline to Parse
问题 I made a pipeline to put scrapy data to my Parse Backend PARSE = 'api.parse.com' PORT = 443 However, I can't find the right way to post the data in Parse. Because everytime it creates undefined objects in my Parse DB. class Newscrawlbotv01Pipeline(object): def process_item(self, item, spider): for data in item: if not data: raise DropItem("Missing data!") connection = httplib.HTTPSConnection( settings['PARSE'], settings['PORT'] ) connection.connect() connection.request('POST', '/1/classes