1 Star 6 Fork 3

ichigo250/Sigil插件模拟环境包

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example1.py 965 Bytes
一键复制 编辑 原始数据 按行查看 历史
ichigo250 提交于 2023-05-22 20:45 . v0.1.0
import re
def run(bk):
# EPUB临时工作目录
print("EBOOK_ROOT:\n"+bk._w.ebook_root,end="\n\n")
# 修改文件测试
text = ""
for mid,href in bk.text_iter():
text = bk.readfile(mid)
text = re.sub("<p>.*?</p>","<p>XXXXXXXXXXXXXXXXXXX</p>",text)
bk.writefile(mid,text)
# 删除manifest文件
text = bk.readfile("Section0001.xhtml")
bk.deletefile("Section0001.xhtml")
# 添加文件测试
bk.addfile("addedfile.xhtml","addedfile.xhtml",text)
# 更新spine节点
newspine = [(id,None) for id,href in bk.text_iter()]
bk.setspine(newspine)
# 删除非 manifest 文件
for bkpath in bk.other_iter():
if bkpath.lower().endswith(("mimetype",".opf",".xml")):
continue
bk.deleteotherfile(bkpath)
if __name__ == "__main__":
from sigil_env import Ebook
epub_src = "test.epub"
bk = Ebook(epub_src)
run(bk)
bk.save_as("test_repack.epub")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ichigo250/sigil_env.git
git@gitee.com:ichigo250/sigil_env.git
ichigo250
sigil_env
Sigil插件模拟环境包
master

搜索帮助