"파이썬 서버 페이지 PSP"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
8번째 줄: 8번째 줄:


==예제 1: hello.psp==
==예제 1: hello.psp==
<source lang='asp'>
<syntaxhighlight lang='asp'>
<html><body>
<html><body>
<h2><%= 'Hello World' %></h2>
<h2><%= 'Hello World' %></h2>
</html></body>
</html></body>
</source>
</syntaxhighlight>


==예제 2: hello2.psp==
==예제 2: hello2.psp==
<source lang='asp'>
<syntaxhighlight lang='asp'>
<%
<%
import time
import time
24번째 줄: 24번째 줄:
<h2><%= message %></h2>
<h2><%= message %></h2>
</html></body>
</html></body>
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 03:00 기준 최신판

  다른 뜻에 대해서는 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 }}