码迷,mamicode.com
首页 > 编程语言 > 详细

Python发一个GET请求

时间:2014-05-09 01:39:09      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:python   python get   python get请求   python httplib2 请求   

# -*- coding: utf-8 -*-

try: 
	import httplib2
except ImportError:
	print(‘错误:‘)
	print(‘    httplib2这个库没有找到,程序无法继续执行!‘)
	exit(255)
	
	
def network_get_proc(self, use_cache = True):
		‘‘‘POST动作‘‘‘
		get_request_str = ‘http://192.168.0.54/softlist‘	# 请求URL
		# print(‘->%s‘ % post_request_str)
		if use_cache:
			h = httplib2.Http(‘.cache‘)
		else:
			h = httplib2.Http(‘no‐cache‘)
		if use_cache:
			response, content = h.request(get_request_str)
		else:
			response, content = h.request(get_request_str, headers={‘cache‐control‘:‘no‐cache‘})
		print(‘->status:%d‘ % response.status)
		
		get_ret = False
		if response.status == 200:
			get_ret = True
			print(‘INFO:success!‘)
			print(‘***response***‘)
			print(response)
			print(‘***content***‘)
			print(content.decode(‘utf-8‘))
		else:
			get_ret = False
		return get_ret
		
		

# 应用程序入口
if __name__ == ‘__main__‘:
	post_ret = network_get_proc(False)
	


Python发一个GET请求,布布扣,bubuko.com

Python发一个GET请求

标签:python   python get   python get请求   python httplib2 请求   

原文地址:http://blog.csdn.net/ccpw_cn/article/details/25337701

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!