Python Bottle Hello World

bottle은 Python 용 빠르고 가벼운 WSGI 렘 워크입니다. 단일 파일 모듈에는 파이썬 표준 라이브러리 이외의 종속성이 없습니다. 쉽게 Web Server를 구축할 수 있습니다. WSGI Web Server Gateway Interface



(소요 시간 10 분)



Hello.py
from bottle import *
@route("/")
def route():
    return'<h1 align="center">hello world</h1>'
run(host="192.168.1.10",port=911)

"Stupid Phone"에서 http://192.168.1.10:911 액세스합니다.

좋은 웹페이지 즐겨찾기