Hello-fastai

Trying new nbdev tool


Keywords
nbdev
License
Apache-2.0
Install
pip install Hello-fastai==0.0.3

Documentation

Hello_fastai

Trying new nbdev tool

%load_ext autoreload
%autoreload 2
The autoreload extension is already loaded. To reload it, use:
  %reload_ext autoreload

This file will become your README and also the index of your documentation.

Install

pip install your_project_name

How to use

say_hello("world") Hello world!

1+1
2
class HelloSayer:
    "Say Hello to `to` using `say_hello`"
    def __init__(self,to): self.to = to
    def say(self):say_hello(self.to)
        
o = HelloSayer("Vanh")
o.say()
Hello Vanh!
from nbdev.export import notebook2script
notebook2script()
Converted 00_core.ipynb.
Converted index.ipynb.