I am breaking up a large monolothic python file into six separate submodules.
Originally in onebigfile.py, I had
conn = MySqldb.connect()
c = conn.cursor()
and then a function would use it as so:
def getFromDB():
c.execute(sql)
Now, I have restructured my module to
NewModule/
__init__.py
users.py
accounts.py
sixmoreofthese.py
What I'm puzzling over is what to do with semi-scarce resources like my MySQL connection.
Is there a way to access a parent namespace, e.g. conn. and c. could be put in __init__.py ? I don't want to instantiate a whole bunch of connections to MySQL. Just dumping them there and calling them as if they're part of the global namespace doesn't work.. That is:
__init__.py:
conn = MySqldb.connect()
c = conn.cursor()
> import NewModule
> NewModule.users.login('a','b')
--- login function calls the Mysql c. from the global namespace and can't find it.
To anticipate one suggestion: it makes sense to split these files -- there's roughly 50-75k worth of python, and a group of people that need to work with the code, plus there are pretty clear conceptual groupings of functionality.