本文整理汇总了Python中fs.osfs.OSFS.desc方法的典型用法代码示例。如果您正苦于以下问题:Python OSFS.desc方法的具体用法?Python OSFS.desc怎么用?Python OSFS.desc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fs.osfs.OSFS
的用法示例。
在下文中一共展示了OSFS.desc方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: view
# 需要导入模块: from fs.osfs import OSFS [as 别名]
# 或者: from fs.osfs.OSFS import desc [as 别名]
def view(self, archive, source_fs):
args = self.args
import tempfile
docs_output_path = os.path.join(tempfile.tempdir, '__moyadocs__')
output_fs = OSFS(docs_output_path, create=True)
out_path = output_fs.desc('/')
if args.theme is None:
from ... import docgen
theme_path = os.path.join(os.path.dirname(docgen.__file__), 'themes/default')
else:
theme_path = args.theme
theme_fs = self.get_fs(theme_path)
from ...docgen.builder import Builder
builder = Builder(source_fs, output_fs, theme_fs)
index = builder.build()
import webbrowser
webbrowser.open(index)