使用web.py框架,实现简单的get和post请求: py文件名:mytest.py import web urls = ( '/', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self): a = int(web.input().a) b = int(web.input().b) return a + b def POST(self): a = int(web.input().a) b = in
这篇文章主要分享一个python网页请求模块urllib2模块的简单封装代码. 原文转自:http://www.jbxue.com/article/16585.html 对python网页请求模块urllib2进行简单的封装.例子: #!/usr/bin/python #coding: utf-8 import base64 import urllib import urllib2 import time class SendRequest: ''' This class use to set
from httplib2 import Http def postDada(): http=Http() heads={"pragma":"no-cache"} data="" count=1 for i in range(count): res_h,res_b=http.request("http://urltracker.yunfan.com:8081/?opt=2", method="POST",h
Mac OS X10.9默认带了Python2.7,不过现在Python3.3.3出来了,如果想使用最新版本,赶紧升级下吧.基本步骤如下. 第1步:下载Python3.3 下载地址如下: Python3.3 这里面有windows和mac os x下的安装程序,下载那个64位的安装程序(估计现在没有用32位的mac os x的吧) 第2步: 安装下载的img文件,安装完后的目录如下: /Library/Frameworks/Python.framework/Versions/3.3 第3步:移动