OSDN Git Service

ns_search: handling query parser error
[newslash/newslash.git] / src / ns_search / lucene_wrapper / __init__.py
1 # -*- coding: utf-8 -*-
2 """lucene wrapper: Python-friendly wrapper for Lucene"""
3
4 __author__ = 'Hiromichi Matsushima <hylom@users.osdn.net>'
5 __version__ = "0.1.0"
6
7 from wrapper import init_vm, Indexer, Searcher, Document, Query, QueryParseError
8
9
10 __all__ = []
11
12