Metadata-Version: 1.1
Name: django-logtailer
Version: 1.0.0
Summary: Allows to read log files from disk with a tail like web console on Django admin interface. 
Home-page: https://github.com/fireantology/django-logtailer
Author: Mauro Rocco
Author-email: fireantology@gmail.com
License: BSD
Description: =================================
        Django LogTailer
        =================================
        
        :Version: 1.0
        :Source: http://github.com/fireantology/django-logtailer/
        --
        
        
        Allows the viewing of any log file entries in real time directly from the Django admin interface.
        It allows you to filter on logs with regex and offer also a log clipboard for save desired log lines to the django db.
        
        Demos
        ========
        - Demo `Video`_
        
        .. _`Video`: http://www.vimeo.com/28891014
        
        Requirements
        ========
        
        - Django > 1.8
        - Python 3.x or 2.X
        - Sessions enabled
        
        Installation
        ========
        
        - Copy the logtailer folder in you project and add it to the INSTALLED_APPS
        - add to urls.py: url(r'^logs/', include('logtailer.urls')),
        - Run manage.py migrate for create the required tables
        - Run manage.py collectstatic
        
        SETTING OPTIONS AVAILABLE
        ========
        
         - LOGTAILER_HISTORY_LINES , Number of line to get back from the file on first read, default value is 0
Platform: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
