Metadata-Version: 1.1
Name: logprism
Version: 0.1.1
Summary: Prism – Colourise log files (with ANSI characters codes)
Home-page: https://github.com/peterhil/prism
Author: Peter Hillerström
Author-email: peter.hillerstrom@gmail.com
License: BSD License
Description: Prism — colourful logs
        ======================
        
        A command line log colouriser utility.
        
        
        Dependencies
        ---------------------
        
        Required:
        
        - argh (argument parsing)
        - ordereddict (if using Python 2.6)
        
        Optional:
        
        - watchdog (optional for watching files and directories with the -w option)
        - pytest (optional for running tests)
        
        
        Installation
        ------------
        
        From Python package index (Pypi):
        
            (sudo) pip install logprism
        
        or from Github_:
        
        
            (sudo) pip install argh watchdog  
        
            git clone https://github.com/peterhil/prism.git
        
            cd prism
        
            (sudo) python setyp.py install
        
        
        Usage examples
        --------------
        
        - prism -g /var/log/\*.log
        - prism -m /var/log/apache2/\*log
        - prism /opt/local/var/macports/logs/\*\/\*.log
        
        
        Todo
        ----
        
        - Show some tail lines when using -w: Make a line cache (count total lines with `wc -l`) from the end of the file using some blocksize.
        
          a) Can be done with readlines() first. Then seek and read blocksize bytes from len(file)-blocksize and update cache.
          b) Later enable ncurses scrolling for earlier lines?
          c) Show n lines by default (a screenful / filecount?)
        
        
        .. _Github: https://github.com/peterhil/prism/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Internet :: Log Analysis
Classifier: Topic :: System :: Logging
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Requires: argh (>=0.15.0)
Requires: collections
