Skip to content

vinay-jose/noom

Repository files navigation

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

a = Noom(2)
b = Noom(7)
a + b
9
a - b
-5
a * b
14
a // b
0
a / b
0.2857142857142857
a == b
False
a < b
True
a >= b
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

About

A number class in python created using nbdev for learning.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published