Python使用MONGODB入门实例

WBOY
Release: 2016-06-10 15:12:49
Original
955 people have browsed it

本文实例讲述了Python使用MONGODB的方法。分享给大家供大家参考。具体如下:

1. 启动mongodb

mongod --dbpath d:\db
Copy after login

2. 启动为系统应用

mongod --dbpath d:\db --install --logpath d:\db\log.txt
Copy after login

3. 在系统管理上删除mongodb

sc delete Mongodb
Copy after login

4. 安装pymongo

easy_install pymongo
Copy after login

5. 简单的测试

from pymongo import Connection
conn = Connection("localhost")
db = conn.foo
test = {"name":"imouren"}
db.foo.save(test)
cursor = db.foo.find()
for i in cursor:
  print i
Copy after login

希望本文所述对大家的Python程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template