Metadata-Version: 1.1
Name: Flask-RESTeasy
Version: 0.0.1
Summary: Create easy REST APIs with Flask
Home-page: https://www.github.com/jidn/flask-restful/
Author: Clinton James
Author-email: clinton.james@anuit.com
License: UNKNOWN
Download-URL: https://github.com/jidn/flask-resteasy/tarball/0.0.1
Description: # Flask-RESTeasy
        
        It starts with an itch.  I was using Flask-RESTful but I soon started
        having to work around it with request parsing and output fields caused
        errors.  I got frustrated.  I loved the project, but it was doing more
        than what I wanted it to do.
        
        I just wanted something to ease the setup and binding of flask MethodViews
        for handling JSON REST APIs.  The rest can be handled by other packages
        dedicated to their tasks.  I kept the basic resource handling for both
        apps and blueprints and removed the rest: request parsing, output fields,
        authentication, and static error handling.
        
        I wanted something simple in the way Flask was simple.  This is my
        attempt at making it so.  If you have seen Flask-RESTful, this will
        look very familiar.
        
        # Install
        
        For install you can use pip:
        ```
        pip install flask_resteasy
        ```
        
        # QuickStart
        ```
        from flask import Flask
        from flask.ext import resteasy
        
        app = Flask(__name__)
        api = resteasy.Api(app)
        
        @api.resource('/')
        class HelloWorld(resteasy.Resource):
            def get(self):
                return {'msg': 'Hello world'}
        
            def delete(self):
                return {'msg': 'Sorry Dave.'}
        
        if __name__ == '__main__':
            app.run(debug=True)
        ```
        
Keywords: flask,REST
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
