Files
windmill/python-client/wmill_pg
Ruben Fiszel 900318bf76 chore(main): release 1.237.0 (#2971)
* chore(main): release 1.237.0

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2024-01-08 15:40:02 +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:
        ...