Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/naivehobo/pdfviewer
- Owner: naiveHobo
- License: mit
- Created: 2018-11-09T18:54:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-04T06:07:45.000Z (over 3 years ago)
- Last Synced: 2024-11-02T02:33:33.299Z (3 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: 78
- Watchers: 2
- Forks: 26
- 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
```