Source code for pyramid_sacrud.resources

#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2015 uralbash <root@uralbash.ru>
#
# Distributed under terms of the MIT license.

"""
Resources of pyramid_sacrud
"""
from pyramid.compat import text_type


[docs]class GroupResource(object): def __init__(self, group, resources): self.group = group self.resources = resources def __getitem__(self, name): for resource in self.resources: if resource.__name__ == name: resource.parent = self return resource @property def __name__(self): return text_type(self.group)
  Read the Docs
v: latest  
Versions
latest
stable
master
Free document hosting provided by Read the Docs.