PyMongo is the official Python driver for MongoDB created and maintained by 10gen, Inc.

learn more… | top users | synonyms

1
vote
1answer
26 views

How to find specific key:value 2 from python pymongo, MongoDB

My mongo db sample is: MONGO > db.pages.findOne() { "_id" : ObjectId("519b6e81661b820d0e5d4f83"), "papers" : { "text" : "RT @sydest: Sütaş reklamlarındaki inekleri erkekler ...
0
votes
0answers
20 views

“pysolr.SolrError: [Reason: /solr4/update/]” when running mongo_connector.py

As a follow on from this problem I was having before: (How long does mongo_connector.py usually take?) I was wondering if anyone else has had this problem when running the following: $ python ...
0
votes
1answer
59 views

How long does mongo_connector.py usually take?

I am trying to update a Solr index from MongoDB. The issue is that it seems to take forever to run and I can't determine whether it is timing out. I can leave it for up to 6 hours at a time and don't ...
0
votes
1answer
16 views

Is it possible to sum 2 fields in MongoDB using the Aggregation framework?

I have a collection with documents that contain fields type, totalA and totalB I want to use the aggregation framework in order to group by type - and get the sum of both totalA and totalB together. ...
0
votes
1answer
37 views

Pymongo object has no attribute 'remove'

I have modified list.html template from flask-mongokit exmaple. Added "check boxes" with name "ck" and a delete link. {% extends "base.html" %} {% block body %} <h2>All ...
1
vote
1answer
18 views

Pymongo - How to insert document to the front of the collection?

Can I insert document to the front of the collection ? Or is there method like col.find().reverse() that can reverse the sequence of the document set generated by col.find() ?
0
votes
1answer
22 views

Get no result for reading from thread in pymongo

I trying to save entry in mongodb and get id. Then I want to find this entry in thread. But sometimes I can't do it. import pymongo import bson import threading connection = ...
1
vote
1answer
23 views

pymongo DuplicateKeyError - durring upsert

I have noticed a strange behaviour of the pymongo library. When I run the following code from my unit test, everything is ok (the 2 documents are stored in their collection and the _id is set). ...
1
vote
1answer
42 views

Is it possible to utilize $addToSet multiple times in the same update?

So here is what I want the documents in my collection to look like structurally: { "_id": "123", "systems": [ { "_id": "1338", "metrics": [ ...
2
votes
0answers
20 views

How can I find which value caused a bson.errors.InvalidStringData

I have a system that reads data from various sources and stores them in MongoDB. The data I receive is already properly encoded in utf-8 or in unicode. Documents are loosely related and vary greatly ...
0
votes
0answers
22 views

How many level can mongodb append sub-documents dynamicaly?

It seems that i can go further than one subdocument if i want to add it dynamicaly, here is the code: db.users.update({"pup.cmn.id":id}, {"$addToSet":{"pup.cmn":{"abus":email}}}) this give error: ...
0
votes
3answers
63 views

add a new value to array while keeping existing one

I have below an example of data: { "id": "2", "items": { "3" : { "blocks" : { "3" : { "txt" : 'xx' } } }, "4" : { "blocks" : { "1" : { "txt" : ...
1
vote
1answer
26 views

Performance gain by using bulk inserts vs regular inserts in MongoDB

What is the performance gain by using bulk inserts vs regular inserts in MongoDB and pymongo specifically. Are bulk inserts just a wrapper for regular inserts?
0
votes
2answers
41 views

Using pymongo, how do you find all documents, such that an embedded list in each document contains greater than X elements?

I would like to run a find-query on MongoDB that searches over a set of documents in a collection, where each document contains a list of elements, and only return the documents in which the # of ...
2
votes
1answer
82 views

MongoDB large collection slow search

I have large mongodb collection(5.3 million entries), each entry has list-field and some additional fields. For example: { "_id" : ObjectId("518d51c808beda0b70cffffa"), "a" : [ 0.00037, 0.00009 ], ...
3
votes
1answer
49 views

How can I track tweets from a particular city and store in a MongoDB via python?

I would like to write a piece of code that grabs all tweets from a particular location (e.g. a city) and puts them in a MongoDB via python. As a complete newcomer to programming, I have managed to ...
0
votes
1answer
17 views

How to use AND condtion in mongokit when a key has multiple values

I have a key in my document named "tag". Now this has the structure like this: "tag": [ { "schemeName": "http:\/\/somesite.com\/categoryscheme2", "name": "Test Tag2", "value": ...
0
votes
1answer
17 views

How to pass an array of conditions in mongokit find query

How can i pass array of condtions in mongokit find query. Untill now , i am implementing queries like : data = db.entry.find({'title':{'$regex':'test'},'status':{'$regex':'active'}}).limit(3); ...
0
votes
2answers
22 views

Mongokit add objects to collection

How do you insert objects to a collection in using MongoKit in Python? I understand you can specify the 'collection' field in a model and that you can create models in the db like user = db.Users() ...
0
votes
1answer
11 views

Updating existing index in pymongo

I'm using pymongo and want to update an index from being unique to being unique and sparse. Both ensure_index and create_index don't seem to want to update the index that already exists. I'm running ...
1
vote
1answer
57 views

What is a good style around the use of getters/setters , properties while designing python classes

I came across this python code base where there is a custom ORM code that maps to MongoDb. I was asked to write new Entities following the existing pattern of code. I have only been writing python ...
0
votes
1answer
81 views

Using Python3 with Pymongo in Eclipse Pydev on Ubuntu

I am currently trying to run Pydev with Pymongo on an Python3.3 Interpreter. My problem is, I am not able to get it working :-/ First of all I installed Eclipse with Pydev. Afterwards I tried ...
3
votes
1answer
49 views

Is there a pymongo (or another Python library) bulk-save?

I'm trying to write a function to do a bulk-save to a mongoDB using pymongo, is there a way of doing it? I've already tried using insert and it works for new records but it fails on duplicates. I need ...
1
vote
1answer
20 views

MongoDB snapshot

I am using pymongo to insert and retrieve data from MongoDB. These two operations may be performed simultaneously. The question is when I do rows = db.<collection>.find() in pymongo, every time ...
0
votes
1answer
41 views

MongoDB query: Filter inside dictionary elements

I have a dictionary field in documents. A sample document with "countries" field: ... "countries": { "us": { "uid": "725129b4-debe-47dc-9ab0-aa8aa620e35b" }, "canada": { ...
1
vote
1answer
16 views

Modify the order in which properties are displayed in MongoDB

I am using PyMongo to insert data (title, description, phone_number ...) into MongoDB. However, when I use mongo client to view the data, it displays the properties in a strange order. Specifically, ...
0
votes
1answer
20 views

PyMongo, Graphing

I have several mongo databases (some populated with collections and documents, some empty) and I am trying to parse through them and create a graph for the contents. I am planning on making nodes for ...
0
votes
1answer
26 views

pymongo returns less fields

I have a following problem. Pymongo returns less fields than it should. Here is my query: db.users.findOne({'e.email': 'xxx@gmail.com', application: 'App1'}) Directly from mongo db I get: { ...
1
vote
0answers
23 views

How to append a document to a 2nd level embedded model list document in Django and mongoengine

I'm currently facing some issues trying to add a embedded model object into a list which is also inside a embedded model list. I'm using Django nonrel and mongoengine with djangotoolbox. So, this is ...
0
votes
1answer
22 views

Parsing Pymongo

I am trying to put together a program that wil parse through mongodb and get each page (eventually I will want to graph it) but I don't know what I am doing wrong here. I have been through the ...
1
vote
0answers
45 views

facebook like notifications with tornado, mongodb

I have an app that has facebook login. The users have an action which affects other users. I'd like the affected users to be notified in real time, if they are logged in, otherwise they should see the ...
0
votes
1answer
33 views

How can I use mongo functions in pymongo?

I'm looking at mongodb tutorials. I want to make use of some javascript mongodb functions, but I can't see how I can do this with pymongo. I can fire up mongo shell, but this has to be done via ...
0
votes
1answer
29 views

Is it possible to “fire and forget” a request with pymongo

For example in a tornado application, i would like to remove an element, but i don't care about the result of the remove. Is it possible to use pymongo that way : import pymongo ...
0
votes
1answer
53 views

TypeError: object of type 'Cursor' has no len()

TypeError: object of type 'Cursor' has no len() I get the above error when i try to execute reply = db['test'].find({"date":{"$gt":date_query}} ,{"date":1,"route_id":1,"loc":1,"_id":0}) ...
0
votes
1answer
69 views

Is mongodb's cursor.count() the actual count?

When I was scanning through a collection in mongodb and editting all of the items, I got this question: scanning counter i can be larger than cursor.count(). Why is this happenning? Can anyone figured ...
0
votes
1answer
51 views

mongoDB references fetching takes time

I use mongoengine as Object-Document mapper. Here is a brief description of the collections that are causing the problem. Each document in collection A, can have a list of references to documents in ...
0
votes
0answers
31 views

pymongo OperationFailure: command SON when boundary query

mongoDB version is "MongoDB shell version: 2.4.0" python version is "Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)" Here is the problem: The target is to query whether locations are out ...
0
votes
1answer
98 views

search by ObjectId in mongodb with pymongo

i need search ObjectId with python using pymongo but always get this error any ideas how to seach import pymongo from pymongo import MongoClient from pymongo import ObjectId gate = ...
0
votes
1answer
15 views

Finding document based on incomplete dictionary in pymongo/MongoDB

I am storing time as a dictionary, and I don't exactly care about the hour/minute/second because I want to find every appointment that day. Obviously (or perhaps non-obviously because I thought it ...
0
votes
1answer
22 views

pymongo - How to create/query by indices in GridFS

In my case I need to ensure the uniqueness of files via SHA1 (stored as the filename) db = pymongo.MongoClient('localhost', 27017).test gfs = gridfs.GridFS(db) # How may I create a unique index in ...
0
votes
1answer
60 views

Pymongo dict element in array output

I got a database with this info: {"_id":1, "test":6,"foo":[{"mom":5,"dad":10},{"mom":7, "dad":12}]} {"_id":2, "test":9,"foo":[{"mom":6,"dad":20},{"mom":7, "dad":15}]} {"_id":3, "test":10, ...
0
votes
1answer
25 views

How to look up the entries added to a table in last 5 seconds using Pymongo in python for mongodb

I require to look up the entries added to my mongodb collection which were created or added in the past 10 seconds . At present I do not have timestamp as part of the documents i have inserted into ...
0
votes
0answers
79 views

Error importing pymongo in my django app

I'm trying to insert documents into mongodb from django and I'm getting an error on the import statement for pymongo. I don't have a duplicate file anywhere called pymongo and I'm pretty sure my ...
1
vote
1answer
135 views

mongoDB: python code issue

could it be the wrong bottle version? I lookeed in the sessionDAO file provided by the admins, and they do it the same as i do it; the code: def __init__(self, db): self.db = db ...
2
votes
2answers
129 views

Use mock MongoDB server for unit test

I have to implement nosetests for Python code using a MongoDB store. Is there any python library which permits me initializing a mock in-memory MongoDB server? I am using continuous integration. So, ...
0
votes
2answers
40 views

How to turn these functions generic

I wanted to shorten my code, since i`m having more functions like this. I was wondering if I could use getattr() to do something like this guy asked. Well, here it goes what I`ve got: def ...
2
votes
1answer
131 views

Aggregation involving sum of array field(s) and normal field(s) in mongodb

This is the sample collection: {'f1': 10, '_id': 1, 'key': 'g', 'items': [{'i1': 10}, {'i1': 10}, {'i1': 10}]} {'f1': 10, '_id': 2, 'key': 'g', 'items': [{'i1': 10}, {'i1': 10}, {'i1': 10}]} {'f1': ...
1
vote
1answer
36 views

Sorting in MongoDB's aggregation framework

The docs for MongoDB seem to suggest that in order to sort the results of an aggerate call you should specify a dictionary/object like this: db.users.aggregate( { $sort : { age : -1, posts: 1 } } ...
5
votes
1answer
153 views

Mongoengine FileField saving to disk?

Mongoengine stores FileField and ImageField to GridFS. What's the easiest approach to replicate the functionality of the original File/Image Field? EDIT: So this is the class I have in place at the ...
0
votes
1answer
56 views

write table cell real-time python

I would like to loop trough a database, find the appropriate values and insert them in the appropriate cell in a separate file. It maybe a csv, or any other human-readable format. In pseudo-code: for ...

1 2 3 4 5 15