seeing

Monitor & auto execute single script(go py c) after modify.


License
MIT
Install
pip install seeing==0.1.7

Documentation

Monitor and auto execute single script after modify

support go, python, c++, c. filename endswith .py .c .cpp .go extend other. Support django reload server when template change.

[zh_cn] 自动执行修改后的脚本

install

pip install seeing

use

seeing -f hello.py
seeing -s 3 -f hello.go  # execute script after hello.go modified 3 seconds.
seeing -f hello.cpp      # it will run g++ hello.cpp && ./a.out
seeing -f hello.c        # same as cpp

# reload django devlop server
pip install gunicorn
seeing -c gunicorn project_name.wsgi

extend other

seeing -c sh hello.sh
seeing -c open hello.html
seeing -c node hello.js
seeing -c scrapy spider.py