“Comment convertir PDF en mot en utilisant Python” Réponses codées

Comment convertir PDF en mot en utilisant Python

# 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

Convertir PDF en Doc Word dans Python

pip install aspose-words
Craig Parker

Réponses similaires à “Comment convertir PDF en mot en utilisant Python”

Questions similaires à “Comment convertir PDF en mot en utilisant Python”

Plus de réponses similaires à “Comment convertir PDF en mot en utilisant Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code