Thanks for your interest in contributing! 🎉
Whether you're fixing bugs, improving docs, or adding new features — your help is appreciated.
- Follow the installation instructions in README.md
- Fork the repo
- Clone your fork:
git clone https://github.com/janksmap/safesound.git cd safesound - Create a branch for your changes:
git checkout -b my-feature
- Use meaningful variable names and comments.
- Write docstrings for all public functions and classes. (I know I don't have this yet, but I'm working toward it. Feel free to help if you can!)
Before you open a pull request:
- Test your changes with:
python3 safe_sound.py test_audio.mp3
- Make sure the script runs end-to-end
- No debug prints or commented-out code
When ready:
- Commit your changes:
git commit -m "Add feature: X" - Push your branch:
git push origin my-feature
- Open a pull request on GitHub with a clear description of your changes.
You're helping make SafeSound better for everyone. We appreciate every contribution, large or small!