Skip to content

Some fast-ish algorithms for batch text search in moderate-sized collections, intended for data cleanup

Notifications You must be signed in to change notification settings

pkufool/text_search

 
 

Repository files navigation

Installation

With pip

pip install fasttextsearch

For developers

pip install numpy

git clone https://github.com/danpovey/text_search
cd text_search

mkdir build
cd build
cmake ..
make -j
make test

# set PYTHONPATH so that you can use "import textsearch"

export PYTHONPATH=$PWD/../textsearch/python:$PWD/lib:$PYTHONPATH

Now you can use

python3 -c "import textsearch; print(textsearch.__file__)"

Caution: We did not use either python3 setup.py install or pip install. We only set the environment variable PYTHONPATH.

About

Some fast-ish algorithms for batch text search in moderate-sized collections, intended for data cleanup

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 49.2%
  • C++ 30.2%
  • CMake 20.6%