So basically I am making a flask application. I have few python print statement to mark checkpoints (debugging). Instead of print those statements in python console . I want it to be in browser console (i.e. console.log)
When I do:
print("ok")
It should also print ok in browser log( like javascript console.log). Is there any library for achieving this or any other way of doing this