wonderbeyond
7/13/2017 - 1:28 PM

Profile slow-response request of Flask

Profile slow-response request of Flask

import cProfile, pstats

cProfile.run("""
from flask import current_app
client = current_app.test_client()
client.get('/tasks/?case=7161068', headers={'Authorization':'Token TTTTTTTOOOOKKKKKEEEENNNNNN'})
""", filename='/tmp/profile.out')

p = pstats.Stats('/tmp/profile.out')
p.sort_stats('cumtime').print_stats(100)