-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from felipealfonsog/development
Add files via upload
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
▀▀█▀▀ █▀▀ █▀▀█ █▀▄▀█ ▒█▀▀█ ▒█▀▀▄ ▒█▀▀▀ ▒█░░▒█ ░▀░ █▀▀ █░░░█ █▀▀ █▀▀█ | ||
░▒█░░ █▀▀ █▄▄▀ █░▀░█ ▒█▄▄█ ▒█░▒█ ▒█▀▀▀ ░▒█▒█░ ▀█▀ █▀▀ █▄█▄█ █▀▀ █▄▄▀ | ||
░▒█░░ ▀▀▀ ▀░▀▀ ▀░░░▀ ▒█░░░ ▒█▄▄▀ ▒█░░░ ░░▀▄▀░ ▀▀▀ ▀▀▀ ░▀░▀░ ▀▀▀ ▀░▀▀ | ||
************************************************* | ||
TermPDF Viewer - view and navigate PDF files within the terminal. | ||
************************************************* | ||
* Simple: TermPDF Viewer is a Python program that enables users to | ||
view and navigate PDF files directly within the terminal. | ||
************************************************* | ||
* Developed and engineered by: | ||
* Felipe Alfonso Gonzalez <[email protected]> | ||
* Computer Science Engineer | ||
* Chile | ||
************************************************* | ||
* Prerequisites: | ||
* Python 3.x: The program is written in Python and requires a Python 3.x interpreter to run. | ||
* PyMuPDF: A Python binding for the MuPDF library, used to handle PDF file rendering and interaction. | ||
* You can install it using pip: pip install PyMuPDF | ||
* Make sure to include the appropriate model or adapt it for your needs. | ||
************************************************* | ||
* How to run the TermPDF Viewer: | ||
* Clone the TermPDF Viewer repository from GitHub. | ||
* Navigate to the project directory: | ||
* cd TermPDF-Viewer | ||
* Install PyMuPDF library (if not already installed): | ||
pip install PyMuPDF | ||
* Run the TermPDF Viewer: | ||
* python termpdf.py | ||
* The TermPDF Viewer will start, allowing you to: | ||
* Scan for PDF files in the current directory. | ||
* Select a PDF file to view by entering its number. | ||
* View the PDF with options to move back, forward, or return to the main menu. | ||
* Quit and return to the main menu. | ||
* To exit the TermPDF Viewer, use 'q' in the main menu. | ||
* | ||
************************************************* | ||
* Important Notes: | ||
* - The application has been tested on Linux and macOS. | ||
* - For Windows, additional configurations may be required. | ||
* - Make sure to fulfill the prerequisites before running the application. | ||
* - For more information, please refer to the project documentation. | ||
************************************************* | ||
*/ | ||
|
||
|
||
// pkgver=0.0.3.4 | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
int main() { | ||
system("python ./TermPDFViewer-v.0.0.3.4/src/termpdf.py"); | ||
return 0; | ||
} |