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: about 2 months ago
JSON representation
PDFViewer is a GUI tool, written using python3 and tkinter, which lets you view PDF documents.
- Host: GitHub
- URL: https://github.com/naivehobo/pdfviewer
- Owner: naiveHobo
- License: mit
- Created: 2018-11-09T18:54:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-04T06:07:45.000Z (almost 4 years ago)
- Last Synced: 2025-04-19T01:31:31.104Z (2 months ago)
- Topics: pdf, pdf-document, pdf-document-processor, pdf-files, pdf-viewer, tkinter, tkinter-graphic-interface, tkinter-gui, tkinter-library, tkinter-python
- Language: Python
- Size: 152 KB
- Stars: 81
- Watchers: 1
- Forks: 27
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-ocrgit clone https://github.com/naiveHobo/pdfviewer.git
cd pdfviewer/
sudo pip3 install .
```## Instructions
To start PDFViewer:
```
from tkinter import Tk
from pdfviewer import PDFViewerroot = Tk()
PDFViewer()
root.mainloop()
```## Dependencies
```
python3
tkinter
pdfplumber
PyPDF2
pytesseract
tesseract-ocr
Pillow
```