a = Noom(2)
b = Noom(7)Noom
Usage
Installation
Install latest from the GitHub repository:
$ pip install git+https://github.com/vinay-jose/noom.gitor from pypi
$ pip install noomDocumentation
Documentation can be found hosted on this GitHub repository’s pages. Additionally you can find package manager specific guidelines on conda and pypi respectively.
How to use
a + b9
a - b-5
a * b14
a // b0
a / b0.2857142857142857
a == bFalse
a < bTrue
a >= bFalse
Developer Guide
If you are new to using nbdev here are some useful pointers to get you started.
Install noom in Development mode
# make sure noom package is installed in development mode
$ pip install -e .
# make changes under nbs/ directory
# ...
# compile to have changes apply to noom
$ nbdev_prepare