8 Star 60 Fork 23

Gitee 极速下载/Calibre

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/kovidgoyal/calibre
克隆/下载
run-local 778 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
import importlib
import os
import sys
sys.run_local = os.path.abspath(__file__)
base = os.path.dirname(sys.run_local)
src = os.path.join(base, 'src')
if src not in sys.path:
sys.path.insert(0, src)
sys.resources_location = os.path.join(base, 'resources')
sys.extensions_location = os.path.join(src, 'calibre', 'plugins')
entry_point = sys.argv[1]
del sys.argv[1]
del src
del base
for ep in importlib.import_module('calibre.linux').entry_points.values():
for line in ep:
q, spec = (x.strip() for x in line.split('='))
if q == entry_point:
mod, func = spec.split(':')
m = importlib.import_module(mod)
sys.exit(getattr(m, func)())
raise SystemExit('No entry point named: {}'.format(entry_point))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/Calibre.git
git@gitee.com:mirrors/Calibre.git
mirrors
Calibre
Calibre
master

搜索帮助