- From bash
poetry run fizz_buz --help
usage: fizz_buzz [-h]
Console utility to convert number to FizzBuzz notation
options:
-h, --help show this help message and exit
- From Python:
from fizz_buzz.core import convert_number
a = convert_number(3) # "Fizz!"