mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
a1c0f676ca
* chore(main): release 1.0.0 * Apply automatic changes * update * 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:
...