Skip to main content

Rawes binding for pyramid

Project description

pyramid_rawes

This library helps integrate rawes in a pyramid application.

https://travis-ci.org/koenedaele/pyramid_rawes.png?branch=master

Installation

To install pyramid_rawes, use pip

pip install pyramid_rawes

Setup

To activate pyramid_rawes

config = Configurator()
config.include('pyramid_rawes')

By default, this will add an instance with all the default parameters (eg. Elastic Search is assumed to run at localhost:9200). To configure your rawes instance, you can use the pyramid settings file.

rawes.url = http://localhost:9500

Once you have activated pyramid_rawes, a rawes instance is added to the registry.

Usage

To get a rawes instance, call get_rawes with the current application registry. Eg. in a view:

from pyramid_rawes import get_rawes

def search(request):
    ES = get_rawes(request.registry)
    # execute search
    # ...

You can also get a rawes instance by calling the get_rawes directive on the config.

config = Configurator()
config.include('pyramid_rawes')
ES = config.get_rawes()

History

0.4.0 (27-09-2013)

  • Make pyramid_rawes compatible with rawes 0.5.x

  • Introduce unit test support for py3k (requires rawes 0.5.1)

  • Ability to specify json_encoder and json_decoder as dotted python name.

  • Dropped support for py26.

0.3.0 (29-04-2013)

  • Make pyramid_rawes compatible with rawes 0.4.0.

0.2.1 (24-04-2013)

  • Fixed dependency on rawes < 0.4.0. Next release will upgrade to rawes 0.4.0.

0.2.0 (18-01-2013)

  • Added get_rawes as a config directive

  • Renamed IRawES to IRawes

  • Pep8 fixes

0.1.0 (16-01-2013)

  • Initial version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyramid_rawes-0.4.0.tar.gz (4.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page