import fitz from tqdm import tqdm def pdf2html(input_path,html_path): doc = fitz.open(input_path) for page in tqdm(doc):...
確定! 回上一頁