# PDF2TXT **Repository Path**: sse001/PDF2TXT ## Basic Information - **Project Name**: PDF2TXT - **Description**: It's a python script that convert PDF to txt using PDFMiner - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-03-31 - **Last Updated**: 2020-12-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PDF2TXT It's a python script that convert PDF to TXT using PDFMiner. There are two main functions that you can choose to use. ```python onePdfToTxt(filepath, outpath) ``` ```Python manyPdfToTxt(fileDir) ``` The first function will convert one PDF file to TXT file. And the second function will convert all PDF files in the folder to TXT files **Example** onePdfToTxt('myPDF.pdf', 'myTXT.txt') manyPdfToTxt('myPDFFolderPath')