Skip to content

mastro35/tyler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TYLER

Tyler is just a simple "tail -f" command written in Python that can be used like a module to be integrated in own projects or as a standalone command from the command line (expecially useful on Windows where tail command does not exists).

INSTALL

To install Tyler simply use pip

$ pip install pytyler

USAGE

From the command line

c:\tyler prova.txt

As a module

import tyler

my_file = tyler.Tyler('filename_to_be_tailed.log')
while True:
    for line in my_file:
        # insert here whatever you whatn to do with the read line

About

A simple tail command written in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages