1 Star 1 Fork 0

BC/weibo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mongo.py 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
EricLULU 提交于 2018-09-04 11:09 . 微博爬虫
import pymongo
import config
class Mongo(object):
def __init__(self):
self.client = pymongo.MongoClient("mongodb://localhost:27017")
self.db = self.client.weibo
self.weibo = self.db.weibo #默认数据库,用于存储所有的人员
def save(self, data):
"""
存储到数据库
"""
if data.get('page_id', False): #将所有的人存储到数据库
self.weibo.save(data)
collection = self.db[data['collection']]
del data['collection']
if collection.save(data):
pass
else:
print("存储失败")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/icepear_eric/weibo.git
git@gitee.com:icepear_eric/weibo.git
icepear_eric
weibo
weibo
master

搜索帮助