minor mods

This commit is contained in:
tsb1995 2019-12-22 19:14:46 -08:00
parent 70713170ec
commit 3e9d70f123
4 changed files with 8 additions and 1 deletions

Binary file not shown.

3
app.py
View File

@ -1,6 +1,7 @@
from flask import Flask, render_template, request, redirect from flask import Flask, render_template, request, redirect, Response
from sympy import * from sympy import *
from helpers import apology from helpers import apology
import numpy as np
app = Flask(__name__) app = Flask(__name__)

View File

@ -13,3 +13,4 @@ requests==2.22.0
sympy==1.4 sympy==1.4
urllib3==1.25.7 urllib3==1.25.7
Werkzeug==0.16.0 Werkzeug==0.16.0
matplotlib==3.1.2

View File

@ -65,4 +65,9 @@
</tbody> </tbody>
</table> </table>
</font> </font>
<canvas id='myChart' width='400', height='400'></canvas>
{% endblock %} {% endblock %}