Heim  >  Artikel  >  Backend-Entwicklung  >  Python使用MONGODB入门实例

Python使用MONGODB入门实例

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

本文实例讲述了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程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn