Python Bottle Hello World
1274 단어 파이썬병HelloWorld
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 액세스합니다.
Reference
이 문제에 관하여(Python Bottle Hello World), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hiratarich/items/fd37d8724c651a309672텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)