Extension to the paginate module to support Whoosh
Project description
paginate_whoosh
---------------
This module is an extension to the [paginate](https://github.com/Pylons/paginate) module. It divides
up search results obtained with Whoosh.
Usage
-----
```
from paginate_whoosh import WhooshPage
qp = QueryParser("text", myindex.schema)
q = qp.parse("a query")
with myindex.searcher() as searcher:
page = WhooshPage(
searcher.search(q, limit=None), # limit=None is required!
page=1, items_per_page=10)
# Now continue as you are used from the paginate module.
# Iterate over page to obtain the Whoosh result dictionary
```
---------------
This module is an extension to the [paginate](https://github.com/Pylons/paginate) module. It divides
up search results obtained with Whoosh.
Usage
-----
```
from paginate_whoosh import WhooshPage
qp = QueryParser("text", myindex.schema)
q = qp.parse("a query")
with myindex.searcher() as searcher:
page = WhooshPage(
searcher.search(q, limit=None), # limit=None is required!
page=1, items_per_page=10)
# Now continue as you are used from the paginate module.
# Iterate over page to obtain the Whoosh result dictionary
```
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
paginate_whoosh-0.2.tar.gz
(1.8 kB
view details)
File details
Details for the file paginate_whoosh-0.2.tar.gz
.
File metadata
- Download URL: paginate_whoosh-0.2.tar.gz
- Upload date:
- Size: 1.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abd00f73245a264f686f18443771b5bc7497b918c2d5285e8fdf517c93a7f305 |
|
MD5 | 919e717ba5f59c4e95881c9a7681ac1a |
|
BLAKE2b-256 | ef7b0a8f5f72525fd48335f61f28f94da398b0dcaff2be004f114d556592ffa4 |