1
vote
How do I watch a file for changes using Python?
Well, since you are using Python, you can just open a file and keep reading lines from it.
f = open('file.log')
If the line read is not empty, you …
