本文整理汇总了Python中dynamo3.DynamoDBConnection.connect_to_host方法的典型用法代码示例。如果您正苦于以下问题:Python DynamoDBConnection.connect_to_host方法的具体用法?Python DynamoDBConnection.connect_to_host怎么用?Python DynamoDBConnection.connect_to_host使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dynamo3.DynamoDBConnection
的用法示例。
在下文中一共展示了DynamoDBConnection.connect_to_host方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: initialize
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def initialize(self, region='us-west-1', host='localhost', port=8000,
access_key=None, secret_key=None, config_dir=None):
""" Set up the repl for execution. """
# Tab-complete names with a '-' in them
import readline
delims = set(readline.get_completer_delims())
if '-' in delims:
delims.remove('-')
readline.set_completer_delims(''.join(delims))
self._conf_dir = (config_dir or
os.path.join(os.environ.get('HOME', '.'), '.config'))
self.session = botocore.session.get_session()
if access_key:
self.session.set_credentials(access_key, secret_key)
if region == 'local':
conn = DynamoDBConnection.connect_to_host(host, port,
session=self.session)
else:
conn = DynamoDBConnection.connect_to_region(region, self.session)
self.engine = FragmentEngine(conn)
conf = self.load_config()
display_name = conf.get('display')
if display_name is not None:
self.display = DISPLAYS[display_name]
else:
self.display = get_default_display()
self.formatter = SmartFormat(pagesize=conf.get('pagesize', 1000),
width=conf.get('width', 80))
for line in conf.get('autorun', []):
six.exec_(line, self.engine.scope)
示例2: do_use
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def do_use(self, region, host='localhost', port=8000):
"""
Switch the AWS region
You may also specify 'use local host=localhost port=8000' to use the
DynamoDB Local service
"""
if region == 'local':
conn = DynamoDBConnection.connect_to_host(
host, port, session=self.session)
else:
conn = DynamoDBConnection.connect_to_region(region, self.session)
self.engine.connection = conn
示例3: test_connect_to_host_without_session_old
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def test_connect_to_host_without_session_old(self):
""" Can connect to a dynamo host without passing in a session """
conn = DynamoDBConnection.connect_to_host(access_key='abc',
secret_key='12345')
self.assertIsNotNone(conn.host)
示例4: connect_to_host
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def connect_to_host(self, **kwargs):
""" Connect to a specific host """
self.dynamo = DynamoDBConnection.connect_to_host(**kwargs)
示例5: connect_to_host
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def connect_to_host(self, *args, **kwargs):
""" Connect the engine to a specific host """
self.connection = DynamoDBConnection.connect_to_host(*args, **kwargs)
示例6: test_connect_to_host_without_session
# 需要导入模块: from dynamo3 import DynamoDBConnection [as 别名]
# 或者: from dynamo3.DynamoDBConnection import connect_to_host [as 别名]
def test_connect_to_host_without_session(self):
""" Can connect to a dynamo host without passing in a session """
conn = DynamoDBConnection.connect_to_host()
self.assertIsNotNone(conn.host)