本文整理汇总了Python中util.config.Config.font_repo方法的典型用法代码示例。如果您正苦于以下问题:Python Config.font_repo方法的具体用法?Python Config.font_repo怎么用?Python Config.font_repo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类util.config.Config
的用法示例。
在下文中一共展示了Config.font_repo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from util.config import Config [as 别名]
# 或者: from util.config.Config import font_repo [as 别名]
def __init__(self, record):
self._name = record['name']
self._basename = record['basename']
# font records usually only have a remote or a local version
# as the version is eventually compared numerically
# they are initialized with zero-string
self._local_version = record.get('local_version', '0')
self._remote_version = record.get('remote_version', '0')
# existing font files in repo
self._otf_files = []
self._svg_files = [] # svg includes woff files
# actions to be performed
self._actions = {}
# determine files and paths
self.archive = os.path.join(Config.font_repo(), "{}.zip".format(self._basename))
self.font_dir = os.path.join(Config.font_repo(), self._basename)
self.otf_dir = os.path.join(self.font_dir, 'otf')
self.svg_dir = os.path.join(self.font_dir, 'svg')