Metadata-Version: 2.1
Name: http-containerize
Version: 0.3.5
Summary: UNKNOWN
Home-page: https://github.com/evankanderson/pyfun
License: Apache
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 (<2,>=1.2)
Requires-Dist: Flask (<2,>=1.0.2)

# Function framework for Python

**NOTICE:**

**The code has been rewritten for 0.3.0, but the documentation has not been updated!**

This framework provides a mechanism to write Function-as-a-Service
style code in Python for handling CloudEvents delivered via HTTP.

This framework is primarily intended to work with
[Knative](https://github.com/knative/docs), but also works to provide
a generic server for handling CloudEvents over HTTP (e.g. from
Kubernetes or on a local machine).

Usage:

```python
import logging
from typing import Any

from pyfun_events import Handle, Get

counter = 0


# @Handle assumes json body. For event bodies which are a simple string, try:
# @Handle(str)
@Handle
def DoEvent(data: Any, context: dict):
    logging.info(data)
    counter = counter + 1


@Handle(path="/secret")
def DoOther(data: Any, context: dict) -> v1.Event:
    if data.get("handshake") == "backwards":
        counter = 0
        return v1.Event().SetData("It's gone, man")


@Get
def Info():
    return "Got {0}".format(counter)


@Get("/dance")
def Party():
    return "<BLINK>Like it's 1999</BLINK>"
```


## Running manually

Copy `packaging/config.py` and `packaging/requirements.txt` into your
application directory alongside your other code. You can then start the Flask webserver running your function with:

```shell
FLASK_APP=config
flask run
```

## Running on Knative

There is a supplied build template in `packaging/build-template.yaml`, which you can apply to your cluster with:

```shell
kubectl apply -f packaging/build-template.yaml
```

or

```shell
kubectl apply -f https://github.com/evankanderson/pyfun/tree/master/packaging/build-template.yaml
```

Then update your Knative Service like so:

```diff
apiVersion: serving.knative.dev/v1alpha1
kind: Service
metadata:
  name: message-dumper
spec:
  runLatest:
    configuration:
+     build:
+       source:
+          git:
+            url: YOUR_REPO_URL
+            revision: HEAD
+       template:
+         name: pyfn
+         arguments:
+         - name: IMAGE
+           value: YOUR_DOCKER_IMAGE
+       serviceAccountName: builder
  revisionTemplate:
    spec:
      container:
        image: YOUR_DOCKER_IMAGE
```


