First off, thanks for taking the time to contribute! The following guidelines help us make contributions easy and effective.
- Getting Started
- Reporting Bugs
- Suggesting Enhancements
- Submitting a Pull Request
- Coding Standards
- License
-
Fork the repository on GitHub.
-
Clone your fork locally:
git clone https://github.com/chinmaynehate/go1pylib.git
-
Create a branch for your work:
git checkout -b feature/your-feature-name
-
Make sure to install all necessary dependencies and test your changes before submitting.
If you find a bug, please report it by creating an issue in the Issues section. Provide as much detail as possible, including steps to reproduce the bug.
We welcome suggestions! Please open an issue with the enhancement label and describe your idea.
-
Make sure your code is up-to-date with the main repository.
git fetch upstream git merge upstream/main
-
Commit your changes with a clear and concise commit message:
git commit -m "Add feature: your feature description"
-
Push to your branch:
git push origin feature/your-feature-name
-
Open a Pull Request with a description of your changes.
- Write clear, concise code and comments.
- Follow PEP 8 for Python code style.
- Run tests to verify your changes.
By contributing, you agree that your contributions will be licensed under the same license as the project.
Thank you for contributing!