Questions tagged [flask-whooshee]

Customizable Flask - SQLAlchemy - Whoosh integration. flask-whooshee provides more advanced Whoosh integration into Flask. Its main power is in the ability to index and search joined queries.

Customizable Flask - SQLAlchemy - Whoosh integration

flask-whooshee provides more advanced Whoosh integration into Flask. Its main power is in the ability to index and search joined queries (which to my knowledge no other Flask - SQLAlchemy - Whoosh integration library doesn't provide).

https://github.com/bkabrda/flask-whooshee

7 questions
7
votes
1 answer

using BufferedWriter in flask whooshalchemy

Hi I am running a flask app with a postgreSQL database. I get LockErrors when using multiple workers. I learned that this is because the whoosh search locks the database…
carl
  • 4,216
  • 9
  • 55
  • 103
4
votes
2 answers

"Query has no attribute 'whoosh_search" AttributeError in Flask + Whoosh + SQLAlchemy

I have a strange problem with Flask-WhooshAlchemy as well as Flask-Whooshee that resembles these issues: https://github.com/gyllstromk/Flask-WhooshAlchemy/issues/13 https://github.com/miguelgrinberg/flasky/issues/8 I started off with…
szxk
  • 1,769
  • 18
  • 35
2
votes
1 answer

Flask-msearch python , adding msearch on many to many table

I am working on python with postgres database ,i have two tables which have many to many relation and third table in which relations are saved , i need to apply flask-msearch on relations table in a way that it fetches & search in both tables and…
Muhammad Aadil Banaras
  • 1,134
  • 1
  • 11
  • 21
1
vote
2 answers

AttributeError: 'BaseQuery' object has no attribute 'whoosh_search'

I am using Flask (python), creating whooshe search, I have followed all steps from this link, also tried from other links too, but every time at end I came to this error: results = BlogPost.query.whoosh_search('cool') AttributeError:'BaseQuery'…
1
vote
0 answers

Flask / Whoosh full text search just redirecting me to index

I'm using Flask.ext.WhooshAlchemy, a Flask wrapper for the Whoosh full text indexing & searching library.I have an index page with a search form on it, and this is the relevant part of the views.py : @app.route('/') @app.route('/index') def…
n1c9
  • 2,662
  • 3
  • 32
  • 52
0
votes
2 answers

Flask-Whooshee a error 'WhoosheeQuery' object has no attribute '_join_entities'

this is my model based flask-sqlalchemy @whooshee.register_model('title','content') class PostModel(db.Model): __tablename__ = 'post' id = db.Column(db.Integer,primary_key=True,autoincrement=True) title =…
0
votes
1 answer

Flask-Whooshee returning no results

I've been working on trying to integrate some form of full text search to a small assignment (for fun). Unfortunately, no matter the search term, it returns no results, not even when I enter exact information. For example, when I perform a search…
Battleroid
  • 861
  • 2
  • 14
  • 30