Metadata-Version: 2.0
Name: aioreloader
Version: 0.0.0
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
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
Requires-Dist: asyncio; python_version=="3.3"

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)

Requirements
------------

Python - at least 3.3

Installation
------------
.. code-block:: bash

    $ pip install aioreloader


