I’m trying to implement the proper architecture for multiple databases under Python + Pylons. I can’t put everything in the config files since one of the database connections requires the connection info from a previous database connection (sharding).
What’s the best way to implement such an infrastructure?
Pylons’s template configures the database in
config/environment.py, probably with theengine_from_configmethod. It finds all the config settings with a particular prefix and passes them as keyword arguments tocreate_engine.You can just replace that with a few calls to
sqlalchemy.create_engine()with the per-engineurl, and commonusername, andpasswordfrom your config file.