Files
windmill/python-client/wmill_pg
Ruben Fiszel 543d58f598 chore(main): release 1.397.2 (#4408)
* chore(main): release 1.397.2

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2024-09-20 09:52:35 +02:00
..
2024-01-16 23:32:26 +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:
        ...