Metadata-Version: 1.1
Name: aioreloader
Version: 0.0.1
Summary: Port of tornado reloader to asyncio
Home-page: https://github.com/and800/aioreloader
Author: Andriy Maletsky
Author-email: andriy.maletsky@gmail.com
License: MIT
Description: aioreloader
        ===========
        
        Tool that reloads your asyncio-based application automatically when you
        modify the source code.
        
        Most of code has been borrowed from
        `Tornado <https://github.com/tornadoweb/tornado/blob/master/tornado/autoreload.py>`_
        reloader built mostly by `@finiteloop <https://github.com/finiteloop>`_
        and `@bdarnell <https://github.com/bdarnell>`_. Thanks!
        
        Usage
        -----
        
        Here's an example of usage with
        `aiohttp <https://github.com/KeepSafe/aiohttp>`_ framework:
        
        .. code-block:: python
        
            app = aiohttp.web.Application()
            aioreloader.start()
            aiohttp.web.run_app(app)
        
        To add any file to watching list (which is not loaded as a python module):
        
        .. code-block:: python
        
            aioreloader.watch('/etc/app_config.yml')
        
        Requirements
        ------------
        
        Python - at least 3.3
        
        Installation
        ------------
        .. code-block:: bash
        
            $ pip install aioreloader
        
Keywords: aiohttp asyncio
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
