Not as knowledgeable as Ben, but he used DataNitro quite a bit, and here are some tips:
The shell automatically closes after running the script. If you want to check some fingerprints or even interact with the shell, I usually place it at the end of my script.
raw_input("Press Enter to Exit shell")
Not very elegant, but I even created a small loop that displays text options in the console. You can then interact with your program and worksheet. A smarter and more elegant way would be for your polling script to highlight the excel cell and then apply the action form.
Something else that might seem nice to you is that it also launches Ipython instead of the default python shell. I can’t imagine how to use python without Ipython ... so you get the benefits of debugging Ipthon debugging, etc. To activate this, simply click on the “Use Ipython” checkbox in the DataNitro settings (I don’t know if this depends on the version).
source share