MongoDB的连接
Posted jswrui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB的连接相关的知识,希望对你有一定的参考价值。
import pymongo
class MongoPipeline(object):
collection_name = ‘表名‘
def __init__(self, mongo_uri, mongo_db):
self.mongo_uri = mongo_uri
self.mongo_db = mongo_db
@classmethod
def from_crawler(cls, crawler):
return cls(
mongo_uri=crawler.settings.get(‘MONGO_URI‘),
mongo_db=crawler.settings.get(‘MONGO_DATABASE‘, ‘items‘)
)
def open_spider(self, spider):
self.client = pymongo.MongoClient(self.mongo_uri)
self.db = self.client[self.mongo_db]
def close_spider(self, spider):
self.client.close()
def process_item(self, item, spider):
self.db[self.collection_name].insert_one(dict(item))
return item
以上是关于MongoDB的连接的主要内容,如果未能解决你的问题,请参考以下文章