Bottle-MySQL is a plugin that integrates MySQL 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.
Results are returned as dictionaries.
Usage Example:
import bottle
import bottle_mysql
app = bottle.Bottle()
# dbhost is optional, default is localhost
plugin = bottle_mysql.Plugin(dbuser='user', dbpass='pass', dbname='db')
app.install(plugin)
@app.route('/show/:<tem>')
def show(item, db):
db.execute('SELECT * from items where name="%s"', (item,))
row = db.fetchone()
if row:
return template('showitem', page=row)
return HTTPError(404, "Page not found")
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bottle-mysql-0.3.1.tar.gz
(3.2 kB
view details)
File details
Details for the file bottle-mysql-0.3.1.tar.gz.
File metadata
- Download URL: bottle-mysql-0.3.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e720630560f9279efd7466f8b37af31d835252f4b69f3e9da94d08e7a2cb40c8
|
|
| MD5 |
e307ca4f699e6807448c09e94ba580db
|
|
| BLAKE2b-256 |
10f7d6c2b67a1942786006695f00a1dec76a623e27f5a7859929ac4f4bec4842
|