python连接mongodb操作数据示例(mongodb数据库配置类)
时间:2023-05-01 17:21:17
一、相关代码
数据库配置类 MongoDBConn.py
#encoding=utf-8
'''
Mongo Conn连接类
'''
import pymongo
class DBConn:
conn = None
servers = "mongodb://localhost:27017"
def connect(self):
self.conn = pymongo.Connection(self.servers)
def close(self):
return self.conn.disconnect()
def getConn(self):
return self.conn
MongoDemo.py 类
#encoding=utf-8
'''
Mongo操作Demo
Done:
'''
import MongoDBConn
dbconn = MongoDBConn.DBConn()
conn = None
lifeba_users = None
def process():
#建立连接
dbconn.connect()
global conn
conn = dbconn.getConn()
#列出server_info信息
print conn.server_info()
#列出全部数据库
databases = conn.database_names()
print databases
#删除库和表
dropTable()
#添加数据库lifeba及表(collections)users
createTable()
#插入数据
insertDatas()
#更新数据
updateData()
#查询数据
queryData()
#删除数据
deleteData()
#释放连接
dbconn.close()
def insertDatas():
datas=[{"name":"steven1","realname":"测试1","age":25},
{"name":"steven2","realname":"测试2","age":26},
{"name":"steven1","realname":"测试3","age":23}]
lifeba_users.insert(datas)
def updateData():
'''只修改最后一条匹配到的数据
第3个参数设置为True,没找到该数据就添加一条
第4个参数设置为True,有多条记录就不更新
'''
lifeba_users.update({'name':'steven1'},{'$set':{'realname':'测试1修改'}}, False,False)
def deleteData():
lifeba_users.remove({'name':'steven1'})
def queryData():
#查询全部数据
rows = lifeba_users.find()
printResult(rows)
#查询一个数据
print lifeba_users.find_one()
#带条件查询
printResult(lifeba_users.find({'name':'steven2'}))
printResult(lifeba_users.find({'name':{'$gt':25}}))
def createTable():
'''创建库和表'''
global lifeba_users
lifeba_users = conn.lifeba.users
def dropTable():
'''删除表'''
global conn
conn.drop_database("lifeba")
def printResult(rows):
for row in rows:
for key in row.keys():#遍历字典
print row[key], #加, 不换行打印
print ''
if __name__ == '__main__':
process()
标签:python,mongodb
0
投稿
猜你喜欢
一文看懂JSONP原理和应用
2024-04-23 09:10:47
详解Python字符串切片
2021-09-10 05:10:43
python爬虫爬取淘宝商品比价(附淘宝反爬虫机制解决小办法)
2021-11-14 06:16:40
Python自定义进程池实例分析【生产者、消费者模型问题】
2023-05-20 12:20:02
pandas学习之df.set_index的具体使用
2021-11-12 07:35:20
Python selenium模拟网页点击爬虫交管12123违章数据
2023-09-26 18:30:37
详细介绍Python中的set集合
2023-07-26 07:35:03
在Python中处理日期和时间的基本知识点整理汇总
2021-05-13 07:12:14
基于Python的接口自动化读写excel文件的方法
2023-09-04 00:25:10
Python中的jquery PyQuery库使用小结
2023-05-27 11:08:15
Python办公自动化从Excel中计算整理数据并写入Word
2021-12-19 03:22:35
详解Python Qt的窗体开发的基本操作
2021-03-28 00:58:12
Golang实现AES对称加密的过程详解
2024-01-31 06:44:22
python实现从尾到头打印单链表操作示例
2021-12-20 00:09:32
javascript二维数组转置实例
2023-08-25 07:11:14
python实现在sqlite动态创建表的方法
2021-08-05 13:54:10
sql server 带列名导出至excel
2008-11-25 11:07:00
python进程间通信Queue工作过程详解
2021-04-12 01:15:58
超好玩的"隔空操物"通过Python MediaPipe库实现
2023-06-04 23:21:09
pytorch tensor int型除法出现的问题
2021-05-18 13:18:17