파이썬 서버 페이지 PSP

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 03:00 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
  다른 뜻에 대해서는 PSP 문서를 참조하십시오.

1 개요[ | ]

Python Server Pages; PSP
파이썬 서버 페이지
.psp
  • ASP, JSP, PHP과 유사한 방식의 Python 웹프로그래밍 형식
  • 아파치에 mod_python 모듈을 연동하면 psp 사용가능

2 예제 1: hello.psp[ | ]

<html><body>
<h2><%= 'Hello World' %></h2>
</html></body>

3 예제 2: hello2.psp[ | ]

<%
import time
weekday = time.strftime('%A', time.localtime(time.time()))
message = 'Hello World! This is a wonderful %s.' % weekday
%>
<html><body>
<h2><%= message %></h2>
</html></body>

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}