使用pyinotify'live'刷新显示的文件

时间:2013-07-24 00:57:22

标签: python pyinotify

天儿真好,

我有一个Raspberry Pi,它将用于在HDMI连接的显示器上显示事务日志CSV文件。我希望显示器作为实时“记分板”运行,这样所有用户都可以看到日志CSV文件(如机场/航班宣布板)。

我被告知pyinotify可以监控日志CSV文件,然后刷新文件,而不必关闭并重新打开它?我已经阅读了文档,并在网上搜索了这个功能,但到目前为止,我已经空了。我没有任何示例代码来演示我尝试过的东西(还有!),因为我想首先确定pyinotify是否可以使用此功能,或者我是否应该查看其他内容。

我正在使用Python 3.3。

这里的任何指导都会很棒!

谢谢!

1 个答案:

答案 0 :(得分:1)

好的,我不知道它是否有帮助,但在这里你怎么做:

让我们说我们有一个文件:

echo "line 1" >> testfile.txt 

比写一个脚本(确保你指向这个文件):

import os, pyinotify

PATH = os.path.join(os.path.expanduser('~/'), 'testfile.txt')

class EventHandler(pyinotify.ProcessEvent):
    def __init__(self, *args, **kwargs):
        super(EventHandler, self).__init__(*args, **kwargs)
        self.file = open(PATH)
        self.position = 0
        self.print_lines()

    def process_IN_MODIFY(self, event):
        self.print_lines()

    def print_lines(self):
        new_lines = self.file.read()
        last_n = new_lines.rfind('\n')
        if last_n >= 0:
            self.position += last_n + 1
            print new_lines[:last_n]
        else:
            print 'no line'
        self.file.seek(self.position)

wm = pyinotify.WatchManager()
handler = EventHandler()
notifier = pyinotify.Notifier(wm, handler)
wm.add_watch(PATH, pyinotify.IN_MODIFY, rec=True)
notifier.loop()

运行文件:

python notify.py

你会看到

line 1

而不是从不同的终端添加另一行到文件(确保脚本仍在运行)

echo "line 2" >> testfile.txt

您将在脚本输出中看到它

此代码的P.S信用额度为Nicolas Cartot