pip install pdoc3
pip install pdoc
pdoc --version
pdoc --html <your_module_name>
pdoc --http : <your_module_name>
python
class Calculator:
def add(self, a, b):
return a + b
def subtract(self, a, b):
return a - b
def multiply(self, a, b):
return a * b
def divide(self, a, b):
return a / b
pdoc --html calculator