I know of Flask, Django and Pyramid. I don't want anything that has those in it, i all i want is a pure Rest Framework (not Web framework with REST extensions). Something that is used for just RESTful ApI.
Just Models and Controllers no views.
Thanks in advance.
Just because a framework offers views doesn't mean that it's too heavy for you. If no views are being processed, they're adding a negligible amount of overhead just from loading the code.<p>You don't necessarily even need a framework. You could use some libraries. You only need: routing, HTTP request processing, and HTTP response preparation.
If you're still looking for something, I've hacked a wrapper over Bottle to ease the implementation of a REST service, it's small (2 python files including Bottle) and might fit your needs: <a href="https://github.com/fclaerho/rest" rel="nofollow">https://github.com/fclaerho/rest</a>
Werkzeug is the Flask HTTP handler. It can be useful for you. I know restpy [0], based on werkzeug.<p>[0] <a href="https://restpy.readthedocs.org/en/latest/" rel="nofollow">https://restpy.readthedocs.org/en/latest/</a>
you said that you don't want any flask, but have you looked at Flask-Restless ?<p>Flask just gives you the routing part maybe you can even strip flask out of it and just use wsgi.<p>You can try <a href="http://python-eve.org/" rel="nofollow">http://python-eve.org/</a> too