My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members

About

Future binaries will be provided in 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-<version>-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'jre\bin\client') + ';' + os.environ['PATH]

import lucene
lucene.initVM(lucene.CLASSPATH)
print "lucene", lucene.VERSION
Powered by Google Project Hosting