I need to store python code in a database and load it in some kind of bootstrap.py application for execution. I cannot use filesystem because I\'m using GAE, so this is my o
If you want a more robust mechanism, you probably want to read PEP302, which describes input hooks. You can use these to import code rather than having to eval it.