论坛 & python

用一个新的linux vps开了一个论坛玩, http://new.twd2.net

另外我学习了一下python, 写了一个输出 hello, world 的东西, http://new.twd2.net:88

PS.http://www.python.org/download被墙, 于是python放了一个中文的下载链接http://www.python.org/getit

#!/usr/bin/python
# Filename : hw.py
import socket, threading, os, sys, time
import hashlib, platform, stat
httplistener=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
httplistener.bind(("0.0.0.0",88))
httplistener.listen(1024)
while True:
	conn, addr=httplistener.accept()
	print "connection from ",addr
	conn.send('HTTP/1.1 200 OK\nServer: WDServer\n\n')
	conn.send(
'''<html>
<head>
<title>Welcome</title>
</head>
<body>
<h1>hello, world</h1>
</body>
</html>
''')
	conn.close()
发表评论?

3 条评论。

  1. 代码里是不是忘了加pre标签了,看不到缩进符号了。。。
    :razz: 恭喜22成为pythoner了!

发表评论

注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

:wink: :twisted: :roll: :oops: :mrgreen: :lol: :idea: :evil: :cry: :arrow: :?: :-| :-x :-o :-P :-D :-? :) :( :!: 8-O 8)

本文链接:https://twd2.me/archives/1670QrCode