test4.py
#-*- coding: utf-8 -*-
import pymongo
import pytz
#######################################################################
# Main function
#######################################################################
if __name__ == '__main__':
# MongoDBに接続するためのclientを作成する
client = pymongo.MongoClient()
# Databaseに接続する
db = client.test
# Collectionを取得する
collection = db.tbl1
# insert()
data = {
'message': 'thank you',
'value' : 30
}
id = collection.insert(data)
print('id=%s' % (id))
print('\n')
print('find()')
documents = collection.find({'_id':id})
for doc in documents:
#print(doc)
print('%s\t%s\t%d' % (doc['_id'], doc['message'], doc['value']))
実行結果
$ python test4.py
id=59af9cdce138234fdf70d696
find()
59af9cdce138234fdf70d696 thank you 30
0 件のコメント:
コメントを投稿