A collection of handy Python automation scripts built just for fun — small utilities that save repetitive clicks and busywork.
This repo is a grab-bag of lightweight Python utilities for everyday tasks: extracting contact info from text and merging PDFs. Each script is self-contained and easy to read — great as quick automation references.
| Script | Description |
|---|---|
EP.py |
Email & phone number extractor — scans text/files and pulls out email addresses and phone numbers |
mergepdf.py |
Merge PDFs — combine multiple PDF files into a single document |
- Python 3.7+
re— regex extraction (emails/phones)PyPDF2/pypdf— PDF merging
# Email & phone extractor
python EP.py <input_file>
# Merge PDFs
python mergepdf.py file1.pdf file2.pdf ... output.pdf