2024-01-26から1日間の記事一覧

VSCode - GitLenによる差分の確認

kuma-emon.com

python - pipコマンド

atmarkit.itmedia.co.jp

Flask - Sample API

Flaskのサンプル。 hello.py - server from flask import * from markupsafe import escape import json app = Flask(__name__) @app.route("/") def index(): return "Index Page" @app.route("/hello_world") def hello_world(): return "<p>Hello, World!p>"</p>…