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 lik
from whoosh.index import open_dir ix = open_dir('whoosh_index') ix.searcher().documents() # will show all documents in the index.