A curated collection of small yet powerful automation scripts and utilities designed to simplify and speed up your daily tasks.
PyScripts/
├── main.py # Main entry point
├── scripts/ # Individual script functions
│ ├── __init__.py
│ ├── audio_book.py
│ ├── data_faker.py
│ ├── more files ...
├── .gitignore # Git ignore file
├── README.md # README file
└── requirements.txt # Requirements for the scripts
Before using any script, make sure to install the required dependencies. Each script has its own set of dependencies listed in requirements.txt. The dependencies are organized by script, making it easy to install only what you need.
To install all dependencies:
pip install -r requirements.txtOr install specific script dependencies by copying the relevant section from requirements.txt.
- Import the desired function from the scripts module
- Call the function with appropriate parameters
Example:
from scripts import url_shortener
short_url = url_shortener.shorten_url("https://example.com")See main.py for more examples and documentation.