Affichez simplement "** Hello, world! **" sur votre navigateur.
seulement ça.
Pour ʻindex.html, tapez simplement
! ʻDans Emmet sur VS Code et écrivez`
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
Il n'y a aucune raison particulière de définir «port = '5555» dans «sample.py».
from flask import Flask, render_template
#Instanciation
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html');
if __name__ == '__main__':
app.run(host='0.0.0.0', port='5555', debug=True)
>python sample.py
Recommended Posts