Welcome to unv_template’s documentation!

class package.app.SomeExampleApp(name: str = 'app')[source]

This is example of documented class. Just powers two numbers and increments call count.

>>> from package.app import SomeExampleApp
>>> app = SomeExampleApp()
>>> app.power(2, 3)
8
>>> app.ncalls
1
power(num: int, times: int) → int[source]

Power number by given times.

Indices and tables