What is the pythonic way of watching the tail end of a growing file for the occurrence of certain keywords?
In shell I might say:
tail -f "$file" | grep "$string" | while read hit; do
#stuff
done
|
|
Well, the simplest way would be to constantly read from the file, check what's new and test for hits.
This solution with If the data is some sort of stream you need a buffer, larger than the largest |
|||||||||
|
|
You can use From http://docs.python.org/library/collections.html#deque-recipes ...
Of course, this reads the entire file contents, but it's a neat and terse way of implementing tail. |
|||
|
|
|
You can use select to poll for new contents in a file.
|
|||
|
|
If you can't constraint the problem to work for a line-based read, you need to resort to blocks. This should work:
The challenge lies in ensuring that you match needle even if it's separated by two block-boundaries. |
|||
|
|
Either open the file with |
|||
|
|
I use this to monitor log files. In the full implementation, I keep list_of_matches in a configuration file so it can be used for multiple purposes. On my list of enhancements is support for regex instead of a simple 'in' match. |
|||
|
|
|
To my knowledge there's no equivalent to "tail" in the Python function list. Solution would be to use tell() (get file size) and read() to work out the ending lines. This blog post (not by me) has the function written out, looks appropriate to me! http://www.manugarg.com/2007/04/real-tailing-in-python.html |
|||
|
|