📝 Recent Updates
- Added menu-based development workflow
- Updated project structure guidelines
- Enhanced testing requirements
- Fork and clone
- Create virtual environment
- Run
python src/menu.py
- Select "Core Tools > Requirements Manager"
- Create feature branch
git checkout -b feature/your-feature
- Make changes
- Run tests
- Update docs
- Submit PR
- ✨ Follow PEP 8
- 📚 Include docstrings
- ⌨️ Add type hints
- 🧪 Write unit tests
# Create branch
git checkout -b feature/your-feature
# Make changes
# Run tests
# Update docs
# Submit PR
git push origin feature/your-feature
# Clone repository
git clone https://github.com/shaerif/python_tools.git
cd python_tools
# Install using setup.py
python setup.py install