资 源 简 介
About
Future binaries will be provided in [pylucene-extra](http://code.google.com/a/apache-extras.org/p/pylucene-extra/) project. A binary for pylucene 3.1.0 can be found there
PyLucene binaries for win32
Installation
easy_install http://pylucene-win32-binary.googlecode.com/files/lucene--egg
Usage
```
# Either add the directory containing jvm.dll to %PATH%
# or modify the PATH environment variable on runtime
import os
import os.path
os.environ["PATH"] = os.path.join(os.environ["JAVA_HOME"], r"jreinclient") + ";" + os.environ["PATH]
import lucene
lucene.initVM(lucene.CLASSPATH)
print "lucene", lucene.VERSION
```