Tagged Questions
Whoosh is a fast, featureful full-text indexing and searching library implemented in pure Python.
9
votes
4answers
6k views
Full-text search on App Engine with Whoosh
I need to do full text searching with Google App Engine. I found the project Whoosh and it works really well, as long as I use the App Engine Development Environement... When I upload my application ...
5
votes
2answers
230 views
Fuzzy String Searching with Whoosh in Python
I've built up a large database of banks in MongoDB. I can easily take this information and create indexes with it in whoosh. For example I'd like to be able to match the bank names 'Eagle Bank & ...
4
votes
3answers
412 views
Among Lucene/Solr, Whoosh, Sphinx, Xapian which integrates best with python?
I am a newb coder in a startup and I am implementing search of documents in a directory in a web host.
I am comparing Lucene/Solr, Whoosh, Sphinx and Xapian. Whoosh is natively python. But I want ...
3
votes
1answer
45 views
Document comparison / similarity using Whoosh Python Search Library
How do I get a similarity measure of a document using Whoosh?
I want to create a "Related" feature that ranks other previously indexed documents that have a high similarity to a document.
Do I ...
3
votes
1answer
297 views
Haystack + Whoosh IndexError: Index was created on an architecture with different data sizes
When rebuilding my indices via ./manage.py rebuild_index I get this error:
Traceback (most recent call last):
File "manage.py", line 11, in <module>
execute_manager(settings)
File ...
3
votes
1answer
268 views
Whoosh index viewer
I'm using haystack with whoosh as backend for a Django app.
Is there any way to view the content (in a easy to read format) of the indexes generated by whoosh? I'd like to see what data was indexed ...
2
votes
1answer
80 views
Django-haystack returns results with “simple” backend, but not with “whoosh”
I'm trying to integrate a search with django-haystack,
While it works well with the "sample" backend, when replacing the backend with whoosh it always returns 0 results.
settings.py:
...
2
votes
1answer
56 views
Strange error adding to Whoosh index
Can anyone help me with this strange error I'm getting when adding a new document to a Whoosh index?
Here's the code:
def add_to_index(self, doc):
ix = index.open_dir(self.index_dir)
writer ...
2
votes
1answer
107 views
taggit and haystack+whoosh
I have a puzzle, my haystack+whoosh works just fine:) I can search through f.e. name of the content. BUT I want to add "taggit" to my core-model and search through tags then I have NO results:// and I ...
2
votes
2answers
181 views
MongoDB and Whoosh. Do I need both?
I am working on the project that uses MongoDB and Whoosh. I wonder if the Whoosh is necessary if I can use MongoDB search. I am sure Whoosh was setup in the system for good, but I am not sure I ...
2
votes
0answers
128 views
whoosh MultifieldParser field search or query parser concatenation
I'm trying to use whoosh to add search functionality to my blogapp on appengine but I don't understand some stuff.
The blogentries are indexed with title, content and status fields.
I would like to ...
2
votes
1answer
293 views
Document search on partial words
I am looking for a document search engine (like Xapian, Whoosh, Lucene, Solr, Sphinx or others) which is capable of searching partial terms.
For example when searching for the term "brit" the search ...
2
votes
1answer
202 views
Python Website Full-Site Search
I'm wondering if anyone has any recommendations for a Python full-text search engine similar to mnogosearch. I'm trying to get it to function like Mnogosearch, but not sure how that compares to other ...
2
votes
1answer
266 views
Haystack indexes not all items
I am using django haystack with whoosh for full-text search. There are nine different models to index, but when I search for indexed entries, it seems that none or not all of them get indexed for some ...
2
votes
1answer
362 views
Django+Haystack+Whoosh: how to deal with language inflection
Many languages in Europe are inflectional. This means that one word can be written in multiple forms in text. For example, word 'computer' in polish "komputer" has multiple forms: "komputera", ...
2
votes
2answers
987 views
Django-Haystack/Whoosh - Rebuild Index Error
Python 2.5, Django 1.2.1, most recent haystack, most recent whoosh
This is my first delve into Django-Haystack. I was following the "Getting Started" guide from Haystack and everything seemed to be ...
2
votes
2answers
261 views
Django-Haystack + Whoosh - Are misspelling suggestions possible?
I'm using Whoosh and Django-Haystack. I would like to make use of query suggestions for when users mistype words.
e.g. Maybe you meant "unicorn"
Is it necessary to use another search engine? ...
2
votes
2answers
914 views
Haystack / Whoosh Index Generation Error
I'm trying to setup haystack with whoosh backend. When i try to gen the index [or any index command for that matter] i receive:
TypeError: Item in ``from list'' not a string
if i completely remove ...
1
vote
1answer
24 views
Whoosh, Haystack, and AttributeError: 'Segment' object has no attribute 'compound' in production only
I'm using Whoosh 2.3.2, Haystack 2.0.0, and Django 1.3 under Python 2.7. On Localhost, it works great. In production, it explodes when I search.
Here's the full traceback:
File ...
1
vote
2answers
56 views
Using haystack with Whoosh
Requires setting HAYSTACK_WHOOSH_PATH to the place on your filesystem where the Whoosh index should be located.
Can anyone explain where exactly this path is pointing? I mean what should i give in ...
1
vote
1answer
144 views
Django-haystack with whoosh
I am getting
SearchBackendError at /forum/search/
No fields were found in any search_indexes. Please correct this before attempting to search.
with search_indexes placed in djangobb app root ...
1
vote
2answers
194 views
Django haystack: writing a whoosh index to an S3 Bucket?
How can I configure my django app to write the haystack/whoosh index to an S3 bucket?
I can't find any information on how to get going with this topic. Incidentally I am using Heroku for deployment.
...
1
vote
1answer
89 views
Does whoosh require all strings to be unicode?
I am redoing my search app in Whoosh from Solr. I am now learning from the quick start. But I kept running into problems each time I had to deal with strings
>>>writer.add_document(iden=fil, ...
1
vote
2answers
139 views
Text indexers (for python) with inbuilt support for doc, docx and pdf files
I am currently on the lookout for a text indexer for my python program. I shortlisted Solr, a Lucene project and Whoosh, which is native to python. I searched a lot of documentation on support for ...
1
vote
0answers
181 views
django-cms-search not displaying any results
Hey I have been plugging away trying to get haystack working with whoosh to implement a search backend for a django cms project i have been working on. After figuring out some really weird ...
1
vote
0answers
136 views
Issue with Haystack/Whoosh SearchQuerySet's order_by
I define an index as shown below, zero-padding the order_key integerfield as specified in the doc.
class PlaceIndex(SearchIndex):
text = CharField(document=True, use_template=True)
order_key ...
1
vote
2answers
331 views
Django Haystack Indexing More than one models
I am trying to implement Haystack search for my website with Whoosh back-end. I have been able to successfully setup the haystack app and I can search the model that I have registered, but when I ...
1
vote
1answer
102 views
Sharing Whoosh index
I'm implementing a CMS site in Django, and I'd like to add full-text content search. The site is reasonably small and will generate low search traffic, so I think Whoosh will be a reasonable ...
1
vote
1answer
299 views
no result are found - haystack django whoosh
everyone!
I have a huge problem!
I am using haystack and whoosh and django. I am sure I've done everything that is required to be done to make it works according to the documentation.
BUT!!!! ...
1
vote
1answer
119 views
Search results are duplicated after update_index (django haystack+whoosh)
I use django-haystack with whoosh as a backend. I call update_index command in a scheduled intervals and I've noticed that after each update my search results contains a lot of duplicated entries (eg. ...
1
vote
3answers
100 views
Trouble sending data between PHP and Python
I've been trying to set up a very basic search engine using the Whoosh modules in python called on from PHP. I had it working until I upgraded the modules for some additional features I needed. At ...
1
vote
1answer
243 views
ValueError when using Whoosh and Django Haystack
I'm trying to set up Haystack with Whoosh but am getting this value error "ValueError: dictionary update sequence element #0 has length 9; 2 is required" when I run the count method on the ...
1
vote
1answer
470 views
Django haystack multivalued doesn't work
I've added a MultivaluedField to my index (haystack), I need to search for a ManyToMany related field, but it doesn't work.
The engine is WHOOSH.
This how my index looks like:
class ...
1
vote
0answers
280 views
haystack multiple field search
Hi i m using haystack with a woosh as search engine:
my model looks as follows
class Person(models.Model):
personid = models.IntegerField(primary_key = True, db_column = 'PID')
firstname = ...
1
vote
1answer
326 views
google-app-engine full-text-search ,which is better , “google custom search” or whoosh
this is whoosh
so ,did you know which is better ?
thanks
1
vote
2answers
392 views
Indexing CSV file contents in Python
I have a very large CSV file contaning only two fields (id,url). I want to do some indexing on the url field with python, I know that there are some tools like Whoosh or Pylucene. but I can't get the ...
0
votes
0answers
17 views
Python distutils [Whoosh setup - error with _setup_distribution]
I try to lauch setup.py for Whoosh open source project. It raises following error:
Traceback (most recent call last):
File "C:/Users/Claire/Documents/Python_projects/Python_Open_Source/Whoosh1.py", ...
0
votes
1answer
52 views
Import Python [Whoosh python — don't understand import error]
I am new to lots of things.
I try to have Whoosh installed to look into the source code and play with it.
I add the path to folder containing setup.py and README.txt in sys.path, then
import ...
0
votes
1answer
46 views
whoosh issues with django forum apps
Trying to get some forum apps up and running. Cant get anything to work. With djangobb forums, and the pybb-demo im getting
The 'whoosh' backend requires the installation of 'Whoosh'. Please refer ...
0
votes
0answers
34 views
Whoosh for App Engine - How to Highlight Text
I'm using an older version of Whoosh which was ported over to use GAE datastore for the index.
Here is the source.
https://github.com/tallstreet/Whoosh-AppEngine
I have a webapp up and running, ...
0
votes
2answers
61 views
Where am I missing an argument?
I'm about to go blind starring at this problem, so I have to ask:
I have 1 clue: rearranging the code, makes the error message different:
I get the error: min_analyzer = SpaceSeparatedTokenizer() | ...
0
votes
1answer
41 views
Whoosh with Dynamic Page Creation in Google App Engine
If you aren't as familiar as you need to be with the technologies listed and would like to try to answer the question anyway, here are some useful links:
...
0
votes
1answer
74 views
what is Haystack for Django?
I have been reading about Haystack,Whoosh,Xapian,etc. however I didn't really get what they are exactly used for and what is the relationship between them.
For example, it is said that
Enable ...
0
votes
1answer
33 views
Whoosh Query Composition for docs containing 'most' terms
I've just started using Whoosh and noticed that queries seem to have logic applied to each term such as AND([term1, term2, ...]) or OR([term1, term2, ...]).
My problem is that I want to include ...
0
votes
1answer
119 views
Whoosh: Indexing MS documents, PDFs
I want to make a document search using python. Solr was no-go as Java hosting was a constraint.
So whoosh seems the obvious option. But it seems not to natively index doc or pdf files (as Solr can). ...
0
votes
0answers
308 views
Document search in Lucene/Solr, Whoosh, Sphinx, Xapian
I am comparing Lucene/Solr, Whoosh, Sphinx and Xapian for searching documents in DOC, DOCX, HTML and PDF. Only Solr is documented to have a document parser (Tika) which directly indexes documents. So ...
0
votes
1answer
185 views
Instant search with Whoosh - Index and search a MySQL table using Whoosh outputing JSON results
I want to index a MySQL table using Whoosh and create an instant search page, so I need the results of the Whoosh search to be in JSON. Is there a script or a project that implements this already? ...
0
votes
0answers
69 views
Cannot retrieve results from query in Whoosh
I've tried Whoosh all night, and it's pretty cool. But, unsurprisingly, I'm having some silly issues, namely, I can't get any results from the simplest query.
My schema: [title, description, date] ...
0
votes
1answer
227 views
Haystack Whoosh not indexing everything
I am using Haystack v1.0 and Whoosh v1.8.1 to build a customized search engine for my website. Everything works beautifully but the problem is that I get no results for a lot of entries in my indexed ...
0
votes
1answer
478 views
Django Haystack Rebuild Index
I was reading the 'Getting Started' guide of Haystack and tried to implement Whoosh backend for my website with Haystack. I was successful in setting up the whole project and I can also see the search ...