Metadata-Version: 2.1
Name: pyfun_events
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/pypa/sampleproject
License: UNKNOWN
Description: # pyfun
        Knative function framework for Python
        
        Usage:
        
        ```python
        import logging
        
        from pyfun_events import Handle,Get
        
        counter = 0
        
        @Handle
        def DoEvent(data :str, context: dict):
            logging.info(data)
            counter = counter + 1
        
        @Get
        def Info():
            return 'Got {0}'.format(counter)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
