Advertisement
Guest User

Untitled

a guest
Feb 8th, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. @app.route('/<database_name>/hello', methods=['POST'])
  2. @with_pool
  3. @with_transaction
  4. def hello(request, pool):
  5.    # WebUser = pool.get('web.user')
  6.    # data = request.parsed_data
  7.    # print('Email: ' + data.get('email')
  8.    return 'Hello World'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement