12 lines
183 B
Python
12 lines
183 B
Python
|
from flask import Flask, render_template
|
||
|
app = Flask("Project Numeri")
|
||
|
|
||
|
@app.route('/')
|
||
|
def index():
|
||
|
return render_template('index.html')
|
||
|
|
||
|
def RunWeb():
|
||
|
app.run(debug=True)
|
||
|
|
||
|
|