bottle-sqlite
bottle-sqlite copied to clipboard
…because the getargspec() function was removed from the inspect module. Without this, the library does not work with Python 3.11.
Currently, the foreign key enforcement in SQLite is [disabled by default](http://www.sqlite.org/pragma.html#pragma_foreign_keys), would it be possible to add an option that enable it automatically? ``` $ sqlite3 SQLite version 3.9.2 2015-11-02...
This PR address #26 by adding support for the `sqlite3.connect()` `detect_types` parameter. It uses the same default as the module (`0`) if a value is not supplied to allow for...
Please note this can't compil until version of bottle integrate another pull request to handle closure recursion issue
For some time, the sqlite module for Python3 has supported retrieving datetime fields from sqlite as `datetime.datetime` python objects. If I do a call via a function direct to the...
Hi guys! Thank you very much for creating and sharing this project. I'm really excited about the possibilities. I got the basics working, however I ran into a problem trying...
If you implement a decorator like: ``` @app.route('/secret/:item') @valid_user() def secret(item, db): ... ``` The `valid_user()` plugin will throw an error like ``` Traceback (most recent call last): File "/home/oznt/Software/bottlesession/bottle.py",...
I like the concept of this plugin, but I found I had to roll my own because I needed a way to get a database connection object (with all of...
the difference is in python2 support btw, there is a third, quite different version bundled with bottle see https://github.com/bottlepy/bottle/issues/969
I am using bottle v0.12.8 with bottle-sqlite and whenever I start the server I get a warrning: /usr/local/lib/python2.7/dist-packages/bottle.py:527: DeprecationWarning: Switch to Plugin API v2 and access the Route object directly....