资源简介
实验楼中的项目,本人改为了python3支持的代码。使用了python3中的库。配有博客讲解。
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Fri Jun 23 08:13:43 2017
@author: dc
“““
import http.server as hs
import sys os
class ServerException(Exception):
‘‘‘服务器内部错误‘‘‘
pass
class case_no_file(object):
def test(self handler):
class RequestHandler(hs.baseHTTPRequestHandler):
def send_content(self page status = 200):
self.send_response(status)
self.send_header(“Content-type“ “text/html“)
self.send_header(“Content-Length“ str(len(page)))
self.end_headers()
self.wfile.write(bytes(page encoding = ‘utf-8‘))
#print(page)
def do_GET(self):
#这里要处理两个异常,一个是读入路径时可能出现的异常,一个是读入路径后若不是文件,要作为异常处理
try:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-06-30 21:42 web\
文件 2632 2017-06-23 11:26 web\httpserver_404.py
文件 5392 2017-06-26 10:49 web\httpserver_ba
文件 4944 2017-06-25 06:45 web\httpserver_CGI.py
文件 3996 2017-06-25 03:37 web\httpserver_index.py
文件 2489 2017-06-23 08:25 web\httpserver_plain.py
文件 70 2017-06-30 21:44 web\readme.txt
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论