which is the best python mongodb lib
I am a mongodb beginner and I use pymongo. I want to know it is the best to control mongodb using python. 开发者_Python百科
Pymongo is the best tool for Mongodb in python. And it's the widely used tool. It's getting popular drastically and it has seen so many versions current being PyMongo 1.10.1. I think you are in the right direction using pymongo
PyMongo is best if you don't need much of schema, ORMs, otherwise as Bastian suggests MongoKit is good and you could/should also have a look at
- Ming which has sqlalchemy style ORM.
- MongoEngine
I use MongoKit. It adds some stuff like Models to pymongo but you can still use all pymongo functions.
Link: http://namlook.github.com/mongokit/
精彩评论