├── .gitignore ├── .hgignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── benchmark ├── dcvgr10.txt.gz ├── dictionary.py ├── enron.py ├── marc21.py ├── reuters.py └── reuters21578.txt.gz ├── docs ├── Makefile ├── make.bat └── source │ ├── analysis.rst │ ├── api │ ├── analysis.rst │ ├── api.rst │ ├── codec │ │ └── base.rst │ ├── collectors.rst │ ├── columns.rst │ ├── fields.rst │ ├── filedb │ │ ├── filestore.rst │ │ ├── filetables.rst │ │ └── structfile.rst │ ├── formats.rst │ ├── highlight.rst │ ├── idsets.rst │ ├── index.rst │ ├── lang │ │ ├── morph_en.rst │ │ ├── porter.rst │ │ └── wordnet.rst │ ├── matching.rst │ ├── qparser.rst │ ├── query.rst │ ├── reading.rst │ ├── scoring.rst │ ├── searching.rst │ ├── sorting.rst │ ├── spelling.rst │ ├── support │ │ ├── charset.rst │ │ └── levenshtein.rst │ ├── util.rst │ └── writing.rst │ ├── batch.rst │ ├── conf.py │ ├── dates.rst │ ├── facets.rst │ ├── fieldcaches.rst │ ├── glossary.rst │ ├── highlight.rst │ ├── index.rst │ ├── indexing.rst │ ├── intro.rst │ ├── keywords.rst │ ├── nested.rst │ ├── ngrams.rst │ ├── parsing.rst │ ├── query.rst │ ├── querylang.rst │ ├── quickstart.rst │ ├── recipes.rst │ ├── releases │ ├── 0_3.rst │ ├── 1_0.rst │ ├── 2_0.rst │ └── index.rst │ ├── schema.rst │ ├── searching.rst │ ├── spelling.rst │ ├── stemming.rst │ ├── tech │ ├── backend.rst │ ├── filedb.rst │ └── index.rst │ └── threads.rst ├── files ├── whoosh.svg ├── whoosh_16.png ├── whoosh_35.png ├── whoosh_64.png └── whoosh_small.svg ├── scripts ├── make_checkpoint.py ├── pylint.ini └── read_checkpoint.py ├── setup.cfg ├── setup.py ├── src └── whoosh │ ├── __init__.py │ ├── analysis │ ├── __init__.py │ ├── acore.py │ ├── analyzers.py │ ├── filters.py │ ├── intraword.py │ ├── morph.py │ ├── ngrams.py │ └── tokenizers.py │ ├── automata │ ├── __init__.py │ ├── fsa.py │ ├── glob.py │ ├── lev.py │ ├── nfa.py │ └── reg.py │ ├── classify.py │ ├── codec │ ├── __init__.py │ ├── base.py │ ├── memory.py │ ├── plaintext.py │ └── whoosh3.py │ ├── collectors.py │ ├── columns.py │ ├── compat.py │ ├── externalsort.py │ ├── fields.py │ ├── filedb │ ├── __init__.py │ ├── compound.py │ ├── filestore.py │ ├── filetables.py │ ├── gae.py │ └── structfile.py │ ├── formats.py │ ├── highlight.py │ ├── idsets.py │ ├── index.py │ ├── lang │ ├── __init__.py │ ├── dmetaphone.py │ ├── isri.py │ ├── lovins.py │ ├── morph_en.py │ ├── paicehusk.py │ ├── phonetic.py │ ├── porter.py │ ├── porter2.py │ ├── snowball │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── bases.py │ │ ├── danish.py │ │ ├── dutch.py │ │ ├── english.py │ │ ├── finnish.py │ │ ├── french.py │ │ ├── german.py │ │ ├── hungarian.py │ │ ├── italian.py │ │ ├── norwegian.py │ │ ├── portugese.py │ │ ├── romanian.py │ │ ├── russian.py │ │ ├── spanish.py │ │ └── swedish.py │ ├── stopwords.py │ └── wordnet.py │ ├── legacy.py │ ├── matching │ ├── __init__.py │ ├── binary.py │ ├── combo.py │ ├── mcore.py │ └── wrappers.py │ ├── multiproc.py │ ├── qparser │ ├── __init__.py │ ├── common.py │ ├── dateparse.py │ ├── default.py │ ├── plugins.py │ ├── syntax.py │ └── taggers.py │ ├── query │ ├── __init__.py │ ├── compound.py │ ├── nested.py │ ├── positional.py │ ├── qcolumns.py │ ├── qcore.py │ ├── ranges.py │ ├── spans.py │ ├── terms.py │ └── wrappers.py │ ├── reading.py │ ├── scoring.py │ ├── searching.py │ ├── sorting.py │ ├── spelling.py │ ├── support │ ├── __init__.py │ ├── base85.py │ ├── bench.py │ ├── charset.py │ ├── levenshtein.py │ ├── relativedelta.py │ └── unicode.py │ ├── system.py │ ├── util │ ├── __init__.py │ ├── cache.py │ ├── filelock.py │ ├── loading.py │ ├── numeric.py │ ├── numlists.py │ ├── testing.py │ ├── text.py │ ├── times.py │ ├── varints.py │ └── versions.py │ └── writing.py ├── stress ├── test_bigfacet.py ├── test_bigindex.py ├── test_bigsort.py ├── test_bigtable.py ├── test_hugeindex.py ├── test_threading.py └── test_update.py ├── tests ├── english-words.10.gz ├── test_analysis.py ├── test_automata.py ├── test_bits.py ├── test_classify.py ├── test_codecs.py ├── test_collector.py ├── test_columns.py ├── test_compound.py ├── test_dateparse.py ├── test_fields.py ├── test_flexible.py ├── test_highlighting.py ├── test_indexing.py ├── test_matching.py ├── test_misc.py ├── test_mpwriter.py ├── test_nested.py ├── test_parse_plugins.py ├── test_parsing.py ├── test_postings.py ├── test_quality.py ├── test_queries.py ├── test_reading.py ├── test_results.py ├── test_searching.py ├── test_sorting.py ├── test_spans.py ├── test_spelling.py ├── test_stem.py ├── test_tables.py ├── test_vectors.py ├── test_weightings.py └── test_writing.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | .tox/ 4 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/dcvgr10.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/dcvgr10.txt.gz -------------------------------------------------------------------------------- /benchmark/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/dictionary.py -------------------------------------------------------------------------------- /benchmark/enron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/enron.py -------------------------------------------------------------------------------- /benchmark/marc21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/marc21.py -------------------------------------------------------------------------------- /benchmark/reuters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/reuters.py -------------------------------------------------------------------------------- /benchmark/reuters21578.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/benchmark/reuters21578.txt.gz -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/analysis.rst -------------------------------------------------------------------------------- /docs/source/api/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/analysis.rst -------------------------------------------------------------------------------- /docs/source/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/api.rst -------------------------------------------------------------------------------- /docs/source/api/codec/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/codec/base.rst -------------------------------------------------------------------------------- /docs/source/api/collectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/collectors.rst -------------------------------------------------------------------------------- /docs/source/api/columns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/columns.rst -------------------------------------------------------------------------------- /docs/source/api/fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/fields.rst -------------------------------------------------------------------------------- /docs/source/api/filedb/filestore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/filedb/filestore.rst -------------------------------------------------------------------------------- /docs/source/api/filedb/filetables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/filedb/filetables.rst -------------------------------------------------------------------------------- /docs/source/api/filedb/structfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/filedb/structfile.rst -------------------------------------------------------------------------------- /docs/source/api/formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/formats.rst -------------------------------------------------------------------------------- /docs/source/api/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/highlight.rst -------------------------------------------------------------------------------- /docs/source/api/idsets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/idsets.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/lang/morph_en.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/lang/morph_en.rst -------------------------------------------------------------------------------- /docs/source/api/lang/porter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/lang/porter.rst -------------------------------------------------------------------------------- /docs/source/api/lang/wordnet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/lang/wordnet.rst -------------------------------------------------------------------------------- /docs/source/api/matching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/matching.rst -------------------------------------------------------------------------------- /docs/source/api/qparser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/qparser.rst -------------------------------------------------------------------------------- /docs/source/api/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/query.rst -------------------------------------------------------------------------------- /docs/source/api/reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/reading.rst -------------------------------------------------------------------------------- /docs/source/api/scoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/scoring.rst -------------------------------------------------------------------------------- /docs/source/api/searching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/searching.rst -------------------------------------------------------------------------------- /docs/source/api/sorting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/sorting.rst -------------------------------------------------------------------------------- /docs/source/api/spelling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/spelling.rst -------------------------------------------------------------------------------- /docs/source/api/support/charset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/support/charset.rst -------------------------------------------------------------------------------- /docs/source/api/support/levenshtein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/support/levenshtein.rst -------------------------------------------------------------------------------- /docs/source/api/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/util.rst -------------------------------------------------------------------------------- /docs/source/api/writing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/api/writing.rst -------------------------------------------------------------------------------- /docs/source/batch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/batch.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/dates.rst -------------------------------------------------------------------------------- /docs/source/facets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/facets.rst -------------------------------------------------------------------------------- /docs/source/fieldcaches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/fieldcaches.rst -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/highlight.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/indexing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/indexing.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/keywords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/keywords.rst -------------------------------------------------------------------------------- /docs/source/nested.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/nested.rst -------------------------------------------------------------------------------- /docs/source/ngrams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/ngrams.rst -------------------------------------------------------------------------------- /docs/source/parsing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/parsing.rst -------------------------------------------------------------------------------- /docs/source/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/query.rst -------------------------------------------------------------------------------- /docs/source/querylang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/querylang.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/recipes.rst -------------------------------------------------------------------------------- /docs/source/releases/0_3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/releases/0_3.rst -------------------------------------------------------------------------------- /docs/source/releases/1_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/releases/1_0.rst -------------------------------------------------------------------------------- /docs/source/releases/2_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/releases/2_0.rst -------------------------------------------------------------------------------- /docs/source/releases/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/releases/index.rst -------------------------------------------------------------------------------- /docs/source/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/schema.rst -------------------------------------------------------------------------------- /docs/source/searching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/searching.rst -------------------------------------------------------------------------------- /docs/source/spelling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/spelling.rst -------------------------------------------------------------------------------- /docs/source/stemming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/stemming.rst -------------------------------------------------------------------------------- /docs/source/tech/backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/tech/backend.rst -------------------------------------------------------------------------------- /docs/source/tech/filedb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/tech/filedb.rst -------------------------------------------------------------------------------- /docs/source/tech/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/tech/index.rst -------------------------------------------------------------------------------- /docs/source/threads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/docs/source/threads.rst -------------------------------------------------------------------------------- /files/whoosh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/files/whoosh.svg -------------------------------------------------------------------------------- /files/whoosh_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/files/whoosh_16.png -------------------------------------------------------------------------------- /files/whoosh_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/files/whoosh_35.png -------------------------------------------------------------------------------- /files/whoosh_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/files/whoosh_64.png -------------------------------------------------------------------------------- /files/whoosh_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/files/whoosh_small.svg -------------------------------------------------------------------------------- /scripts/make_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/scripts/make_checkpoint.py -------------------------------------------------------------------------------- /scripts/pylint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/scripts/pylint.ini -------------------------------------------------------------------------------- /scripts/read_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/scripts/read_checkpoint.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/setup.py -------------------------------------------------------------------------------- /src/whoosh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/__init__.py -------------------------------------------------------------------------------- /src/whoosh/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/__init__.py -------------------------------------------------------------------------------- /src/whoosh/analysis/acore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/acore.py -------------------------------------------------------------------------------- /src/whoosh/analysis/analyzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/analyzers.py -------------------------------------------------------------------------------- /src/whoosh/analysis/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/filters.py -------------------------------------------------------------------------------- /src/whoosh/analysis/intraword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/intraword.py -------------------------------------------------------------------------------- /src/whoosh/analysis/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/morph.py -------------------------------------------------------------------------------- /src/whoosh/analysis/ngrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/ngrams.py -------------------------------------------------------------------------------- /src/whoosh/analysis/tokenizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/analysis/tokenizers.py -------------------------------------------------------------------------------- /src/whoosh/automata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/whoosh/automata/fsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/automata/fsa.py -------------------------------------------------------------------------------- /src/whoosh/automata/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/automata/glob.py -------------------------------------------------------------------------------- /src/whoosh/automata/lev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/automata/lev.py -------------------------------------------------------------------------------- /src/whoosh/automata/nfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/automata/nfa.py -------------------------------------------------------------------------------- /src/whoosh/automata/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/automata/reg.py -------------------------------------------------------------------------------- /src/whoosh/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/classify.py -------------------------------------------------------------------------------- /src/whoosh/codec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/codec/__init__.py -------------------------------------------------------------------------------- /src/whoosh/codec/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/codec/base.py -------------------------------------------------------------------------------- /src/whoosh/codec/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/codec/memory.py -------------------------------------------------------------------------------- /src/whoosh/codec/plaintext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/codec/plaintext.py -------------------------------------------------------------------------------- /src/whoosh/codec/whoosh3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/codec/whoosh3.py -------------------------------------------------------------------------------- /src/whoosh/collectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/collectors.py -------------------------------------------------------------------------------- /src/whoosh/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/columns.py -------------------------------------------------------------------------------- /src/whoosh/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/compat.py -------------------------------------------------------------------------------- /src/whoosh/externalsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/externalsort.py -------------------------------------------------------------------------------- /src/whoosh/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/fields.py -------------------------------------------------------------------------------- /src/whoosh/filedb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/whoosh/filedb/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/filedb/compound.py -------------------------------------------------------------------------------- /src/whoosh/filedb/filestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/filedb/filestore.py -------------------------------------------------------------------------------- /src/whoosh/filedb/filetables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/filedb/filetables.py -------------------------------------------------------------------------------- /src/whoosh/filedb/gae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/filedb/gae.py -------------------------------------------------------------------------------- /src/whoosh/filedb/structfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/filedb/structfile.py -------------------------------------------------------------------------------- /src/whoosh/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/formats.py -------------------------------------------------------------------------------- /src/whoosh/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/highlight.py -------------------------------------------------------------------------------- /src/whoosh/idsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/idsets.py -------------------------------------------------------------------------------- /src/whoosh/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/index.py -------------------------------------------------------------------------------- /src/whoosh/lang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/__init__.py -------------------------------------------------------------------------------- /src/whoosh/lang/dmetaphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/dmetaphone.py -------------------------------------------------------------------------------- /src/whoosh/lang/isri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/isri.py -------------------------------------------------------------------------------- /src/whoosh/lang/lovins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/lovins.py -------------------------------------------------------------------------------- /src/whoosh/lang/morph_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/morph_en.py -------------------------------------------------------------------------------- /src/whoosh/lang/paicehusk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/paicehusk.py -------------------------------------------------------------------------------- /src/whoosh/lang/phonetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/phonetic.py -------------------------------------------------------------------------------- /src/whoosh/lang/porter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/porter.py -------------------------------------------------------------------------------- /src/whoosh/lang/porter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/porter2.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/LICENSE.txt -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/__init__.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/bases.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/danish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/danish.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/dutch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/dutch.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/english.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/finnish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/finnish.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/french.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/french.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/german.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/german.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/hungarian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/hungarian.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/italian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/italian.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/norwegian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/norwegian.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/portugese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/portugese.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/romanian.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/russian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/russian.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/spanish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/spanish.py -------------------------------------------------------------------------------- /src/whoosh/lang/snowball/swedish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/snowball/swedish.py -------------------------------------------------------------------------------- /src/whoosh/lang/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/stopwords.py -------------------------------------------------------------------------------- /src/whoosh/lang/wordnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/lang/wordnet.py -------------------------------------------------------------------------------- /src/whoosh/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/legacy.py -------------------------------------------------------------------------------- /src/whoosh/matching/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/matching/__init__.py -------------------------------------------------------------------------------- /src/whoosh/matching/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/matching/binary.py -------------------------------------------------------------------------------- /src/whoosh/matching/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/matching/combo.py -------------------------------------------------------------------------------- /src/whoosh/matching/mcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/matching/mcore.py -------------------------------------------------------------------------------- /src/whoosh/matching/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/matching/wrappers.py -------------------------------------------------------------------------------- /src/whoosh/multiproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/multiproc.py -------------------------------------------------------------------------------- /src/whoosh/qparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/__init__.py -------------------------------------------------------------------------------- /src/whoosh/qparser/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/common.py -------------------------------------------------------------------------------- /src/whoosh/qparser/dateparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/dateparse.py -------------------------------------------------------------------------------- /src/whoosh/qparser/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/default.py -------------------------------------------------------------------------------- /src/whoosh/qparser/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/plugins.py -------------------------------------------------------------------------------- /src/whoosh/qparser/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/syntax.py -------------------------------------------------------------------------------- /src/whoosh/qparser/taggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/qparser/taggers.py -------------------------------------------------------------------------------- /src/whoosh/query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/__init__.py -------------------------------------------------------------------------------- /src/whoosh/query/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/compound.py -------------------------------------------------------------------------------- /src/whoosh/query/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/nested.py -------------------------------------------------------------------------------- /src/whoosh/query/positional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/positional.py -------------------------------------------------------------------------------- /src/whoosh/query/qcolumns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/qcolumns.py -------------------------------------------------------------------------------- /src/whoosh/query/qcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/qcore.py -------------------------------------------------------------------------------- /src/whoosh/query/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/ranges.py -------------------------------------------------------------------------------- /src/whoosh/query/spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/spans.py -------------------------------------------------------------------------------- /src/whoosh/query/terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/terms.py -------------------------------------------------------------------------------- /src/whoosh/query/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/query/wrappers.py -------------------------------------------------------------------------------- /src/whoosh/reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/reading.py -------------------------------------------------------------------------------- /src/whoosh/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/scoring.py -------------------------------------------------------------------------------- /src/whoosh/searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/searching.py -------------------------------------------------------------------------------- /src/whoosh/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/sorting.py -------------------------------------------------------------------------------- /src/whoosh/spelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/spelling.py -------------------------------------------------------------------------------- /src/whoosh/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/whoosh/support/base85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/base85.py -------------------------------------------------------------------------------- /src/whoosh/support/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/bench.py -------------------------------------------------------------------------------- /src/whoosh/support/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/charset.py -------------------------------------------------------------------------------- /src/whoosh/support/levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/levenshtein.py -------------------------------------------------------------------------------- /src/whoosh/support/relativedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/relativedelta.py -------------------------------------------------------------------------------- /src/whoosh/support/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/support/unicode.py -------------------------------------------------------------------------------- /src/whoosh/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/system.py -------------------------------------------------------------------------------- /src/whoosh/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/__init__.py -------------------------------------------------------------------------------- /src/whoosh/util/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/cache.py -------------------------------------------------------------------------------- /src/whoosh/util/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/filelock.py -------------------------------------------------------------------------------- /src/whoosh/util/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/loading.py -------------------------------------------------------------------------------- /src/whoosh/util/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/numeric.py -------------------------------------------------------------------------------- /src/whoosh/util/numlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/numlists.py -------------------------------------------------------------------------------- /src/whoosh/util/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/testing.py -------------------------------------------------------------------------------- /src/whoosh/util/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/text.py -------------------------------------------------------------------------------- /src/whoosh/util/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/times.py -------------------------------------------------------------------------------- /src/whoosh/util/varints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/varints.py -------------------------------------------------------------------------------- /src/whoosh/util/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/util/versions.py -------------------------------------------------------------------------------- /src/whoosh/writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/src/whoosh/writing.py -------------------------------------------------------------------------------- /stress/test_bigfacet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_bigfacet.py -------------------------------------------------------------------------------- /stress/test_bigindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_bigindex.py -------------------------------------------------------------------------------- /stress/test_bigsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_bigsort.py -------------------------------------------------------------------------------- /stress/test_bigtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_bigtable.py -------------------------------------------------------------------------------- /stress/test_hugeindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_hugeindex.py -------------------------------------------------------------------------------- /stress/test_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_threading.py -------------------------------------------------------------------------------- /stress/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/stress/test_update.py -------------------------------------------------------------------------------- /tests/english-words.10.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/english-words.10.gz -------------------------------------------------------------------------------- /tests/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_analysis.py -------------------------------------------------------------------------------- /tests/test_automata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_automata.py -------------------------------------------------------------------------------- /tests/test_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_bits.py -------------------------------------------------------------------------------- /tests/test_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_classify.py -------------------------------------------------------------------------------- /tests/test_codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_codecs.py -------------------------------------------------------------------------------- /tests/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_collector.py -------------------------------------------------------------------------------- /tests/test_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_columns.py -------------------------------------------------------------------------------- /tests/test_compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_compound.py -------------------------------------------------------------------------------- /tests/test_dateparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_dateparse.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_flexible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_flexible.py -------------------------------------------------------------------------------- /tests/test_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_highlighting.py -------------------------------------------------------------------------------- /tests/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_indexing.py -------------------------------------------------------------------------------- /tests/test_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_matching.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_mpwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_mpwriter.py -------------------------------------------------------------------------------- /tests/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_nested.py -------------------------------------------------------------------------------- /tests/test_parse_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_parse_plugins.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_postings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_postings.py -------------------------------------------------------------------------------- /tests/test_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_quality.py -------------------------------------------------------------------------------- /tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_queries.py -------------------------------------------------------------------------------- /tests/test_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_reading.py -------------------------------------------------------------------------------- /tests/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_results.py -------------------------------------------------------------------------------- /tests/test_searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_searching.py -------------------------------------------------------------------------------- /tests/test_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_sorting.py -------------------------------------------------------------------------------- /tests/test_spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_spans.py -------------------------------------------------------------------------------- /tests/test_spelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_spelling.py -------------------------------------------------------------------------------- /tests/test_stem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_stem.py -------------------------------------------------------------------------------- /tests/test_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_tables.py -------------------------------------------------------------------------------- /tests/test_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_vectors.py -------------------------------------------------------------------------------- /tests/test_weightings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_weightings.py -------------------------------------------------------------------------------- /tests/test_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tests/test_writing.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchaput/whoosh/HEAD/tox.ini --------------------------------------------------------------------------------