当前位置: 首页>>代码示例>>Python>>正文


Python FilePath.format方法代码示例

本文整理汇总了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')
开发者ID:ClusterHQ,项目名称:build.clusterhq.com,代码行数:13,代码来源:fabfile.py

示例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)
开发者ID:OpenSorceress,项目名称:braid,代码行数:15,代码来源:equivs.py


注:本文中的twisted.python.filepath.FilePath.format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。