Metadata-Version: 2.1
Name: realtimefunc
Version: 0.1.0
Summary: A decorator is used to update a function at runtime.
Home-page: https://github.com/Graywd/realtimefunc
Author: Graywd
Author-email: nowreturnlong@gmail.com
License: UNKNOWN
Description: # realtimefunc
        A decorator is used to update a function at runtime.
        
        ### install
        ```
        pip install realtimefunc
        ```
        
        ### usage
        ```
        from realtimefunc import realtimefunc
        
        @coroutine
        @realtimefunc
        def test():
            # function body
        ```
        
        ### NOTE
        `super()` is not allowed while `super(kls, obj)` is ok.
        
        ### TODO
        - [x] beautify stack info
        - [x] support log
        - [x] cache
        - [ ] support `super()`
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
