Solr is an open source enterprise search server based on the Lucene Java search library, with XML/HTTP and JSON APIs, hit highlighting, faceted search, caching, replication, and a web administration
... [More] interface. It typically runs in a Java servlet container such as Tomcat. [Less]
Ming is a library for writing SWF (Flash) format files. It includes high-level functions which abstract away mundane specifics of the file format and PHP (and now Python/Zope, Ruby, and c++) module code which wraps the library into handy objects.
If you are using Djapian please tell us about your project in reply to this post
Use this package to allow full-text search in your Django project.
Versions compatibility matrix:
Djapian
... [More] Django Xapian and python bindings <= 2.2.41.01.0.2 2.3 and trunk1.11.0.7
Notice: there is an old issue with Xapian in mod_python environment. So be careful.
Notice: with 2.2.2 release has been introduced database schema backward-incompatible bug fix - Change model has switched its object_id field type from integer to string.
FeaturesMost of this features provided by Xapian itself and Djapian in this case plays role only as Django-compatible adaptation.
High-level DSL for indexer declaration Result filtering with Django ORM like API Result set compatible with standard Django Paginator Indexing of field, method results and related model attributes Entry filtering before indexing (by trigger function) Results filtering with boolean lookups support Term tagging Spelling corrections Stemming Result ordering by fields Indexers auto discovery Index shell Model changes auto tracking Support for different index spaces Usage exampleAssume that we have this models in our imaginary application:
class Person(models.Model):
name = models.CharField(max_length=150)
def __unicode__(self):
return self.name
class Entry(models.Model):
author = models.ForeignKey(Person, related_name="entries")
title = models.CharField(max_length=250)
created_on = models.DateTimeField(default=datetime.now)
is_active = models.BooleanField(default=True)
text = models.TextField()
editors = models.ManyToManyField(Person, related_name="edited_entries")
def headline(self):
return "%s - %s" % (self.author, self.title)
def __unicode__(self):
return self.titleAnd we want to apply indexing functionality for model Entry. The next step is to create Indexer instance with proper settings. Indexer may look like this:
import djapian
class EntryIndexer(djapian.Indexer):
fields=["text"]
tags=[
("author", "author.name" ),
("title", "title", 3),
("date", "created_on" ),
("active", "is_active" ),
("editors", "editors" )
]
trigger=lambda indexer, obj: obj.is_active
djapian.space.add_index(Entry, EntryIndexer, attach_as="indexer")In the django shell create some instances of models:
>>> p = Person.objects.create(name="Alex")
>>> Entry.objects.create(author=p, title="Test entry", text="Not large text field")
>>> Entry.objects.create(author=p, title="Another test entry", is_active=False)
>>> Entry.objects.create(author=p, title="Third small entry", text="Some another text")
>>> Entry.indexer.update()Thats all! Each Entry instance has been indexed and now ready for search. Let's try:
>>> result = Entry.indexer.search('title:entry')
>>> len(result), result.count()
2, 2
>>> for row in result:
... row.percent, row.instance.headline()
...
99 Alex - Test entry
98 Alex - Third small entryYou can follow complete Tutorial for study Djapian basics. [Less]
Argo is a Java interface to a range of internet search engines. It currently includes implementations for Blogdigger, Feedster, Del.icio.us, Google, MSN and Yahoo as well as an implementation that allows search across multiple search engines
PyBing is a Python wrapper for the Bing search API. It provides both a thin wrapper around the Bing Search API as well as a more complete object oriented query API. Since Bing provides a very simple
... [More] JSON API, this wrapper gives you a Pythonic interface to building and executing queries against Bing. [Less]
Welcome to sdefastsearch!You are running a Fast ESP installation to search your content? You are planning to replace your PHP web frontends by Java or .NET implementations because Fast ESP does not
... [More] support a search API for PHP?
This project will help to solve your problems: sdefastsearch is a PHP Fast ESP Search API that enables you to access your Fast ESP content similar to the access via the Java Search API that comes along with Fast ESP.
Enjoy!
Running Real Life Examples:
http://suche.sueddeutsche.de http://www.sueddeutsche.de/thema/Film [Less]