码迷,mamicode.com
首页 > 数据库 > 详细

Python和Mongodb

时间:2017-03-24 15:50:32      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:utf-8   cal   ica   cat   数据库连接   数据库   password   auth   word   

  

定义好链接DB类

# -*- coding: UTF-8 -*-
from pymongo import MongoClient


# 数据库连接
class MongoDB(object):
    def __init__(self, host=localhost, port=27017, database=xunfeng, username=‘‘, password=‘‘):
        self.host = host
        self.port = port
        self.database = database
        self.conn = MongoClient(self.host, self.port)
        self.coll = self.conn[self.database]
        self.coll.authenticate(username, password)

 

Python和Mongodb

标签:utf-8   cal   ica   cat   数据库连接   数据库   password   auth   word   

原文地址:http://www.cnblogs.com/bayueman/p/6611638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!