Metadata-Version: 1.1
Name: bottle-web2pydal
Version: 0.0.1
Summary: Web2py Dal integration in Bottle Framework.
Home-page: http://bottleweb2py.tecnodoc.com.ar
Author: Martin Mulone
Author-email: martin@tecnodoc.com.ar
License: LGPL v3.0
Description: 
        Bottle-DAL is a plugin that integrates Web2py DAL Database Abstraction Layer
        with your Bottle application. It automatically connects to a database at the
        beginning of a request, passes the database handle to the route callback and
        closes the connection afterwards.
        
        To automatically detect routes that need a database connection, the plugin
        searches for route callbacks that require a `db` keyword argument
        (configurable) and skips routes that do not. This removes any overhead for
        routes that don't need a database connection.
        
        Usage Example::
        
        from bottle import route, view, run, debug, install
        from bottle_dal import DALPlugin, Field
        
        def define_tables(db):
            """My tables definitions here"""
            db.define_table('person',Field('name','string'))
        
        install(DALPlugin('sqlite://storage.sqlite',
                          define_tables = lambda db: define_tables(db)))
        
        @route('/')
        def index(db):
            """ Index Example """
        
            if db(db.person.id>0).count()==0:
                db.person.insert(name='James')
                db.person.insert(name='Michael')
                db.person.insert(name='Steve')
                db.person.insert(name='Robert')
                db.commit()
        
            persons = db(db.person.id>0).select()
        
            return dict(persons=persons.json())
        
        if __name__ == '__main__':
            debug(True)
            run(host='localhost', port=8080)
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: bottle (>=0.9)
Requires: simplejson
