For further actions, you may consider blocking this person and/or reporting abuse
Read next

From Chaos to Code: How I Tamed My Life with 100 Lines of Python
sakethk -

How to Increase Width of Input Fields in a React Component?
Generatecode -

How to Extract Data from Klipfolio to CSV Using Bash
Generatecode -

How to Convert UTC Dates to Local Timezone in Laravel Web Apps?
Generatecode -
Top comments (3)
Do you want to embed the images on the page or just load the png? Something like this stackoverflow.com/questions/454601... could work for rendering the png. Otherwise, I would save the matplotlib graph to the png in your static files, then dynamically pass the file path to the template. You could do this within your models if that is how your app is structured. I would also highly recommend Bokeh to create fully interactive graphs Python!
I can also only highly recommend Bokeh having reviewed a few options (albeit back in 2015) when working on a previous project. We published a paper that outlines the pros and cons of the libraries that we ended up using. We went for Bokeh for load/rendering speed, active community and the fact that it had more documentation than Mpld3 another option you might want to consider.
Thank you ... I'll try both of them and see which is better for what I'm working on ...