Home  >  Article  >  Backend Development  >  Python使用MONGODB入门实例

Python使用MONGODB入门实例

WBOY
WBOYOriginal
2016-06-10 15:12:49908browse

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

1. 启动mongodb

mongod --dbpath d:\db

2. 启动为系统应用

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

3. 在系统管理上删除mongodb

sc delete Mongodb

4. 安装pymongo

easy_install pymongo

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

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

Statement:
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