I'm trying to configure me pyramid app like

https://github.com/niallo/pyramid_mongodb/blob/master/pyramid_mongodb/paster_templates/pyramid_mongodb/+package+/init.py_tmpl

but at config.registry.settings['mongodb_conn'] = conn get an error:

  File "/usr/local/lib/python2.6/dist-packages/pymongo-2.0.1-py2.6-linux-i686.egg/pymongo/database.py", line 682, in __call__
    "failing because no such method exists." % self.__name)
TypeError: 'Database' object is not callable. If you meant to call the '__html__' method on a 'Connection' object it is failing because no such method exists.

what's wrong?

link|improve this question
What db_uri you're using? – varela Sep 1 '11 at 10:38
I think it's the same question as stackoverflow.com/questions/7201969/…. – Antoine Leclair Sep 1 '11 at 12:18
feedback

3 Answers

This is actually a bug in pyramid_debugtoolbar <= 0.9. Upgrade to 0.9.1 or disable the debug toolbar.

link|improve this answer
seems like the bug exists also in 0.9.1 and 0.9.2 – Pekka Toiminen Sep 12 '11 at 1:37
feedback

Check your MongoDB URI it should be in format like described here

http://www.mongodb.org/display/DOCS/Connections

mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]

link|improve this answer
mongodb://localhost db_uri = settings['mongodb.url'] conn = pymongo.Connection(db_uri) config.registry.settings['mongodb_conn'] = conn also dont work – alexzH Sep 1 '11 at 11:02
try just localhost – varela Sep 1 '11 at 11:41
feedback

I'm currently using a workaround found here: https://groups.google.com/group/pylons-discuss/browse_thread/thread/394fb7ae9838f840/5d7a24a1d899844f?hl=fr&lnk=gst&q=html+mongodb+#5d7a24a1d899844f

In your __init__.py, just after the line

conn = pymongo.Connection(db_uri)

Add this:

conn.__html__ = lambda: "mongodb connection"

and this is enough to use the debug toolbar with mongodb as described in the pyramid cookbook.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.