프로그래밍언어/Python

http.server

부산딸랑이 2014. 11. 11. 17:54

간단서버생성 안드로이드 sl4a에서두 가능함

index.html파일등으로 깔끔하게 정리해서 볼수도 있음


import http.server
import socketserver

PORT = 80

Handler = http.server.SimpleHTTPRequestHandler

httpd = socketserver.TCPServer(("", PORT), Handler)

print("serving at port", PORT)
httpd.serve_forever()




'프로그래밍언어 > Python' 카테고리의 다른 글

파일모드  (0) 2014.11.25
CSV파일 읽고 쓰기  (0) 2014.11.25
파일복사,이동  (0) 2014.11.10
Python)계산기 SendMessage예제 Ctypes  (0) 2014.11.06
Python) 메모장에 텍스트보내기 파이썬3내장 ctypes  (0) 2014.11.06