Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pure Python implementation of MongoDB?

Looking around for a noSQL database implementation that has an ORM syntax (pref. like Django's), lets me store and retrieve nested dictionary attributes but written entirely in Python to ease deployment and avoids Javascript syntax for map/reduce. Even better if it has a context-aware (menus), python-based console, as well as being able to run as a separate daemon task. Is there such an initiative already (I can't find it) or should I start one?

like image 249
Dantalion Avatar asked Dec 21 '22 22:12

Dantalion


1 Answers

There is a Python mongo db driver PyMongo. It is a mongodb.org Supported driver. So its up to date.

And for GUI purpose, there are several experiments going on.

  1. PHP mongo admin
  2. Futon for mongo
like image 137
RameshVel Avatar answered Dec 24 '22 13:12

RameshVel