Metadata-Version: 1.1
Name: loggerFactory
Version: 0.0.3
Summary: Provide several commonly used logger.
Home-page: https://github.com/MacHu-GWU/loggerFactory-project
Author: Sanhe Hu
Author-email: husanhe@gmail.com
License: MIT
Download-URL: https://github.com/MacHu-GWU/loggerFactory-project/tarball/2017-03-08
Description: Welcome to the loggerFactory Documentation

        ==========================================

        

        ``loggerFactory`` include some commonly used logger. You can create a super easy to use logger in minimal code.

        

        Example::

        

        	import loggerFactory

        

        	logger = loggerFactory.StreamOnlyLogger()

        	logger.info("Some thing wrong!")

        

        

        If you are using default log format ``%(asctime)s; %(levelname)-8s; %(message)s``, I provide a ``logfilter`` can help you search log info.

        

        

        Example::

        

        	from loggerFactory.logfilter import find

        

        	result = find("log.txt", level="debug", message="ValueError",

        		time_lower=None, time_upper=None, case_sensitive=False)

        	result.dump("result.txt")

        	print(result)

        

        

        **Quick links**:

        

        - `GitHub Homepage <https://github.com/MacHu-GWU/loggerFactory-project>`_

        - `Online Documentation <https://github.com/MacHu-GWU/loggerFactory-project>`_

        - `PyPI download <https://pypi.python.org/pypi/loggerFactory>`_

        - `Install <install_>`_

        - `Issue submit and feature request <https://github.com/MacHu-GWU/loggerFactory-project/issues>`_

        

        

        .. _install:

        

        Install

        -------

        ``loggerFactory`` is released on PyPI, so all you need is:

        

        .. code-block:: console

        

        	$ pip install loggerFactory

        

        To upgrade to latest version:

        

        .. code-block:: console

        	

        	$ pip install --upgrade loggerFactory
Platform: Windows
Platform: MacOS
Platform: Unix
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
