Skip to main content

paten

Project description

Paten

Paten is a framework for azure functions written in Python. Paten provides:

  • A command line tool for creating, building azure functions.
  • A decorator based API integrated with in/out bindings.

install

$ pip install paten

Quickstart

In your project directory, type below. Directory {project_name} and example python scripts are created.

$ paten new-project {project_name}

Then, modify app.py, like below.

import azure.functions as func
from paten import Paten

app = Paten('{project_name}')


@app.http_trigger('req', methods=['GET'], route='/')
@app.out_http()
def example_http_function(req: func.HttpRequest) -> func.HttpResponse:
    name = req.params.get('name')

    # response
    return func.HttpResponse(name)

Finally, to generate files which are ready to deploy azure functions, type below in the directory {project_name}. The files are generated in ./{project_name}/.paten

$ paten build

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

paten-0.1.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

paten-0.1.0-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page