Ian Atkinson

Results 2 comments of Ian Atkinson

Looking for the same and would love a simple way to nest resources. Relevant discussion [here](https://stackoverflow.com/questions/28573348/how-to-access-nested-resources-in-flask-classy), where a possible solution is: ``` class TweetsView(FlaskView): route_prefix='/users//' def index(self, **kwargs): user_id =...

The root cause seems to be that `Element` uses `return self.children.get(name)` in `__getattr__` and this throws `ChildNotValid` exception, which is not an `AttributeError`.