本文整理汇总了Python中motor.MotorClient方法的典型用法代码示例。如果您正苦于以下问题:Python motor.MotorClient方法的具体用法?Python motor.MotorClient怎么用?Python motor.MotorClient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类motor
的用法示例。
在下文中一共展示了motor.MotorClient方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import motor [as 别名]
# 或者: from motor import MotorClient [as 别名]
def __init__(self):
base_dir = os.path.dirname(__file__)
settings = {
'cookie_secret' : 'A231EJRJ213OEJWNE',
'login_url' : '/login',
'template_path' : os.path.join(base_dir, 'templates'),
'static_path' : os.path.join(base_dir, 'static'),
'debug' : True,
'xsrf_cookies' : False,
}
tornado.web.Application.__init__(self, [
tornado.web.url(r"/", MainHandler, name="main"),
], **settings)
self.db = motor.MotorClient('localhost').testdb
示例2: __init__
# 需要导入模块: import motor [as 别名]
# 或者: from motor import MotorClient [as 别名]
def __init__(self):
base_dir = os.path.dirname(__file__)
handler_list = handlers.get_handlers
settings = {
'cookie_secret' : 'A32IOJDSOP2PPAAA11',
'login_url' : '/login',
'template_path' : os.path.join(base_dir, 'templates'),
'static_path' : os.path.join(base_dir, 'static'),
'debug' : True,
'xsrf_cookies' : False,
}
tornado.web.Application.__init__(self, handlers=handler_list, **settings)
self.db = motor.MotorClient('localhost').testdb
示例3: post
# 需要导入模块: import motor [as 别名]
# 或者: from motor import MotorClient [as 别名]
def post(self):
db = motor.MotorClient('localhost').testdb
getusername = self.get_argument('username')
getpassword = self.get_argument('password')
check = yield db.userinfo.find_one(dict(username=getusername))
logging.warning(check)
if check == None :
hashed_pw = get_hash(getpassword)
insert_check = yield db.userinfo.insert(dict(username=getusername,
password=hashed_pw))
self.redirect("/")
else : self.redirect("/register")
示例4: load
# 需要导入模块: import motor [as 别名]
# 或者: from motor import MotorClient [as 别名]
def load():
for name, config in MongoDB._cofing.items():
MongoDB._conns[name] = motor.MotorClient(max_pool_size=128, tz_aware=True, **config)