Python FizzBuzz is a CLI tool for famous FizzBuzz task.
To install Python FizzBuzz, first clone the repository and then run:
pip install .
Type fizz_buzz
in command line.
Here's an example of Python FizzBuzz output.
Welcome to Fizz Buzz!
Submit a number and get an answer!
Number: 3
Fizz!
Number: 5
Buzz!
Number: 15
FizzBuzz!
Number: 11
11
First install test dependencies:
pip install .[tests]
Then, run tests:
pytest --cov-report html --cov=src tests/
First install lint dependencies:
pip install .[lint]
Then, run lint:
pylint src tests