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.4.1.tar.gz
(12.2 kB
view details)
File details
Details for the file flask-whooshee-0.4.1.tar.gz
.
File metadata
- Download URL: flask-whooshee-0.4.1.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 626979bc62fd695d11a2674b35b1f8efb97b0f1cb6a420316e863d9d7ad3be03 |
|
MD5 | a0ee7cecc9bda42f4b346405780e371f |
|
BLAKE2b-256 | 1e2ca00b60eeaecb556ed109a590197f9e9b9c92f78b02193bf530a08d23ff43 |