Skip to content
Tech News
โ† Back to articles

Pdoc โ€“ Generate API documentation for Python projects

read original get productivity planner โ†’ more articles

demo.py

""" A small `pdoc` example. """ class Dog : """๐Ÿ•""" name : str """The name of our dog.""" friends : list [ "Dog" ] """The friends of our dog.""" def __init__ ( self , name : str ): """Make a Dog without any friends (yet).""" self . name = name self . friends = [] def bark ( self , loud : bool = True ): """*woof*"""