mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-01-19 01:08:48 +00:00
10 lines
194 B
Python
10 lines
194 B
Python
|
from flask import Flask, render_template
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
@app.route("/")
|
||
|
def main():
|
||
|
return render_template("index.html")
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run(debug=False, port = 5001)
|