Skip to main content

An introspective interface for Django and Document Based NoSQL databases

Project description

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
class ProfileAdmin(MongoAdmin):

    collection = 'Profile'
    search_fields = ['username']
    list_fields = ['username']

    def has_view_permission(self, request):
        return True

class ArticleAdmin(MongoAdmin):

    collection = 'Article'
    search_fields = ['title',]
    list_fields = ['title','create_date']


admins = [ProfileAdmin(), ArticleAdmin()]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-nosqladmin-0.1.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page