mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
813d1d97d4
* chore(main): release 1.286.1 * Apply automatic changes --------- Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
wmill
The postgres extension client for the Windmill platform.
Quickstart
import wmill_pg
def main():
my_list = query("UPDATE demo SET value = 'value' RETURNING key, value")
for key, value in my_list:
...