Is there any kind of API documentation for asyncmongo? On GITHub they say "asyncmongo syntax strives to be similar to pymongo <http://api.mongodb.org/python/current/api/pymongo/collection.html>.".

However, many basic things do not work or they are not similar.

http://api.mongodb.org/python/2.1.1/tutorial.html

Example from pymongo:

 db.collection_names()
[u'posts', u'system.indexes']

The same in asyncmongo:

TypeError: 'Cursor' object is not callable

Even the connection is different: pymongo.Connect versus asyncmongo.Client. It has a "pool_id" parameter and what the hack is that? Is there no documentation for asyncmongo at all?

Thanks,

   Laszlo

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to