Afaik, you can't instantiate a module in python multiple times with different parameters.
In theory you would like to do this, but it is not supported in python, therefore you would use classes as poor man's modules.
conn = import Database(host=..., user=...)