Metadata-Version: 2.1
Name: solr-dsl
Version: 0.0.8
Summary: Python client for Solr
Home-page: https://github.com/it-com-engineering/solr-dsl
Author: Elliot Penson
Author-email: elliotpenson@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# solr-dsl

A high-level library for querying Solr with Python. Built on the lower-level Pysolr.

## Example

```
from pysolr import Solr
from solr_dsl import Search

solr = Solr('http://localhost:8983/solr/test')

query = (Field('doc_type', 'solution') &
         Range("date", "2018-01-01T00:00:00Z", "now"))
search = Search(solr, query)

for document in search.scan():
    ...
```


