connexion.request.form

Here are the examples of the python api connexion.request.form taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : server.py
with Apache License 2.0
from elixir-cloud-aai

def RunWorkflow(*args, **kwargs):
    """Executes workflow."""
    response = run_workflow.run_workflow(
        config=current_app.config,
        form_data=request.form,
        *args,
        **kwargs
    )
    log_request(request, response)
    return response


def log_request(request, response):