mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
e4cd931ab5
this reverts b46d0ff11d introducing
alternative way of avoiding bug described in
https://github.com/windmill-labs/windmill/issues/736#issuecomment-1279679730
the improvement here is that we're able to support more python versions
now
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:
...