Metadata-Version: 1.1
Name: pyramid_es
Version: 0.3.1
Summary: Elasticsearch integration for Pyramid.
Home-page: http://github.com/cartlogic/pyramid_es
Author: Scott Torborg
Author-email: scott@cartlogic.com
License: MIT
Description: pyramid_es - Elasticsearch Integration for Pyramid
        ==================================================
        
        Scott Torborg - `Cart Logic <http://www.cartlogic.com>`_
        
        ``pyramid_es`` is a pattern and set of utilities for integrating the
        `elasticsearch <http://www.elasticsearch.org>`_ search engine with a `Pyramid
        <http://www.pylonsproject.org>`_ web app. It is intended to make it easy to
        index a set of persisted objects and search those documents inside Pyramid
        views. Transactions are supported (designed to work with ``pyramid_tm``) and a full test suite is included.
        
        Docs are available at `Read The Docs <http://pyramid-es.rtfd.org>`.
        
        
        Installation
        ============
        
        Install with pip::
        
            $ pip install pyramid_es
        
        
        Example Usage
        =============
        
        .. code-block:: python
        
            client = get_client(request)
            result = client.query(Movie).\
                filter_term('year', 1987).\
                order_by('rating').\
                execute()
        
Keywords: pyramid search elasticsearch
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
