Hi Michael, idm_rw.py is simply a class that is fed stdin and processes and returns the input via stdout. The sqlalchemy imports at the top are leveraged within the classes init method for configuration queries.
There are two plugins like this, each one is invoked in a fresh process and loads the sqlalchemy classes. During normal running, the plugins are fired up several times repeatedly and process many streams of stdin, so the main code from my module in the earlier post where I construct the tables gets imported into each plugin every startup. The plugins are isolated from each other as the interpreter is launched in its own process every time stdin is required to be processed. I am certain neither knows of the other. Thanks for all the patience! jlc -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/groups/opt_out.
