Metadata-Version: 1.1
Name: sunny
Version: 0.0.2
Summary: Yet another minimalistic interface to Solr, with support for parameter keys with multiple values.
Home-page: https://github.com/denizdogan/sunny
Author: Deniz Dogan
Author-email: deniz@dogan.se
License: BSD
Description: Sunny
        =====
        
        This is a very simple Solr interface for Python.
        
        
        Usage
        -----
        
            >> import sunny
            >> solr = sunny.Solr('http://localhost:8080/solr')
            >> solr.query({'q': 'office'})
            {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.
        
        Example:
        
            {'q': 'office',
             'facet': 'on',
             'facet.field': ['network', 'runtime']}
            ==>
            ?q=office&facet=on&facet.field=network&facet.field=runtime
        
        If ``omdict`` is installed, you may use ``omdict`` instances instead.
        
        ``wt=json`` is passed with every request no matter what.
        
        
        License
        -------
        
        BSD
        
Keywords: solr search
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
