Skip to main content

Minimalistic interface to Solr.

Project description

SUNNY

This is a very simple Solr interface for Python.

INSTALLATION

$ pip install sunny

USAGE

Create your Solr connection (actually a pool of connections) and then pass query parameters using simple dictionaries. The raw Solr result is returned as a Python dictionary.

>>> import sunny
>>> solr = sunny.Solr('http://localhost:8080/solr')
>>> solr.query({'q': 'office',
...             'facet': 'on',
...             'facet.field': ['network', 'runtime']})
{u'responseHeader': {u'status': 0, u'QTime': ...

PARAMETERS

Solr parameters are passed as dictionaries where every value may be either a string or a list of strings.

“wt=json” is passed with every request no matter what, because JSON is easy to convert to Python objects.

Example:

>>> import sunny
>>> solr = sunny.Solr('http://localhost:8080/solr')
>>> solr.query({'q': 'office',
...             'facet': 'on',
...             'facet.field': ['network', 'runtime']})
{u'responseHeader': {u'status': 0, u'QTime': ...

The above is equivalent to this query string: “?wt=json&q=office&facet=on&facet.field=network&facet.field=runtime”

If the “orderedmultidict” package is installed, you may use “omdict” instances instead of dictionaries.

LICENSE

BSD

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sunny-0.0.3.zip (5.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page