Metadata-Version: 1.1
Name: rest_toolkit
Version: 0.2.2
Summary: REST toolkit
Home-page: https://github.com/wichert/rest_toolkit
Author: Wichert Akkerman
Author-email: wichert@wiggy.net
License: BSD
Description: *rest_toolkit* is a Python package which provides a very convenient way to
        build REST servers. It is build on top of
        `Pyramid <http://www.pylonsproject.org/projects/pyramid/about>`_, but you do not
        need to know much about Pyramid to use rest_toolkit.
        
        
        Quick example
        =============
        
        This is a minimal example which defines a ``Root`` resource with a ``GET``
        view, and starts a simple HTTP server. If you run this example you can request
        ``http://localhost:8080/`` and you will see a JSON response with a status
        message.
        
        ::
        
           from rest_toolkit import quick_serve
           from rest_toolkit import resource
        
        
           @resource('/')
           class Root(object):
               def __init__(self, request):
                   pass
        
           @Root.GET()
           def show_root(root, request):
               return {'status': 'OK'}
        
        
           if __name__ == '__main__':
               quick_serve()
        
        Changelog
        =========
        
        0.2.2 - July 11, 2014
        ---------------------
        
        - Fix several errors in SQL extension.
        
        
        0.2.1 - July 10, 2014
        ---------------------
        
        - Add a MANIFEST.in to the source distribution installable.
        
        
        0.2 - July 9, 2014
        ------------------
        
        - Several demos showing how to use rest_toolkit with AngularJS have been added.
        
        - Support for default DELETE, GET, PATCH and PUT views has been added.
        
        - Various documentation fixes and improvements.
        
        
        0.1 - Released 24 June, 2014
        ----------------------------
        
        This is the first release.
        
Keywords: REST Pyramid
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Pyramid
Classifier: Intended Audience :: Developers
Classifier: License :: DFSG approved
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Python Modules
