Metadata-Version: 1.1
Name: mondb
Version: 0.0.1
Summary: MongoDB Models
Home-page: https://github.com/RevelutionWind/MDB.git
Author: plasmashadow
Author-email: plasmashadowx@gmail.com
License: BSD 2-Claus
Description: 
        <h1>MDB- MongoDB Models </h1>  
        
        [![Build Status](https://travis-ci.org/RevelutionWind/MDB.svg?branch=master)](https://travis-ci.org/RevelutionWind/MDB)
        
        <h2> Models </h2>
         Inorder to create a Model you first need to inherit Document class in Mongodb
         
         ```python
         from mdb.Connection import create_engine
         import mdb
         
         create_engine(database ="Management", host= "localhost", port=27017)
         
         class Management(mdb.Document):
             name = mdb.StringProperty()
             age = mdb.IntegerProperty()
         
         m = Management(name = "sathya", age =23)
         m.save()
         
         #inorder to query the entity
         
         cursor = Management.find({"name":"sathya"})
         for element in cursor:
            print element[0].name,element[0].age
            
        
         ```
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
