https://github.com/himkt/trackyou
https://github.com/himkt/trackyou
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/himkt/trackyou
- Owner: himkt
- License: mit
- Created: 2016-11-23T07:23:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-16T15:36:28.000Z (over 9 years ago)
- Last Synced: 2025-02-13T17:54:27.903Z (over 1 year ago)
- Language: Python
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# trackyou
How many words did you write today ?
# Requirement
You have to install [pandoc](http://pandoc.org/)
If you have already installed [homebrew](http://brew.sh/), you can install pandoc with
> brew install pandoc
# installation
> pip install trackyou
# Run
```python
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](https://github.com/himkt/trackyou/pull/1), 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](http://bottlepy.org/docs/dev/)
```python
from trackyou.trackyou import TrackYou
ty = TrackYou(target=prefix + 'path_to_tex', title='hoge', output_dir=prefix + 'dir_output' + '/', plot_feature=True)
ty.report()
```