Guest User

Untitled

a guest
Oct 21st, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. # Flask: Example uses blueprint routes library
  2. @bp.route('/', methods=['PUT'])
  3. def create_resource():
  4.     return
  5.  
  6. # Flacon: Create a class to create a resource and implement REST functions
  7. class Resource(...):
  8.     def on_put(self, request, response):
  9.         return
Advertisement
Add Comment
Please, Sign In to add comment