# Python Expert

> Python development best practices and advanced patterns

- Skill: `tao12345666333/python-expert` (Agent Skill)
- Install (CLI): `npx skillmds@latest add tao12345666333/python-expert`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tao12345666333/python-expert/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tao12345666333 (https://skillmd.com/u/tao12345666333)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tao12345666333/python-expert

---


# Python Expert Skill

When working with Python code, apply these advanced patterns and best practices:

## Code Style
- Follow PEP 8 guidelines
- Use type hints for function signatures
- Prefer f-strings for string formatting
- Use meaningful variable and function names

## Modern Python Features
- Use dataclasses for data containers
- Prefer pathlib over os.path
- Use context managers for resource management
- Leverage generators for memory efficiency
- Use structural pattern matching (Python 3.10+)

## Error Handling
- Use specific exception types
- Provide meaningful error messages
- Log errors appropriately
- Consider using Result types for expected failures

## Testing
- Write unit tests with pytest
- Use fixtures for test setup
- Mock external dependencies
- Aim for high test coverage

## Project Structure
```
project/
├── src/
│   └── package/
│       ├── __init__.py
│       └── module.py
├── tests/
│   └── test_module.py
├── pyproject.toml
└── README.md
```

## Packaging
- Use pyproject.toml for configuration
- Define clear dependencies
- Use semantic versioning

