Elasticsearch data layer for eve rest framework
Project description
Eve-Elastic is elasticsearch data layer for eve REST framework.
Features
facets support
generate mapping for schema
License
Eve-Elastic is using GPLv3 license.
Install
$ pip install Eve-Elastic
Usage
import eve
form eve_elastic import Elastic
app = eve.Eve(data=Elastic)
Config
There are 2 options for Eve-Elastic taken from app.config:
ELASTICSEARCH_URL (default: 'http://localhost:9200/')
ELASTICSEARCH_INDEX - (default: 'eve')
Facets
To add a facets support for specific resource, add facets into its datasource:
DOMAIN = {
'contacts': {
'datasource':
'facets': {
'urgency': {'terms': {'field': 'urgency'}},
'versioncreated': {'date_histogram': {'field': 'versioncreated', 'interval': 'hour'}}
}
}
}
You will find more info about facets in elasticsearch docs.
Changelog
0.1.1 (2014-01-30)
Add changelog ;)
Migrate readme to rst and use it for long_description
0.1.0 (2014-01-28)
Initial release
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
Eve-Elastic-0.1.1.tar.gz
(29.0 kB
view details)
File details
Details for the file Eve-Elastic-0.1.1.tar.gz
.
File metadata
- Download URL: Eve-Elastic-0.1.1.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bc220099d890272d173faac4f650661817e6958dadad547078e246489ada93d |
|
MD5 | 1a47b64aa2e9c39a9951e7d37f62892e |
|
BLAKE2b-256 | 16ab5f9a458d3a7086ac46017baaca6c4c89e5c816febe7ad8a5d7bd86f99662 |