I have a view that returns JSON data. I want to get that data from another view as well, so I tried calling the JSON view from it. However, a Response
was returned rather than the JSON data. How can I call one view from another view and get the data?
@app.route('/promoters/<int:id>', methods=['GET'])
def get_promoter(id):
...
>>> get_promoter(3)
<Response 440 bytes [200 OK]>