本文整理汇总了Python中juliabox.cloud.Compute.get_alias_hostname方法的典型用法代码示例。如果您正苦于以下问题:Python Compute.get_alias_hostname方法的具体用法?Python Compute.get_alias_hostname怎么用?Python Compute.get_alias_hostname使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类juliabox.cloud.Compute
的用法示例。
在下文中一共展示了Compute.get_alias_hostname方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setup_instance_config
# 需要导入模块: from juliabox.cloud import Compute [as 别名]
# 或者: from juliabox.cloud.Compute import get_alias_hostname [as 别名]
def setup_instance_config(self, profiles=('default',)):
for profile in profiles:
profile_path = '.ipython/profile_' + profile
profile_path = os.path.join(self.disk_path, profile_path)
if not os.path.exists(profile_path):
continue
nbconfig = os.path.join(profile_path, 'ipython_notebook_config.py')
wsock_cfg = "c.NotebookApp.websocket_url = '" + JBoxVol.NOTEBOOK_WEBSOCK_PROTO + \
Compute.get_alias_hostname() + "'\n"
JBoxVol.replace_in_file(nbconfig, "c.NotebookApp.websocket_url", wsock_cfg)
示例2: get
# 需要导入模块: from juliabox.cloud import Compute [as 别名]
# 或者: from juliabox.cloud.Compute import get_alias_hostname [as 别名]
def get(self):
args = self.get_argument('m', default=None)
if args is not None:
self.log_debug("setting cookies")
self.unpack(args)
self.set_status(status_code=204)
self.finish()
else:
args = self.pack()
url = "//" + Compute.get_alias_hostname() + "/jboxcors/?m=" + args
self.log_debug("redirecting to " + url)
self.redirect(url)