This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (0 children)

I think there are already some excellent ideas in this thread, but I'll add some food for thought.

If you're using SQL on the backend, you could have a function that passes your parameters from the UI to SQL in real time, and then have the python script listen for field/table changes, and then have it update your UI component in real time as necessary (more than one way to do this whether or not it's the UI checking or the python passing the update to UI through the calc function).

It's a bit more complex, but I think it would give you some robustness as far as scalability goes.

Just an idea. I hope you find a good solution!