Hey there! 👋
Welcome to PyScripts — a little corner of the internet where I collect all sorts of Python scripts I’ve written over time. Think of it as a digital junk drawer, but in the best way: full of handy tools, automation hacks, data wranglers, and random experiments. 🧰
Each script is standalone, unless it says otherwise in the header comments. You’ll also find a short note at the top of each file telling you which dependencies (if any) you’ll need to install. That means you can just grab a single file, install a couple of packages, and you’re good to go — no need to install the whole repo.
Here’s how things are organized:
-
automation/
⚙️
Scripts that automate boring stuff — from renaming files to filling out forms for you. -
data_processing/
📊
Tools for cleaning, transforming, and working with data in various formats. -
utils/
🛠
Random utilities and helpers that don’t quite fit anywhere else but are still useful. -
experiments/
🧪
A sandbox of little projects, ideas I’ve played with, or things I wanted to try out.
Each folder has its own README with more details on what’s inside.
- Browse around and pick a script you’re interested in.
- At the top of each script, you'll find a list of required packages (if any).
- Install the dependencies using pip:
pip install <package1> <package2>
- Run the script like this:
python your_script.py
That’s it!
This repo is very much a work-in-progress — more like a personal toolbox than a full-on project.
But if you see something you’d like to improve, have a cool script to add, or just want to say hi, feel free to jump in! Contributions, suggestions, and feedback are always welcome. 😊
You can open a pull request, or better yet — start a thread in GitHub Discussions to share ideas, ask questions, or show off something you made! 💬
Thanks for stopping by!
– Benji377
This repo uses Python 3.12
(See the .python-version
file if you're using something like pyenv.)