Metadata-Version: 1.0
Name: python-stdnet
Version: 0.2.2
Summary: A networked standard template library and ORM for python
Home-page: http://code.google.com/p/python-stdnet/
Author: Luca Sbardella
Author-email: luca.sbardella@gmail.com
License: BSD
Description: Python StdNet
        ===================
        
        A networked standard template library for python. It includes a lightweight ORM.
        
        
        Backends
        ====================
        
         * local memory
         * memcached (not fully supported)
         * redis
         
         
         Installing and Running
         ================================
         To install::
         
         	python setup.py install
         	pip install python-stdnet
         	easy_install python-stdnet
         
         
         Object-relational mapping
         ================================
         The module ``stdnet.orm`` is a lightweight ORM.
         For example::
         
         	from stdnet import orm
         	
         	
         	class Group(orm.StdModel):
         		name = orm.AtomField(unique=True)
         		
         		
         	class User(orm.StdModel):
         		username = orm.AtomField(unique=True)
         		password = orm.AtomField()
         		group	 = orm.ForeignKey(Group)
         
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
