python2 http服务端和客户端 server.py importSimpleHTTPServerimportSocketServerclassMyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):defdo_GET(self): self.send_response(200) self.send_header('Content-type','text/plain') self.end_headers() self.wfile.write("hello") PORT =8000handler = MyHandl...
[root@zabbix ~]# python -m SimpleHTTPServer 8880 Serving HTTP on0.0.0.0port8880... 后面8880端口是手动指定的。默认为8000; 这样就启动了一个http的服务,目前是监听状态;再打开一个窗口进行访问下; 1 2 3 4 5 6 7 8 9 10 11 12 13 [root@zabbix ~]# curl -I http://127.0.0.1:8880 HTTP/...
文件共享示例 假设您有一个名为example.txt的文本文件,需要通过 HTTP 服务器共享。步骤如下: 打开终端,导航到包含example.txt文件的目录。 运行命令python -m SimpleHTTPServer 8000启动服务器。 打开浏览器,输入http://localhost:8000/,点击example.txt进行访问和下载。 在此过程中,如果您有其他设备,也可以在浏览...
文件名:hts.py importBaseHTTPServerimportSimpleHTTPServerimportSocketServerimportsslclassThreadedHTTPServer(SocketServer.ThreadingMixIn,BaseHTTPServer.HTTPServer):print"start..."passhttpd=ThreadedHTTPServer(('0.0.0.0',4443),SimpleHTTPServer.SimpleHTTPRequestHandler)httpd.socket=ssl.wrap_socket(httpd.socket,key...
httpd=ThreadedHTTPServer(('0.0.0.0',4443),SimpleHTTPServer.SimpleHTTPRequestHandler)httpd.socket=ssl.wrap_socket(httpd.socket,keyfile="localhost.key",certfile="localhost.pem",server_side=True)httpd.serve_forever() 2.3、启动https服务器 使用命令:python hts.py,启动过程中需要输入生成key文件时的密码12...
python -m SimpleHTTPServer 8000 执行后,在本机打开“http://localhost:8000”,或者在局域网内的其它机器上打开“http://本机ip:8000”,就能访问到执行目录下的内容,例如下图就是我本机的内容: 与此类似,我们只需要一行命令“python -m pydoc -p xxx”,就能生成 HTML 格式的官方帮助文档,可以在浏览器中...
print 在进行程序调试时用得最多的语句可能就是 print,在 Python 2 中,print 是一条语句,而 ...
18. http 在py2中相关的模块由httplib,Cookie, cookielib, BaseHTTPServer, SimpleHTTPServer, CGIHttpServer,在py3中统一到了http模块中,变成http.client,http.cookies, http.cookiejar, http.server. 19. urllib py2中存在两个包,urllib和urllib2,是爬虫经常用的模块,py3中统一到了urllib中。并且py2中的url...
httplib, BaseHTTPServer, CGIHTTPServer, SimpleHTTPServer, Cookie, cookielib被合并到http包内。 取消了exec语句,只剩下exec()函数。 Python 2.6已经支持了exec()函数。 10、数据类型 1)在Python2中long是比int取值范围更大的整数,Python3中取消了long类型,int的取值范围扩大到之前的long类型范围 ...
httplib, BaseHTTPServer, CGIHTTPServer, SimpleHTTPServer, Cookie, cookielib被合并到http包内。 取消了exec语句,只剩下exec()函数。 Python 2.6已经支援exec()函数。 5.数据类型 1)Py3.X去除了long类型,现在只有一种整型——int,但它的行为就像2.X版本的long ...