Metadata-Version: 2.1
Name: pyfun-events
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/pypa/sampleproject
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
Requires-Dist: cloudevents (<0.3,>=0.2.1)
Requires-Dist: Flask (<2,>=1.0.2)
Requires-Dist: ujson (<2,>=1.35)

# 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)
```


