Hello, I'm not sure if it's possible. But have an...
# help
l
Hello, I'm not sure if it's possible. But have anyone tried "TRIGGERING PYTHON SCRIPT WHEN ROW INSERTED IN A DB TABLE"
a
yes this is very doable https://supabase.io/docs/reference/javascript/subscribe see this section of docs
and you can start the stream on
INSERT
event as stated
on any particular table
and after that you can use
child_process
node module
to spawn new process every time an insert happens
here spawn is
your python code file
feel free to @ me if you have any doubts
l
Great, Thanks ❤️
a
yw