Skip to content

dark-teal-coder/project-python-pdf-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python PDF Tools

Metadata

Project

  • Title: Python PDF Tools
  • Difficulty:
    • Beginner
    • Intermediate
    • Advanced
  • Scale:
    • Small
    • Medium
    • Large

Repository Description

This project uses the Python library PyPDF2 to make PDF tools. When the main program is run, the user will be given the function menu with, currently, 3 options: 1.) merge PDF files, 2.) split a PDF file, and 3.) compress a PDF file. The user should put the input file(s) in the "input" folder and can obtain the output file(s) in the "output" folder.

Installation

Python Development Tools

Python Libraries

Check if you have Python installed using the command python --version, or simply, python version, in the CLI. Git-clone the project repository from Github to the local machine. Use the command py -m pip install package_name to install the necessary Python libraries. Check out pip documentation to learn more about pip install. Check the top part of the .py script file for the list of libraries required. For example, you may need requests and beautifulsoup4 libraries if you see the following lines in the top part of the script file:

import requests
from bs4 import BeautifulSoup

If pip fails to locate the relevant packages, you may find it at Python Package Index (PyPI). Use python file_name.py to run the script in a CLI. Or, use an IDE, such as VS Code, to run the script. There will usually be a [Run] button in the top right corner of the opened script file.

Credits

Contributors

References

 

1st Completion Date: Nov 26, 2024

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages