2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Flaskで「Hello World」を出力させる

Posted at

##はじめに
未来電子テクノロジーでインターンをしている松井です。
*プログラミング初心者であるため、内容に誤りがあるかもしれません。
もし、誤りがあれば修正するのでどんどん指摘してください。

##Flaskのインストール
Flaskをpipでインストールします。

$pip install flask
$python3
>>> import flask
>>> flask.__version__
'1.0.2'

プログラムを書く

server.py
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
    return 'Hello World'


if __name__ == '__main__':
    app.debug = True
    app.run(host='0.0.0.0', port=8000)

プログラムを実行する

$python3 server.pyをコンソールで実行します。
次にRunning on http://0.0.0.0:8000/を見つけて、http://0.0.0.0:8000/の部分をコピーします。
それをGoogleで接続すると、Hello Worldと出力されます。

簡単でしたね。
returnの部分をいじると、HTMLファイルなども表示できます。
ぜひ、いろいろ調べてみてください。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?