https://github.com/benji377/pyscripts
A friendly, open-source collection of standalone Python scripts for automation, data processing, and everyday utilities.
https://github.com/benji377/pyscripts
automation data-processing python scripts utilities
Last synced: about 1 year ago
JSON representation
A friendly, open-source collection of standalone Python scripts for automation, data processing, and everyday utilities.
- Host: GitHub
- URL: https://github.com/benji377/pyscripts
- Owner: Benji377
- Created: 2020-11-13T11:11:43.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T09:43:56.000Z (about 1 year ago)
- Last Synced: 2025-06-30T21:44:55.620Z (about 1 year ago)
- Topics: automation, data-processing, python, scripts, utilities
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐍 PyScripts
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.
---
## 🗂 What's Inside?
Here’s how things are organized:
- [`automation/`](./automation/) ⚙️
Scripts that automate boring stuff — from renaming files to filling out forms for you.
- [`data_processing/`](./data_processing/) 📊
Tools for cleaning, transforming, and working with data in various formats.
- [`utils/`](./utils/) 🛠
Random utilities and helpers that don’t quite fit anywhere else but are still useful.
- [`experiments/`](./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.
---
## 🚀 How to Use These Scripts
1. Browse around and pick a script you’re interested in.
2. At the top of each script, you'll find a list of required packages (if any).
3. Install the dependencies using pip:
```bash
pip install
```
4. Run the script like this:
```bash
python your_script.py
```
That’s it!
---
## 🤝 Want to Contribute?
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**](https://github.com/Benji377/PyScripts/discussions) to share ideas, ask questions, or show off something you made! 💬
Thanks for stopping by!
– *Benji377*
---
## 🐍 Python Version
This repo uses **Python 3.12**
(See the `.python-version` file if you're using something like pyenv.)