1.安装
brew update
brew install mongodb
2.启动mongo
mongod --config /usr/local/etc/mongod.conf
3.启动
mongo
4.python 链接mongo
from pymongo import MongoClient client = MongoClient('localhost',27017)
5.选择使用的数据库(以test为例)
db = client.test
collection = db.test
6.添加信息
new_mess = {'name':'Jason','Age':'35','Habit':'Singing'} collection.insert(new_mess)
7.修改信息
collection.update({"name":"Jason"},{"$set":{"name":"Jason Zhang"}})
8.删除信息
collection.remove({'Habit':"draw"})
9.查询信息
collection.find({"name":"Jason Zhang"})
然后现在就看了最近简单的操作。