Metadata-Version: 2.1
Name: solr-dsl
Version: 0.0.3
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
Description: # 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")
        search = Search(solr) \
            .require("doc_type", "solution") \
            .require("domain", "example1", "example2")
            .with_range("date", "2018-01-01T00:00:00Z", "now")
        
        for document in search.scan():
            ...
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
