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.1a.tar.gz
(29.0 kB
view details)
File details
Details for the file Eve-Elastic-0.1.1a.tar.gz
.
File metadata
- Download URL: Eve-Elastic-0.1.1a.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f2b35bcd9e26c9820f8b807f7fc1263d21d000cbcc894bd4cff8cea25fea34a |
|
MD5 | a9737ca3eda70d298eda6b455cff83d0 |
|
BLAKE2b-256 | 645490fe7d13f0a95e626bce8a428bc6224054fbf3c3d20007a89636fec7f9f0 |