Skip to main content

basic views for pyramid view

Project description

rebecca.view

rebecca.view is helper classes for pyramid views.

BasicView methods and properties

properties

  • context view context passed to constructor

  • request request passed to constructor

  • response response attribute of request

  • body body attribute of request

methods

  • redirect(url) create HTTPFound object from url

  • redirect_route(route_name, **values) create HTTPFound object with route_url

  • action_dispatch call method named *_action with request param.

Softification

Softification is context manager to replace Exceptions to the other Exceptions.

with Softification(NoResultFound, HTTPNotFound):
    item = DBSession.query(Item).filter(Item.id==id).one()

If one() method raises NoResultFound exception, the context manager catch that and raises the HTTPNotFound exception. You can use tuple for target Exception classes.

USAGE

BasicView

To use BasicView, inherit that simply.:

class Greeting(BasicView):
    def __call__(self):
        return self.redirect_route('top', v=1)

Contributors

  • Atsushi Odagiri, Original Author

Changelog

0.2 (2013-03-11)

  • add softification API

0.1 (2013-03-10)

  • first release

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

rebecca.view-0.2.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file rebecca.view-0.2.tar.gz.

File metadata

  • Download URL: rebecca.view-0.2.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rebecca.view-0.2.tar.gz
Algorithm Hash digest
SHA256 d128708f7814e397a89adc25300497ab468e5a1a35f1cf74f9f526b80c8438dc
MD5 6feea6258f86c763ed5982f460eb657c
BLAKE2b-256 8d964d96dee273f0cfe9bee2f846429c52868474101fd17f2d318230fa3036df

See more details on using hashes here.

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