Questions tagged [djongo]

For usage with the djongo backend driver for MongoDB with the Django framework

Djongo allows you to use MongoDB as the database back end with the Django framework.

The project can be found on GitHub:

https://github.com/nesdis/djongo

274 questions
-1
votes
1 answer

Django Exchange

i'm trying to develop an exchange application for a project using djongo. When I try to add a new Order this is what django returns: image of the error The code I wrote is: from django.db import models from django.contrib.auth.models import…
-2
votes
1 answer

Mongodb, create update in python

Here is my mongodb object. I need to write update function for "graded" field. Sometimes i need to create this field, sometimes update. @api_view(['POST']) def updateGrade(request): db = connect_to_db() data = json.loads(request.body) …
-3
votes
1 answer

RecursionError: maximum recursion depth exceeded in comparison with djongo.exceptions.SQLDecodeError:

I am trying to make an app with django using djongo and mongodb. The connectivity for tables with no foreign key is working fine but where there is a Foreign Key involved, it is throwing this error. I will be greatful if anyone could help. I am…
1 2 3
18
19