Metadata-Version: 1.1
Name: Reloadr
Version: 0.1
Summary: Hot code reloading tool for Python
Home-page: https://github.com/hoh/reloadr
Author: Hugo Herter
Author-email: git@hugoherter.com
License: LGPLv3
Description: # Reloadr
        
        Python hot code reloading tool.
        
        `pip install reloadr`
        
        # Usage
        
        You can simply decorate your functions / classes with `@reloadr` and you are ready to go.
        
        ```python
        from reloadr import reloadr
        
        @reloadr
        def do_something(a, b):
            return a + b
        
        @reloadr
        class SomeThing:
            def do_stuff(self):
                pass
        ```
        
        # Examples
        
        Launch an example (they each contain an infinite loop), then change the source code of the decorated class or function.
        
        `git clone https://github.com/hoh/reloadr.git`
        
        `python examples/01_manual_reload.py`
        
Keywords: reload hot code reloading
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: Developers
