Python client for Solr
Project description
solr-dsl
A high-level library for querying Solr with Python. Built on the lower-level Pysolr. Supports Python 2 and 3.
Example
from pysolr import Solr
from solr_dsl import Field, Range, 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():
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
solr-dsl-0.0.15.tar.gz
(2.5 kB
view hashes)
Built Distribution
Close
Hashes for solr_dsl-0.0.15-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d47f15a6e098fca3b22deb7df8a2a138378247d5d34def300ee7200d2d749d8d |
|
MD5 | 8ae98b44fbd440fb14b323ff1167fb53 |
|
BLAKE2b-256 | d3da7629dfc2b828c579211c2e7571aff858f596cc29c870fa4646ae78ca3283 |