nbdev-hello-world

Hello world with nbdev

Usage

Installation

Install latest from the GitHub repository:

$ pip install git+https://github.com/aaboshaisha/nbdev-hello-world.git

or from conda

$ conda install -c aaboshaisha nbdev_hello_world

or from pypi

$ pip install nbdev_hello_world

How to use

This provides a say_hello function to say hell to someone:

say_hello('Salma')
'Hello Salma!'
say_goodbye('Menna')
'Goodbye Menna'
p = Person('Jane', 33)
p
Name: Jane, Age:33