我的CSDN | 我的51CTO
摘要: # coding:utf-8 """ mongo操作工具 """ from pymongo import MongoClient MONGO_HOST, MONGO_PORT, MONGO_DB, MONGO_TABLE = '127.0.0.1', '27017', 'test_db', 'teat_tb' class MongoUtils: """ 链接mongoDB,... 阅读全文
posted @ 2017-11-20 14:33 smileyes 阅读(1574) 评论(0) 推荐(0) 编辑