Ian Atkinson

Results 5 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`.

> Also, if we want to follow the spec, you'd have to use the .pyi extension, and name your package `foopkg-stubs`. But we can consider being more lax than type-checkers...

> > avoid pulling all dependencies of the full package > > That's not needed by the way, you could install just the package without its dependencies. Fair. I might...

> Thanks for the report [@iatkinson](https://github.com/iatkinson). I guess we could fake the implementation when it isn't found, so that overloads get attached to it, and you'd use relevant options in...