About Whoosh
============
Whoosh is a fast, featureful full-text indexing and searching library
implemented in pure Python. Programmers can use it to easily add search
functionality to their applications and websites. Every part of how Whoosh
works can be extended or replaced to meet your needs exactly.
Some of Whoosh's features include:
* Pythonic API.
* Pure-Python. No compilation or binary p
more»
import sys, os.path
from ConfigParser import ConfigParser
from optparse import OptionParser
from os import system
# Script to build and upload a release of Whoosh to PyPI and build
# and upload the
def build_docs():
system("python setup.py build_sphinx")
def upload_docs(user, server, base, version, build=True, latest=True):
opts = {"user": user,
"srv": server,
"
more»