简体   繁体   中英

How to convert PDF to HTML using pdf2htmlEX and Python?

How to convert PDF to HTML using pdf2htmlEX and Python?

Just use the subprocess module

import subprocess
subprocess.call("pdf2htmlEX /path/to/foobar.pdf", shell=True)

It calls the executable pdf2htmlEX . It must be somwhere in your $PATH , or you can put the absolute path in the call

If you want to give path of file separately instead of giving it in.call function you can do this:

  import subprocess
 >> path = "/home/temp/abc.pdf"
 >> subprocess.call(["pdf2htmlEX" ,path], shell=False)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM