Files
windmill/python-client/wmill_pg
Ruben Fiszel 9be64f8e4a chore(main): release 1.21.0 (#215)
* chore(main): release 1.21.0

* Apply automatic changes

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2022-07-19 06:01:18 +02:00
..
2022-05-05 04:25:58 +02: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:
        ...