I am new on MongoAlchemy. Currently i have pymongo which i only need use 1 URL to connect to mongolabs server
mongodb://myusername:secretpassword@ds045801-a1.mongolab.com:45801,ds045808-a0.mongolab.com:45808/mydatabase_name
While MongoAlchemy use MONGOALCHEMY_SERVER but it seems only take 1 host. Is there anyway to use the whole url as connection string? e.g
app.config['MONGOALCHEMY_SERVER'] = 'mongodb://myusername:secretpassword@ds045801-a1.mongolab.com:45801,ds045808-a0.mongolab.com:45808/mydatabase_name'
Cheers