My collection structure is:

col1 = {'class':'12', 'roll':[1, 2, 3, 4]}

Now I want to update the collection col1 to

col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}

I added another roll number here. How to update this in pymongo.

link|improve this question

61% accept rate
feedback

1 Answer

 db.col1.update( { class : 12}, { $push : { roll : 5 } } )
link|improve this answer
nice. but lust is ")", not "}" – walla Oct 20 '10 at 11:24
thanks, fixed (though it is probably still more pseudo-syntax or JS-syntax than Python, but one should get the idea). – Thilo Oct 20 '10 at 13:19
feedback

Your Answer

 
or
required, but never shown

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