python-style-guide
Installation
SKILL.md
Python Style Guide
Comprehensive guidelines for writing clean, maintainable Python code based on Google's Python Style Guide.
Core Philosophy
BE CONSISTENT. Match the style of the code around you. Use these guidelines as defaults, but always prioritize consistency with existing code.
Language Rules
Imports
Use import statements for packages and modules only, not for individual classes or functions.
Yes:
from doctor.who import jodie
import sound_effects.utils