bottle-web2pydal 0.0.1
Web2py Dal integration for Bottle.
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)
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| bottle-web2pydal-0.0.1.tar.gz (md5) | Source | 2011-10-13 | 121KB | 291 | |
- Author: Martin Mulone
- Home Page: http://bottleweb2py.tecnodoc.com.ar
- License: LGPL v3.0
- Platform: any
- Requires bottle (>=0.9)
-
Categories
- Environment :: Web Environment
- Intended Audience :: Developers
- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Operating System :: OS Independent
- Programming Language :: Python
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
- Topic :: Software Development :: Libraries :: Python Modules
- Package Index Owner: mulonemartin
- DOAP record: bottle-web2pydal-0.0.1.xml
