trackyou

visualize your progress


License
Other
Install
pip install trackyou==0.0.4

Documentation

trackyou

How many words did you write today ?

Requirement

You have to install pandoc

If you have already installed homebrew, you can install pandoc with

brew install pandoc

installation

pip install trackyou

Run

from trackyou.trackyou import TrackYou

ty = TrackYou(target=prefix + 'path_to_tex', title='hoge', output_dir=prefix + 'dir_output' + '/')
ty.report()

Run with plot

Thanks to this Pull Request, trackyou can provide graphical interface for visualize your progress (To enable this feature, you have to install bottle) !

If you wanna enable this feature, you have to install bottle

from trackyou.trackyou import TrackYou

ty = TrackYou(target=prefix + 'path_to_tex', title='hoge', output_dir=prefix + 'dir_output' + '/', plot_feature=True)
ty.report()