Skip to main content

Resource baseclasses for traversal in Pyramid

Project description

Kalpa provides a starting point for resource traversal in Pyramid. It provides two classes for this, a Branch and a Leaf, which allow you to create arbitrary resource trees without the boilerplate.

There is also a Root class for added convenience that accepts a request during initialization. This can be used to create a starting point for Pyramid’s traversal.

from kalpa import Root, Branch, Leaf

USERS = {...}


@Root.attach('users')
class UserCollection(Branch):
    """User collection, for listings, or loading single users."""

    def __load__(self, key):
        """Return child resource with requested user included."""
        user = USERS[key]  # Load user or raise KeyError.
        return self._child(key, user=user)


@UserCollection.child_resource
class User(Branch):
    """User resource, a single loaded user."""


@User.attach('gallery', aliases=['images'])
class UserGallery(Leaf):
    """Gallery of images posted by a user.

    Reachable as `/users/:id/gallery` but also `/users/:id/images`.
    """

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

kalpa-0.4.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

kalpa-0.4-py2.py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 2 Python 3

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