Usage ===== How to installing the package ----------------------------- Install the project into your Python environment: .. code:: console $ pip install boring-math-pythagorean-triples Importing the modules --------------------- Import the class. .. code:: python from boring_math.pythagorean_triples.pythag3 import Pythag3 Executing the applications -------------------------- When you install the PyPI project, the application is installed into your Python environment. .. code:: console $ pythag3 20 30 (20, 21, 29) (20, 99, 101) (21, 220, 221) (23, 264, 265) (24, 143, 145) (25, 312, 313) (27, 364, 365) (28, 45, 53) (28, 195, 197) (29, 420, 421) $ pythag3 20 30 200 (20, 21, 29) (20, 99, 101) (24, 143, 145) (28, 45, 53) (28, 195, 197)