Thanks for your interest in contributing! We welcome all contributions — bug reports, feature suggestions, code improvements, documentation, and more.
Click the "Fork" button in the top right corner of the repo.
git clone https://github.com/yourusername/insert-tools.git
cd insert-toolsgit checkout -b feature/your-feature-nameMake your changes, and commit them:
git add .
git commit -m "Add a clear message about what you changed"git push origin feature/your-feature-nameGo to your forked repository, click "New Pull Request", and follow the instructions.
- Use GitHub Issues
- Please provide steps to reproduce, expected vs actual behavior, and environment info (OS, Python version, etc.)
Open an issue and label it with enhancement. Describe:
- What problem this feature solves
- How it should work
- Use
blackorisortfor formatting - Keep functions small and clear
- Write docstrings and comments for clarity
- Code compiles / runs without error
- Tests pass (if applicable)
- Includes documentation or examples (if needed)
Thank you for contributing 🙏