Update app.py
Browse files
app.py
CHANGED
|
@@ -147,6 +147,7 @@ def index():
|
|
| 147 |
)
|
| 148 |
return render_template("index.html")
|
| 149 |
|
|
|
|
| 150 |
@app.route("/download_pdf", methods=["POST"])
|
| 151 |
def download_pdf():
|
| 152 |
capital_inicial = float(request.form["capital"])
|
|
@@ -279,3 +280,4 @@ def download_pdf():
|
|
| 279 |
|
| 280 |
if __name__ == '__main__':
|
| 281 |
app.run(host='0.0.0.0', port=7860, debug=True)
|
|
|
|
|
|
| 147 |
)
|
| 148 |
return render_template("index.html")
|
| 149 |
|
| 150 |
+
|
| 151 |
@app.route("/download_pdf", methods=["POST"])
|
| 152 |
def download_pdf():
|
| 153 |
capital_inicial = float(request.form["capital"])
|
|
|
|
| 280 |
|
| 281 |
if __name__ == '__main__':
|
| 282 |
app.run(host='0.0.0.0', port=7860, debug=True)
|
| 283 |
+
|