You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python tail is a simple implementation of GNU tail and head.
6
+
7
+
It provides 3 main functions that can be performed on any file-like object that supports ``seek()`` and ``tell()``.
8
+
9
+
* ``tail`` - read lines from the end of a file
10
+
* ``head`` - read lines from the top of a file
11
+
* ``follow`` - read lines as a file grows
12
+
13
+
It also comes with ``pytail``, a command line version offering the same functionality as GNU tail. This can be particularly useful on Windows systems that have no tail equivalent.
14
+
15
+
- `Tailer on GitHub <http://github.com/six8/pytailer>`_
16
+
- `Tailer on Pypi <http://pypi.python.org/pypi/tailer>`_
0 commit comments