user1966421
user1966421

Reputation: 173

How to convert PDF to HTML using pdf2htmlEX and Python?

How to convert PDF to HTML using pdf2htmlEX and Python?

Upvotes: 4

Views: 16997

Answers (2)

Falcon
Falcon

Reputation: 77

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)

Upvotes: 0

Thorsten Kranz
Thorsten Kranz

Reputation: 12755

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

Upvotes: 1

Related Questions