Skip to content

Latest commit

 

History

History

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Pyemo

pub package

Install

pip install pyemo

Usage

Declare an instance namespace

from pyemo import Emo

emo = Emo("pipeline")

Then use it in the code

emo.start("Starting data pipeline")
emo.arrow_in("Loading csv file")
# ...
emo.data("Processing data transformation")
# ...
emo.query("Processing indexes")
# ...
emo.ok("Finished")