I have two mongo databases on two different servers. One server is mongo 2.4 and the other is mongo 3.0.3. How would I get a single python app server to connect and read from both? From pip it looks like I can only install one version of pymongo, thus making it impossible to access both databases.

Does anyone know of a way this can be done?

1

There are 1 best solutions below

0
On BEST ANSWER

According to documentation PyMongo 3.0 supports both MongoDB 2.4 and MongoDB 3.0. Thus you just need to create two corresponding MongoClient instances and use them as you need to.