8000 GitHub - taeold/functions-framework-python at 8bda09cd8e9addde17b51c28f70238e888e809be
[go: up one dir, main page]

Skip to content

taeold/functions-framework-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Functions Framework for Python

PyPI version

Python unit CI Python lint CI Python conformace CI Security Scorecard

An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.

The Functions Framework lets you write lightweight functions that run in many different environments, including:

The framework allows you to go from:

def hello(request):
    return "Hello world!"

To:

curl http://my-url
# Output: Hello world!

All without needing to worry about writing an HTTP server or complicated request handling logic.

Features