mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
40834319a9
* Apply automatic changes * Update version.txt * Apply automatic changes * Update CHANGELOG.md 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:
...