= Noom(2)
a = Noom(7) b
Noom
Usage
Installation
Install latest from the GitHub repository:
$ pip install git+https://github.com/vinay-jose/noom.git
or from pypi
$ pip install noom
Documentation
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
+ b a
9
- b a
-5
* b a
14
// b a
0
/ b a
0.2857142857142857
== b a
False
< b a
True
>= b a
False
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