首页 > 代码库 > 使用Python进行http POST请求

使用Python进行http POST请求

1、使用requests模块

import request

url=‘http://www.xxx.com/xxx‘
data=http://www.mamicode.com/{‘username‘:‘zhangsan‘,‘password‘:‘zhangsanpw‘}>


2、使用urllib2模块

import urllib2
import urllib

url=‘http://www.xxx.com/xxx‘
data=http://www.mamicode.com/{‘username‘:‘zhangsan‘,‘password‘:‘zhangsanpw‘}>




本文出自 “唐柏” 博客,请务必保留此出处http://4988084.blog.51cto.com/4978084/1891742

使用Python进行http POST请求