smithery.ai

python-style

Python coding conventions and best practices. Use when writing, reviewing, or refactoring Python code, or when working with Python scripts and projects.

First seen Mar 22, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 888 B
  • docs SUMMARY.md 172 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Python Style

Personal coding conventions for writing Python code.

Dependency Management

Running Scripts with Dependencies

Use uv run to execute Python scripts with temporary dependencies without modifying the environment:

uv run --with DEPENDENCY==VERSION script.py

Examples:

# Run a script with a specific version of requests
uv run --with requests==2.31.0 fetch_data.py

# Run with multiple dependencies
uv run --with requests==2.31.0 --with pandas==2.1.0 analyze.py

Benefits:

  • No need to create virtual environments for quick scripts
  • Dependencies are isolated and don't affect the system Python
  • Version pinning ensures reproducibility