django-nosqladmin icon indicating copy to clipboard operation
django-nosqladmin copied to clipboard

NoSQL Admin for Django

================= django-nosqladmin

Many NoSQL databases, mostly the Document based ones, translate into Python as a list of dictionaries, right? So why do us developers try to staple document databases into Django's traditional style relational introspection and tools? It's like we're trying to add object impedance mismatch to something that avoids it in the first place.

Taking lessons learned from django-mongonaut, django-nosql-admin is an introspection tool for NoSQL databases. Our original test case is MongoDB, but if this works we'll invite authorship of interfaces for other NoSQL databases.

Fundamentals

  • Display the results of lists of dictionaries

  • mongoadmin.py features:

    • Define a collection
    • Only show ObjectId by default
    • Can add search fields which attempt to search
    • Can add list fields which try to display
    • Define which collections are displayed.

Sample mongoadmin.py file::

# mongoadmin.py
from nosqladmin.mongodb import MongoAdmin

from django import forms # in theory can be from any widget library

class ProfileAdmin(MongoAdmin):
    
    collection_name = 'example_blog.Profile'
    search_fields = ['username']
    list_fields = ['username']

    def has_view_permission(self, request):
        return True

class ArticleAdmin(MongoAdmin):

    collection_name = 'example_blog.Article'
    search_fields = ['title',]
    list_fields = ['title','create_date']
    form_template = {
        'title':forms.CharField(),
    
    }

Sample settings.py integration::

# list of tuples that have the module name and then the class. 
# Done this way to make importing possible
NOSQLADMINS = [("mongoadmin", "ProfileAdmin"), ("mongoadmin", "ArticleAdmin")]