Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.17 KB

README.md

File metadata and controls

51 lines (38 loc) · 1.17 KB

PDF2HTMLEX

pypdf2htmlex is a Python wrapper for the PDF2HTMLEX

Installing

pip install pypdf2htmlex

Using

making the HTML file from a pdf

import pypdf2htmlEX

pdf = pypdf2htmlEX.PDF("path-to-my-file.pdf")
pdf.to_html()
# will be generated a html file on folder path-to-my-file

setting drm

can pass True for drm parameter to convert a file to html without restrition the value is False by default

import pypdf2htmlEX

pdf = pypdf2htmlEX.PDF("path-to-my-file.pdf", drm=True)
pdf.to_html()

making HTML files from dir with various pdf

this code will make html files of all pdf in same folder 'pdfs'

import pypdf2htmlEX

pypdf2htmlEX.dir_to_html(dir_path='pdfs')

this code will make html files of all pdf in folder 'pdfs' on folder 'htmls'

import pypdf2htmlEX

pypdf2htmlEX.dir_to_html(dir_path='pdfs', dest_dir='htmls')

this code will make html files of all pdf in folder 'pdfs' on folder 'htmls' and every html file will have sequential after the name File, ex: "File_1.html", "File_2.html".

import pypdf2htmlEX

pypdf2htmlEX.dir_to_html(dir_path='pdfs', dest_dir='htmls', new_file_name='File_')