本文整理汇总了Python中twisted.python.filepath.FilePath.format方法的典型用法代码示例。如果您正苦于以下问题:Python FilePath.format方法的具体用法?Python FilePath.format怎么用?Python FilePath.format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.python.filepath.FilePath
的用法示例。
在下文中一共展示了FilePath.format方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: configure_s3cmd
# 需要导入模块: from twisted.python.filepath import FilePath [as 别名]
# 或者: from twisted.python.filepath.FilePath import format [as 别名]
def configure_s3cmd(config):
"""
Install configuration for s3cmd.
This allows the slave to upload vagrant images to S3.
"""
s3_config = FilePath(__file__).sibling('s3-config.in').getContent()
put(StringIO(s3_config.format(
aws_access_key_id=config['aws_access_key_id'],
aws_secret_access_key=config['aws_secret_access_key'],
)), '/home/buildslave/.s3cfg')
示例2: _generateControlFile
# 需要导入模块: from twisted.python.filepath import FilePath [as 别名]
# 或者: from twisted.python.filepath.FilePath import format [as 别名]
def _generateControlFile(package, provides, description=None):
"""
Generate a control file for C{package}.
@returns: the control file
@rtype: L{file}-like
"""
if description is None:
description = 'Dummy provider of %s.' % provides
template = FilePath(__file__).sibling('equivs.control').getContent()
body = template.format(package=package, provides=provides, description=description)
return StringIO(body)