Flask-SQLAlchemy - Whoosh Integration
Project description
Adds Whoosh integration to Flask-SQLAlchemy.
Setup
Flask-Whooshee supports two different methods of setting up the extension. You can either initialize it directly, thus binding it to a specific application instance:
app = Flask(__name__)
whooshee = Whooshee(app)
and the second is to use the factory pattern which will allow you to configure whooshee at a later point:
whooshee = Whooshee()
def create_app():
app = Flask(__name__)
whooshee.init_app(app)
return app
Now you can create a basic whoosheer:
@whooshee.register_model('title', 'content')
class Entry(db.Model):
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String)
content = db.Column(db.Text)
and finally you can search the model:
Entry.query.whooshee_search('chuck norris').order_by(Entry.id.desc()).all()
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flask-whooshee-0.8.1.tar.gz
(14.0 kB
view details)
File details
Details for the file flask-whooshee-0.8.1.tar.gz
.
File metadata
- Download URL: flask-whooshee-0.8.1.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad4af27c8bf493b858ea89e96ff213daaad9506df408b81b112c7e43221031d7 |
|
MD5 | 42f05076f72f56b0edbd2ffd89ea1863 |
|
BLAKE2b-256 | a636dad571143828ef2f101a81ef7a50d52576feb2e5f1da5073ec424d7a415d |