代码拉取完成,页面将自动刷新
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")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。