Tagged Questions
0
votes
0answers
12 views
Mongokit object has no attribute 'remove'
I have modified list.html template from flask-mongokit exmaple, to add "check boxes" to tasks with name "ck".
{% extends "base.html" %}
{% block body %}
<h2>All Items</h2>
<ul>
...
-2
votes
3answers
45 views
Take off '[' from Json string?
I have a JSON return string from MongoDB
[{'api_calls_per_day': 0.29411764705882354, '_id': ObjectId('51948e5bc25f4b1d1c0d303a'), 'api_calls_total': 5, 'api_calls_with_key': 3, ...
0
votes
1answer
17 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
16 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
34 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": [
...
1
vote
2answers
41 views
TypeError: ObjectId('') is not JSON serializable
My response back from MongoDB after querying an aggregated function on document using Python, It returns valid response and i can print it but can not return it.
Error:
TypeError: ...
0
votes
1answer
38 views
Securely storing passwords on MongoDB + Python
I have a MongoDB running on Heroku, and I need to store full credentials for a 3rd party API, including password, username, security token, etc.
What is the best way to protect the data?
Would ...
1
vote
2answers
45 views
Get array items inside a mongodb document
I have this kind of document:
For this _id, I want to get all events with "events.time" > time1 (and only these ones):
{
"_id": ...,
"events": [
{"time": 345678, "value": "1"},
...
0
votes
3answers
60 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" : ...
0
votes
2answers
97 views
mongoengine django and encoding, 'utf8' codec can't decode byte
My mongodb use utf-8, and the django read data from it is not unicode, perhaps it is the answer,but how to solve this problem?
the data in mongodb have some Chinese. If I use the other table totally ...
-1
votes
0answers
32 views
mongodb - exception:read error, or input line too long (max length: 16777216) [closed]
I am using python to read JSON file into mongodb but i get the following error. I have searched online but have not found the solution yet. Any help would be appreciated. Thanks.
Mongodb and ...
1
vote
3answers
60 views
Python Design Pattern for data transformations
I find myself doing something like this quite a bit:
if 'id' in kwargs:
query['_id'] = ObjectID(kwargs.pop('id'))
if 'name' in kwargs:
query['event'] = kwargs.pop('name')
if 'keywords' in ...
0
votes
2answers
34 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
80 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
37 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
13 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
0answers
17 views
Mongokit no collection found error
I'm trying to save an object to mongodb with Mongokit. For some reason I am getting a "Connection Error: no collection found", only for this particular class model, Game.
I have defined the ...
0
votes
1answer
26 views
Mongodb query return type
When I make a query in Mongodb using Mongokit in Python, it returns a json document object. However I need to use the return value as a model type that I have defined. For example, if I have the ...
0
votes
1answer
37 views
In a jinja2 template, how do i check if an element in a mongo database is one of three possible strings?
My template has if/else functionality to handle displaying buttons on a page, I've managed to add an elif statement that displays the buttons only if an element in a mongo database is not one of three ...
-1
votes
2answers
32 views
Capture mongo shell output using subprocess.Popen
I am trying the following:
#!/usr/bin/python
import os, subprocess
func = 'print("Hello World")'
x = subprocess.Popen(['mongo', '--eval', func], stdout=subprocess.PIPE,
...
-1
votes
0answers
58 views
Django and NoSql - use or not [closed]
Is a good idea to use a NoSQL(couch db/mongo) database with django? The project will operate on multiple files, upload, ocr integration, categorizing files, parsing text document etc.
Is this a good ...
0
votes
1answer
14 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
21 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()
...
1
vote
1answer
56 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
0answers
21 views
get image from image.files with objectid
I have a problem with mongoengine. I get an objectid of an image in image.files collection. How could I get the image in django, just like image.files.objects(pk=objectid).first()?
Is there any apis ...
4
votes
4answers
146 views
Lookup speed: State or Database?
I have a bunch of wordlists on a server of mine, and I've been planning to make a simple open-source JSON API that returns if a password is on the list1, as a method of validation. I'm doing this in ...
3
votes
1answer
48 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 ...
2
votes
2answers
48 views
How to move db request (which uses yield) in an other function?
I'm playing with tornado and mongodb, with the asynchronous driver motor.
When working with callbacks everything's fine. Then I discovered the possibility to use motor.Op or tornado.gen.Task to ...
0
votes
1answer
17 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
24 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:
{
...
0
votes
2answers
45 views
storing full text from txt file into mongodb
I have created a python script that automates a workflow converting PDF to txt files. I want to be able to store and query these files in MongoDB. Do I need to turn the .txt file into JSON/BSON? ...
0
votes
1answer
21 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 ...
0
votes
0answers
37 views
I'm using django serializers to deserialize a json with nested elements but can't get the right classes
I would like to deserialize a json request into class serializers but can't get the correct wrapper class.
This is the json I use:
{
"NewData":
{
"UserID":"12345",
...
0
votes
1answer
29 views
Does pymongo require mongodb to be installed locally?
In my AWS production environment I currently have 3 instances running a mongodb replicaset. I have created a separate instance that contains a web server and all my python application code. Do I need ...
-1
votes
1answer
33 views
How does a connection pool in MongoDB with pymongo driver?
I'm using mongodb with pymongo driver on gevent based framework. I don't understand working pool connection. I'm creating a new connection instance on every request:
connection = ...
1
vote
1answer
25 views
Flask/Mongo/Jinja - Slicing a ListField and showing the last entries of the database
I have a list with 12 categories inside an object, I want to get the first 3 itens of this list and show only the last entry of the database of each one of these 3 itens. What am I doing wrong? I ...
2
votes
2answers
39 views
How do I customize mongo query comparison rule
I have some data that are dates alike:
2013-03-26 05:33:15
2013-03-26 16:48:39
...
And I don't wanna compare them with my query using the default Date() way. Because I'm only interested in ...
0
votes
1answer
31 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 ...
-2
votes
0answers
48 views
How would you design this example [closed]
Imagine you have an advertising system where users can post ads.
Users can create millions of ads, but only 10 can be viewed at the same time.
Ads are valid for a random period of time - one can be ...
0
votes
1answer
41 views
Django Mongoengine concurrent saves are failing
I have a web API running on Django using Mongoengine which does the following
print "Saving", data
modelObj.dataList.append(data)
modelObj.save()
I also have an API that calls this function in a ...
0
votes
1answer
47 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
63 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 ...
-2
votes
0answers
50 views
MongoDB syntax varies with scripting lanuage [closed]
I am really curious to know if any MongoDB's fundamental function is varying with scripting language like PHP, Python, Ruby etc.
0
votes
0answers
69 views
MongoDB -> Design decision for huge datasets
here is my problem. I have a 50 cities (a,b,....), each city contains up to 4000 addresses (a1, a2, ... or b1, b2, ...) and each of these addresses contains a list with 10.000-40.000 ...
0
votes
2answers
396 views
Django + MongoDB
Im trying to use MongoDB together with Django. It's not going well.
I've followed this guide to set it up so all necessary thins is installed.
MongoDB + Django tutorial
My problem is as follows:
When ...
3
votes
1answer
55 views
Django non-rel failing to sync db with mongo 2.4.2
I have been using Django 1.3 non-rel with django-mongodb_engine 0.4. Mongodb version being used was 1.8.2 and things were working fine. Recently i tried to upgrade to mongodb 2.4.2(latest stable) ...
0
votes
1answer
38 views
Internal Server Error 500 in Mongod for Python code
I am taking the MongoDB m101p course and I run into trouble;
Started mongod
Started python blog.py listener
Logged in with a existing user
Added a new post
Added comments to that post
The problem ...
-4
votes
2answers
63 views
How to defer the execution of a python task in tornado?
I've got an internet site running on tornado, with video features (convert, cut, merge).
The video traitement is quite long, so i want to move it to another python process, and keep the tornado ...
2
votes
1answer
34 views
a class extend from Document ,EmbeddedDocument save failed
models.py
class User(EmbeddedDocument,Document):
''' Store user's info'''
user_id = IntField(unique = True)
user_name = StringField(unique =True,primary_key =True,max_length = 256)
...
5
votes
6answers
1k views
Mongoengine creation_time attribute in Document
I am trying to add a creation_time attribute to my documents. The following would be an example:
import datetime
class MyModel(mongoengine.Document):
creation_date = mongo.DateTimeField()
...
