Usage ===== How to installing the package ----------------------------- Install the project into your Python environment: .. code:: console $ pip install boring-math-integer-math Importing the modules --------------------- Import the functions from the ``number_theory`` module. .. code:: python from boring_math.integer_math.number_theory import gcd, lcm, coprime from boring_math.integer_math.number_theory import is_prime, primes, primes_wilson from boring_math.integer_math.number_theory import legendre_symbol, jacobi_symbol Import the functions from the ``combinatorics`` module. .. code:: python from boring_math.integer_math.combinatorics import comb, perm