“Wie man PDF mit Python in Wort umwandelt” Code-Antworten

Wie man PDF mit Python in Wort umwandelt

# credit to Stack Overflow user in the source link
# requires LibreOffice installed

import os
import subprocess

for top, dirs, files in os.walk('/my/pdf/folder'):
    for filename in files:
        if filename.endswith('.pdf'):
            abspath = os.path.join(top, filename)
            subprocess.call('lowriter --invisible --convert-to doc "{}"' # bash/shell syntax
                            .format(abspath), shell=True)
wolf-like_hunter

Konvertieren Sie PDF in Python in Word -Dokument

pip install aspose-words
Craig Parker

Ähnliche Antworten wie “Wie man PDF mit Python in Wort umwandelt”

Fragen ähnlich wie “Wie man PDF mit Python in Wort umwandelt”

Weitere verwandte Antworten zu “Wie man PDF mit Python in Wort umwandelt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen