Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
testdino-hq avatar

Python

  • 12 installs
  • 8 repo stars
  • Updated February 25, 2026
  • testdino-hq/google-styleguides-skills

Helps with python tasks during AI-assisted development.

About

python is a Claude Code skill for python. It helps solo builders move faster with AI-assisted coding.

  • python
  • Python
  • AI-coding skill

Python by the numbers

  • 12 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #201 of 290 Python skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/testdino-hq/google-styleguides-skills --skill python

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs12
repo stars8
Last updatedFebruary 25, 2026
Repositorytestdino-hq/google-styleguides-skills

What it does

Helps with python tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Google Python Style Guide

Official Google Python coding standards extending PEP 8.

Golden Rules

1. Follow PEP 8 as baseline — Google's guide extends it 2. Use type annotations for all public functions and methods 3. 4-space indentation — no tabs 4. Maximum line length: 80 characters 5. Docstrings mandatory for all public modules, functions, classes, methods 6. Prefer comprehensions over map()/filter() 7. Use f-strings for string formatting (Python 3.6+)

Quick Reference

Naming Conventions

ElementConventionExample
Modulessnake_caseuser_service.py
ClassesUpperCamelCaseUserService
Functions/Methodssnake_caseget_user_by_id
Variablessnake_caseuser_count
ConstantsUPPER_SNAKE_CASEMAX_RETRIES
Protected_single_leading_internal
Private__double_leading__private

Type Annotations

# ✓ CORRECT
def get_user(user_id: int) -> Optional[dict]:
    ...

def process_items(items: List[str], max_count: int = 10) -> List[str]:
    ...

# ✗ INCORRECT
def get_user(user_id):  # missing type annotations
    ...

Docstrings (Google Style)

def fetch_data(url: str, timeout: int = 30) -> dict:
    """Fetches data from the given URL.

    Args:
        url: The URL to fetch data from.
        timeout: Request timeout in seconds. Defaults to 30.

    Returns:
        A dictionary containing the response data.

    Raises:
        ValueError: If the URL is invalid.
    """
    ...

Imports

# ✓ CORRECT - stdlib, then third-party, then local
import os
import sys
from typing import Optional, List

import numpy as np

from myproject import utils

# ✗ INCORRECT
import os, sys        # one import per line
from os.path import * # never wildcard imports

String Formatting

# ✓ CORRECT - f-strings
name = "Alice"
greeting = f"Hello, {name}!"

# ✗ INCORRECT
greeting = "Hello, " + name + "!"    # use f-strings
greeting = "Hello, %s!" % name       # use f-strings

Comprehensions

# ✓ CORRECT
squares = [x ** 2 for x in range(10)]
user_map = {user.id: user for user in users}
evens = [x for x in range(20) if x % 2 == 0]

# ✗ INCORRECT
squares = list(map(lambda x: x ** 2, range(10)))  # use comprehension

Exception Handling

# ✓ CORRECT - catch specific exceptions
try:
    data = json.loads(raw_input)
except json.JSONDecodeError as e:
    raise ValueError(f"Could not parse: {e}") from e

# ✗ INCORRECT
try:
    ...
except:     # never bare except
    pass

Default Arguments

# ✗ INCORRECT - mutable default arguments
def add_item(item: str, items: List[str] = []) -> List[str]:  # BAD!
    items.append(item)
    return items

# ✓ CORRECT - use None for mutable defaults
def add_item(item: str, items: Optional[List[str]] = None) -> List[str]:
    if items is None:
        items = []
    items.append(item)
    return items

Common Mistakes

MistakeCorrect Approach
Mutable default argsUse None as default
Wildcard importsExplicit imports only
Bare exceptCatch specific exceptions
% or .format() stringsUse f-strings
map()/filter()Use comprehensions
Missing docstringsAdd Google-style docstrings
Missing type annotationsAnnotate public functions

When to Use This Guide

  • Writing new Python code
  • Refactoring existing Python
  • Code reviews
  • Setting up linting rules (pylint, flake8)
  • Onboarding new team members

Install

npx skills add testdino-hq/google-styleguides-skills/python

Full Guide

See python.md for complete details, examples, and edge cases.

Related skills

Pythonbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.