building beautiful rest apis
play

BUILDING BEAUTIFUL REST APIs with Flask, Swagger UI and - PowerPoint PPT Presentation

BUILDING BEAUTIFUL REST APIs with Flask, Swagger UI and Flask-RESTPlus Micha Karzy ski EuroPython 2016 ABOUT ME My name is Micha Karzy ski (thats Polish for Mike) I blog at http://michal.karzynski.pl Short URL:


  1. BUILDING BEAUTIFUL REST APIs with Flask, Swagger UI and Flask-RESTPlus Micha ł Karzy ń ski • EuroPython 2016

  2. ABOUT ME • My name is Micha ł Karzy ń ski (that’s Polish for Mike) • I blog at http://michal.karzynski.pl 
 Short URL: karzyn.com • I wrote a book for Linux admins, I write code in Python and JavaScript • I’m the tech lead of a Web UI team at

  3. WHAT IS A WEB API ? Web (JavaScript) API (JSON) Server 
 (Python) Phone (Swift, Java)

  4. WHAT IS A REST API? REPRESENTATIONAL STATE TRANSFER A clever way to use HTTP to build APIs.

  5. ANATOMY OF HTTP Method Path Query Status Code Headers Headers Body Body Request Response

  6. GET ?search=Moby Dick POST PUT /api/books 200 OK Cookies… DELETE 404 Not Found Method Path Query Status Code Headers Headers Body Body Request Response JSON

  7. Method Path Query Headers REST CONVENTIONS Body GET PUT POST DELETE Collection 
 List books New book /books Item 
 Display book Update book Delete book /books/123 Controller Borrow book /books/123/borrow

  8. FLASK flask.pocoo.org

  9. FLASK-RESTPlus • define and document endpoints • validate input • format output (as JSON) • turn Python exceptions into HTTP responses • minimise boilerplate code flask-restplus.rtfd.io • generate interactive documentation ( Swagger UI )

  10. Demo

  11. OPEN API FORMAT

  12. OPEN API SPECIFICATION • Standard language to describe REST APIs • Open source (Linux Foundation) • Tools: • Swagger UI • Swagger Editor • Code generators • Initiative with many powerful members openapis.org swagger.io

  13. OPEN API SPECIFICATION • Standard language to describe REST APIs • Open source (Linux Foundation) • Tools: • Swagger UI • Swagger Editor • Code generators • Initiative with many powerful members openapis.org swagger.io

  14. Method Path Query Headers Body Request

  15. 
 Method Path Query REQUEST METHOD Headers POST /api/books/123/borrow?when=today Body from flask_restplus import Resource @ api.route('/<int:id>/borrow') class BorrowBookController (Resource): 
 def post (self, id): 
 """ Borrow book from library. 
 
 Allows the current user to borrow the book out of the library. 
 """ 
 ... return {'message': 'OK'}

  16. 
 
 Method Path Query REQUEST METHOD Headers POST /api/books/123/borrow?when=today Body from flask_restplus import Resource @ api.route('/<int:id>/borrow') class BorrowBookController (Resource): 
 class Resource : 
 def post (self, id): 
 def get (self)... 
 """ Borrow book from library. 
 def post (self)... 
 
 def put (self)... 
 Allows the current user to borrow def delete (self)... 
 the book out of the library. 
 def patch (self)... 
 """ 
 def options (self)... ... def head (self)... 
 return {'message': 'OK'}

  17. Method Path Query REQUEST METHOD Headers POST /api/books/123/borrow?when=today Body

  18. Method Path Query REQUEST METHOD Headers POST /api/books/123/borrow?when=today Body

  19. Method Path Query REQUEST PATH Headers POST /api/books/123/borrow ?when=today Body @ api.route(‘/books/<int:id>/borrow’) @ api.route('/articles/<title>') @ api.route('/wiki/<path:wikipage>') @ api.route('/values/<float:value>') @ api.route('/object/<uuid:identifier>')

  20. Method Path Query REQUEST PATH Headers GET /api/book/123/borrow ?when=today Body

  21. 
 Method Path Query QUERY ARGUMENTS Headers GET /api/books ?page=1&per_page=10 Body from flask_restplus import reqparse 
 pagination = reqparse.RequestParser() 
 pagination.add_argument('page', type=int, required= False , default=1, help='Page number') 
 pagination.add_argument('per_page', type=int, required= False , choices=[10, 20, 30, 40, 50]) 


  22. 
 
 Method Path Query QUERY ARGUMENTS Headers GET /api/books ?page=1&per_page=10 Body from flask import request 
 from flask_restplus import Resource 
 @api.route('/') 
 class PostsCollection (Resource): 
 @api.expect(parsers.pagination) 
 def get (self): 
 args = pagination_arguments.parse_args(request) 
 page = args.get('page', 1) 
 per_page = args.get('per_page', 10) 
 ...

  23. Method Path Query QUERY ARGUMENTS Headers GET /api/books ?page=1&per_page=10 Body

  24. Method Path Query REQUEST BODY (JSON) 
 Headers API MODELS Body blog_post = api.model('Blog post', { 
 'title': fields.String(description='Article title'), 
 'body': fields.String(description='Article content'), 
 'pub_date': fields.DateTime, 
 'category_id': fields.Integer(min=1), 
 }) @ api.expect(blog_post) 
 def post (self): 
 ...

  25. Method Path Query REQUEST BODY (JSON) 
 Headers API MODELS Body

  26. 
 Method Path Query API MODELS 
 Headers INHERITANCE AND NESTING Body category = api.model('Blog category', { 
 'id': fields.Integer(description='The unique id of category'), 
 'name': fields.String(description='Category name'), 
 }) 
 category_with_posts = api.inherit('Blog category with posts', category, { 
 'posts': fields.List(fields.Nested(blog_post)) 
 })

  27. Status Code Headers Body Response

  28. 
 Status Code Headers RESPONSE STATUS CODE Body @api.route('/<int:id>') 
 @api.response(404, 'Post not found.') 
 class PostItem (Resource): 
 @api.response(204, 'Post successfully deleted.') 
 def delete (self, id): 
 """ 
 Deletes blog post. 
 """ 
 delete_post(id) 
 return None , 204

  29. Status Code Headers RESPONSE STATUS CODE Body

  30. Status Code Headers RESPONSE BODY (JSON) Body blog_post = api.model('Blog post', { ... 
 'category_id': fields.Integer(attribute='category.id'), 'name': fields.String(attribute= lambda x: x._private_name), 
 }) @ api.marshal_with(blog_post) 
 @ api.marshal_list_with(blog_post) 
 def get (self): 
 def get (self): 
 ... ...

  31. EXCEPTION HANDLING from sqlalchemy.orm.exc import NoResultFound 
 
 @api.errorhandler(NoResultFound) 
 def database_not_found_error_handler (e): 
 log.warning(traceback.format_exc()) 
 return {'message': 'A database result was not found.'}, 404

  32. INERACTIVE DEBUGGER

  33. 
 
 
 from flask import Flask 
 from flask_restplus import Resource, Api 
 app = Flask(__name__) 
 api = Api(app) 
 @api.route('/hello') 
 class HelloWorld (Resource): 
 def get (self): 
 return {'hello': 'world'} 
 if __name__ == '__main__': 
 app.run(debug= True )

  34. Demo code and article available on my blog: karzyn.com THANK YOU

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend