Metadata-Version: 1.1
Name: globtailer
Version: 0.1.0
Summary: A generator that yields lines from the most recently modified file matching a glob pattern
Home-page: https://github.com/msabramo/python-globtailer
Author: Marc Abramowitz
Author-email: marc@marc-abramowitz.com
License: MIT
Description: python-globtailer
        =================
        
        .. image:: https://secure.travis-ci.org/msabramo/python-globtailer.png
           :target: http://travis-ci.org/msabramo/python-globtailer
        
        The main class is ``FileTailer``, a generator that yields lines from the most
        recently modified file matching a glob pattern.
        
        Example::
        
            from globtailer import FileTailer
        
            tailer = FileTailer("/path/to/*.log")
        
            for line in tailer:
                print(line)
        
Keywords: generator,tail
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Testing
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
