Metadata-Version: 1.1
Name: pire
Version: 0.1.1
Summary: Python Interactive Regular Expression
Home-page: https://github.com/johannestaas/pire
Author: Johan Nestaas
Author-email: johannestaas@gmail.com
License: GPLv3
Description: pire
        ====
        
        Python Interactive Regular Expression
        
        Installation
        ------------
        
        From the project root directory::
        
            $ python setup.py install
        
        Or through PyPI::
        
            $ pip install pire
        
        CLI Usage
        ---------
        
        Use --help/-h to view info on the arguments::
        
            $ pire --help
        
        Run pire against a text file::
        
            $ pire application.log
        
        Regexes used will be cached to a file in the present directory named `regex.pire`.
        
        Pass a custom newline-delimited file with regexes::
        
            $ pire -r app.pire application.log
        
        Pass multiple files::
        
            $ pire -r app.pire application.log application.log.1 application.log.2
        
        Or::
        
            $ pire -r app.pire application.log*
        
        Releases
        --------
        
        :0.1.1:
            - fixed bug with missing regex.pire file and output display
        :0.1.0:
            - curses interface implemented
        :0.0.1:
            - Project created
        
Keywords: python regex re regular expressions
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
