logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python实现http请求

一、python2发送get请求# -*- coding: utf-8 -*-import urllib2url = "http://localhost:80/webtest/test?name=xuejianbest"req = urllib2.Request(url)response = urllib2.urlopen(req)page_html = response.rea...

#python#ajax
暂无文章信息