If it works as expected, but I would like it not to be deleted once it is executed, for example I would like to put A1, A2, A3 without it being deleted and every time I put a text it is executed
But every time I put a word I would like the script to be executed, what it currently does is ADD store and just when I close it executes; I would like it to be executed as in the first code, only that it will not be deleted every time it is executed
In Dynamo Player it works very well, it is just that I want to understand a little more python, I think Amol has made an excellent answer but it is not exactly what I want I suppose that I am not understood very well by the idiom.
I want that as in Dynamo Player once I change the type of text it is executed
A1 â RUN
A2-> RUN
A3-> RUN
but it does not kill that it closes every time it is executed
I donât have anything on hand, but effectively youâd need to wrap your code int he âupdateâ section of the code @AmolShah posted, only iterate over the file when you push update.
This gets difficult and cumbersome as your code runs.
Thank you
When I understand a little more about python I hope I can achieve it, thank you very much for all the answers I will leave the @AmolShah answer marked, which was the closest to what I was trying to do.