Python
Modular, scalable, automated development intelligence.
npx -y skills add DongDuong2001/pudo-code-system --skill pythonAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Python development best practices, PEP 8, and modern Python features
SKILL.md
0.8 KB, as published. Nobody here has run it
Python Code Skill
This skill is specialized for Python development, focusing on idiomatic Python (Pythonic code), performance, and typing.
When to use this skill
- When writing or refactoring Python code (Django, FastAPI, Flask, Pandas, etc.).
- When utilizing Python's specific features like list comprehensions, generators, context managers.
- When integrating PEP 8 standards or type hints (mypy/pydantic).
Guidelines
- Write "Pythonic" code. Use built-in functions and standard libraries where appropriate.
- Use explicit type hints for better Developer Experience (DX) and tooling support.
- Handle exceptions specifically rather than using bare
except:clauses. - Use virtual environments (venv, poerty, conda) for dependency management.