MySQL is the world's most used relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases.
This plugin simplifies the use of mysql databases in your Bottle applications.
Once installed, all you have to do is to add an pymydb
keyword argument
(configurable) to route callbacks that need a database connection.
Bottle-PyMySQL
forked from Bottle-MySQL
Install using pip:
$ pip install bottle-pymysql
or download the latest version from github:
$ git clone git://github.com/tonal/bottle-pymysql.git
$ cd bottle-pymysql
$ python setup.py install
Once installed to an application, the plugin passes an open
:class:MySQLdb.connect().cursor()
instance to all routes that requires an pymydb
keyword
argument:
import bottle
import bottle_pymysql
app = bottle.Bottle()
# dbhost is optional, default is localhost
plugin = bottle_pymysql.Plugin(dbuser='user', dbpass='pass', dbname='some_db')
app.install(plugin)
@app.route('/show/<item>')
def show(item, pymydb):
pymydb.execute('SELECT * from items where name="%s"', (item,))
row = pymydb.fetchone()
if row:
return template('showitem', page=row)
return HTTPError(404, "Page not found")
Routes that do not expect an pymydb
keyword argument are not affected.
The connection handle is configurable so that rows can be returned as either an index (like tuples) or as dictionaries. At the end of the request cycle, outstanding transactions are committed and the connection is closed automatically. If an error occurs, any changes to the database since the last commit are rolled back to keep the database in a consistent state.
The following configuration options exist for the plugin class:
- dbuser: Username that will be used to connect to the database (default: None).
- dbpass: Password that will be used to connect to the database (default: None).
- dbname: Database name that will be connected to (default: None).
- dbhost: Databse server host (default: 'localhost').
- dbport: Databse server port (default: 3306).
- dbunixsocket: Optionally, you can use a unix socket rather than TCP/IP.
- keyword: The keyword argument name that triggers the plugin (default: 'pymydb').
- autocommit: Whether or not to commit outstanding transactions at the end of the request cycle (default: True).
- dictrows: Whether or not to support dict-like access to row objects (default: True).
- charset: Database connection charset (default: 'utf8')
- timezone: Database connection time zone (default: None).
You can override each of these values on a per-route basis:
@app.route('/cache/<item>', pymysql={'dbname': 'xyz_db'})
def cache(item, pymydb):
...
or install two plugins with different keyword
settings to the same application:
app = bottle.Bottle()
local_db = bottle_pymysql.Plugin(dbuser='user', dbpass='pass', dbname='local_db')
prod_db = bottle_pymysql.Plugin(dbuser='user', dbpass='pass', dbname='some_db', dbhost='sql.domain.tld', keyword='remote_db')
app.install(local_db)
app.install(prod_db)
@app.route('/show/<item>')
def show(item, pymydb):
...
@app.route('/cache/<item>')
def cache(item, remote_db):
...