Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/naivehobo/pdfviewer

PDFViewer is a GUI tool, written using python3 and tkinter, which lets you view PDF documents.
https://github.com/naivehobo/pdfviewer

pdf pdf-document pdf-document-processor pdf-files pdf-viewer tkinter tkinter-graphic-interface tkinter-gui tkinter-library tkinter-python

Last synced: 3 months ago
JSON representation

PDFViewer is a GUI tool, written using python3 and tkinter, which lets you view PDF documents.

Awesome Lists containing this project

README

        

# PDFViewer
PDFViewer is a GUI tool, written using python3 and tkinter, which lets you view PDF documents.




## Installation
To install PDFViewer along with the dependencies:
```
sudo apt install python3-tk
sudo apt install tesseract-ocr

git clone https://github.com/naiveHobo/pdfviewer.git

cd pdfviewer/

sudo pip3 install .
```

## Instructions
To start PDFViewer:
```
from tkinter import Tk
from pdfviewer import PDFViewer

root = Tk()
PDFViewer()
root.mainloop()
```

## Dependencies

```
python3
tkinter
pdfplumber
PyPDF2
pytesseract
tesseract-ocr
Pillow
```