Поиск по этому блогу

четверг, 15 декабря 2011 г.

Python MongoDb pymongo sample connect to mongoHQ server

sample connect to mongoHQ server:

from pymongo import Connection
host= 'flame.mongohq.com'
port = 27088
dbName = 'YourDatabaseName'
connection = Connection(host, port)
db = connection[dbName]
userID = 'YourNameFromReg'
pwd = 'YourPassFromReg'
db = connection[dbName]
db.authenticate(userID, pwd)
for collection in db.collection_names():
print collection

'via Blog this'

Комментариев нет:

Отправить комментарий