A repository containing a collection of various scripts for solving practical tasks. Each script is organized as a separate directory with its own code and documentation.
.
├── script-name-1/
│ ├── README.md # Script documentation
│ └── script.py # Script file
│
├── script-name-2/
│ ├── README.md
│ └── main.py
│
└── ...
- Find the script you need in the repository
- Navigate to its directory
- Open the
README.mdinside for instructions - Run the script as described
When adding a new script, follow this structure:
script-name/
├── README.md
└── your_script_file
Each script must include its own README.md with:
- Description of what the script does
- Instructions on how to run it
- Usage examples (if applicable)
- Dependencies (if any)
- Automation
- Data parsing
- API interaction
- Development utilities
- CLI tools
Requirements depend on the specific script.
Check the README.md inside each directory.
This repository is continuously updated with new scripts over time.