我正在创建一个Matplotlib图形,以显示在我的Django应用程序的HTML模板中。我通过将此图保存在我的静态文件下,然后使用保存的img
加载.png
标记,将此图发送到HTML。
在获得对该图的引用之后,我在views.py
中执行此操作。
# Get analysis visualization chart
figure = analyser.visualize_tweets(emotions)
# Save figure in static folder as png
figure.savefig('static/analysis_figures/figure.png')
# Inject html with figure path
response['analysis_figure_path'] = 'analysis_figures/figure.png'
return render(request, 'landing_page/index.html', response)
我的HTML是这样的:
<img src={% static analysis_figure %} alt="">
然而,当RuntimeError: main thread is not in main loop
中的函数第二次被调用时(如果一切正常后调用它),这会导致views.py
发生。
为防止出现此错误,我将Matplotlib图保存为main()
,以便在主线程中运行,然后在原始函数中调用它。这修复了错误,但阻止了我的HTML重新加载,因此每次用户提交查询时,新图形都显示在前一个图形上,而不会删除前一个图形。
关于任何问题的任何想法?
答案 0 :(得分:2)
我认为这篇文章解释了如何做: How to clean images in Python / Django?
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
如此处所述:https://matplotlib.org/faq/howto_faq.html#matplotlib-in-a-web-application-server
为防止新图形显示在上一次使用中,请执行以下操作:
plt.close() / figure.close()
答案 1 :(得分:0)
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
plt.bar(x, y, tick_label = tick_label,
width = 0.8, color = ['red','yellow', 'green'])
plt.xlabel('x - axis')
plt.ylabel('y - axis')
plt.title('My bar chart!')
plt.style.use('fivethirtyeight')
fig=plt.gcf()
plt.close()
`enter code here`# convert graph
buf=io.BytesIO()
fig.savefig(buf,format='png')
buf.seek(0)
string =base64.b64encode(buf.read())
uri=urllib.parse.quote(string)
context={'imgdata':uri}