Fairly simple multiuser realtime webapp for tailing logs over the network.
$ pip install -r requirements.txt
Install requirements manually
If you run into any problems. Consult one of the links in the requirements section. Note that gevent requires [libev] (http://software.schmorp.de/pkg/libev.html).
Open up a port for listening on the remote machine and pour stuff into the socket. Probably something like this:
- On your server:
$ tail -f mylogfile.txt | netcat -l -k 6565 - Start the webapp with
$ python webtail.py yourserverhost 6565 - Visit http://localhost:5000 in your browser