Files
windmill/python-client/wmill_pg
Ruben Fiszel 11577f4a4e chore(main): release 1.45.0 (#855)
* chore(main): release 1.45.0

* Apply automatic changes

* Update CHANGELOG.md

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2022-11-06 23:50:19 +01:00
..
2022-05-05 04:25:58 +02:00

wmill

The postgres extension client for the Windmill platform.

windmill-api.

Quickstart

import wmill_pg


def main():
    my_list = query("UPDATE demo SET value = 'value' RETURNING key, value")
    for key, value in my_list:
        ...