资源简介
http服务搭建 自己修改get post命令后服务器操作即可。
代码片段和文件信息
# coding:utf-8
from baseHTTPServer import HTTPServerbaseHTTPRequestHandler
import urllib
class RequestHandler(baseHTTPRequestHandler):
def _writeheaders(self):
#print self.path
#print self.headers
self.send_response(200);
self.send_header(‘Content-type‘‘text/html‘);
self.end_headers()
def do_Head(self):
self._writeheaders()
def do_GET(self):
self._writeheaders()
self.wfile.write(‘this is get‘)
def do_POST(self):
self._writ
相关资源
- 老男孩Python2018基础高级进阶(28周)
- Python输入年份月份显示日历
- python实现百度坐标和世界经纬度坐标
- 利用OpenCV检测人脸python程序
- JSYX2.0.zip
- Python题目汇总含答案pdf
- 模态分解emd算法Python实现
- Python读取Las与转换为TXT.zip
- backup.sh.py
- BSTestRunner.pypython3
- SI模型,影响力传播模型,传染病模型
- python自动抓取网页中的pdf文件
- python爬虫网站图片
- Anaconda3 for MacOSX x64百度云
- python16to8
- freetype的python代码
- selenium+python 自动化测试 ---登陆界面测
- OpenCV-Python实现的图片拼接源代码
- 多商品流点弧模型 python+gurobi
- dbfpy操作dbf文件
- python实现果蝇优化算法,测试函数为
- 通过python实现批量excel转pdf代码
- python实现BM匹配算法
- 新浪财经24小时python爬虫程序内置企业
- 基于python实现的ICA过程
- LSTM股价预测(python).zip
- 支持向量机SVM python源代码
- txt.py python 对比不同的txt文档数据 不
- python_获取百度搜索结果(标题和URL)
- 桌面清理工具
评论
共有 条评论