Files
windmill/python-client/wmill_pg
Ruben Fiszel 20ee2faa4b chore(main): release 1.634.0 (#7929)
* chore(main): release 1.634.0

* Apply automatic changes

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com>
2026-02-12 18:57:48 +00: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:
        ...