documenting-python-libraries

Python Library Documentation

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "documenting-python-libraries" with this command: npx skills add wdm0006/python-skills/wdm0006-python-skills-documenting-python-libraries

Python Library Documentation

Docstring Style (Google)

def encode(latitude: float, longitude: float, *, precision: int = 12) -> str: """Encode geographic coordinates to a quadtree string.

Args:
    latitude: The latitude in degrees (-90 to 90).
    longitude: The longitude in degrees (-180 to 180).
    precision: Number of characters in output. Defaults to 12.

Returns:
    A string representing the encoded location.

Raises:
    ValidationError: If coordinates are out of valid range.

Example:
    >>> encode(37.7749, -122.4194)
    '9q8yy9h7wr3z'
"""

Sphinx Quick Setup

Install

pip install sphinx furo myst-parser sphinx-copybutton

Initialize

sphinx-quickstart docs/

conf.py essentials:

extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.napoleon', # Google docstrings 'myst_parser', # Markdown support ] html_theme = 'furo'

pyproject.toml Dependencies

[project.optional-dependencies] docs = [ "sphinx>=7.0", "furo>=2024.0", "myst-parser>=2.0", ]

README Template

Package Name

PyPI

Short description of what it does.

Installation

pip install package

Quick Start

from package import function result = function(args)

Documentation

Full docs at package.readthedocs.io

ReadTheDocs (.readthedocs.yaml)

version: 2 build: os: ubuntu-22.04 tools: python: "3.11" sphinx: configuration: docs/conf.py python: install: - method: pip path: . extra_requirements: [docs]

For detailed setup, see:

  • SPHINX_CONFIG.md - Full Sphinx configuration

  • TUTORIALS.md - Tutorial writing guide

Checklist

README:

  • Clear project description
  • Installation instructions
  • Quick start example
  • Link to full documentation

API Docs:

  • All public functions documented
  • Args, Returns, Raises sections
  • Examples in docstrings
  • Type hints included

Learn More

This skill is based on the Documentation section of the Guide to Developing High-Quality Python Libraries by Will McGinnis.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

improving-python-code-quality

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

building-python-clis

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

optimizing-python-performance

No summary provided by upstream source.

Repository SourceNeeds Review