Hey any plans to make the https://github.com/get-convex/convex-py client library reactive. Something like a websocket handler like:
@on_change_query("file:rpc")
def on_change(query_result: QueryResult):
# handle logic
@on_change_table("table...")
def on_change(record: RecordChangeEvent):
# handle logic
I have some backend services that need python and would love it if there was a way for me to handle side effects in my python code. I know the workaround with actions, etc and pushing the behavior to my app but i would love it if the python portion of my code was also reactive! Thanks!