實例講解urllib在python2和python3的使用差別

Urllib是python提供的一個用於操做url的模塊, 在python2和python3間是不兼容的,因此實際開發衆咱們須要爲這兩個版本分別寫一套代碼。html

在python2中,有urllib庫和urllib2庫。在python3中,urllib2合併到urllib庫中。python

如下是python2與python3中經常使用的關於urllib庫的變化:api

   1.在python2中使用import urllib2————對應的,在python3中會使用import urllib.request,urllib.errorcookie

   2.在python2中使用import urllib————對應的,在python3中會使用import urllib.request,urllib.error,urllib.parseapp

   3.在python2中使用import urlparse————對應的,在python3中會使用import urllib.parseurl

   4.在python2中使用urllib2.urlopen————對應的,在python3中會使用urllib.request.urlopencode

   5.在python2中使用urllib.urlencode————對應的,在python3中會使用urllib.parse.urlencodehtm

   6.在python2中使用urllib.quote————對應的,在python3中會使用urllib.request.quoteutf-8

   7.在python2中使用cookielib.CookieJar————對應的,在python3中會使用http.CookieJar開發

   8.在python2中使用urllib2.Request————對應的,在python3中會使用urllib.request.Request

 

下面咱們經過具體實例來講明一下, 榛子云短信(短信驗證碼平臺)的一個發送api:

python2源碼:

import urllib
import urllib2
 
class ZhenziSmsClient(object):
	url = "http://sms.zhenzikj.com";
	def __init__(self, appId, appSecret):
		self.appId = appId
		self.appSecret = appSecret
	def send(self, number, message):
		data = {
    	    'appId': self.appId,
		    'appSecret': self.appSecret,
		    'message': message,
		    'number': number
		}
		data = urllib.urlencode(data);
		req = urllib2.Request(self.url+'/sms/send.do', data);
		res_data = urllib2.urlopen(req);
		res = res_data.read();
		return res;

send是發送短信方法,參數number是接收手機號碼,message是短信內容

python3源碼:

import urllib.request
import urllib.parse
 
class ZhenziSmsClient(object):
	url = "http://sms.zhenzikj.com";
	def __init__(self, appId, appSecret):
		self.appId = appId
		self.appSecret = appSecret
 
	def send(self, number, message):
		data = {
    	    'appId': self.appId,
		    'appSecret': self.appSecret,
		    'message': message,
		    'number': number
		}
		data = urllib.parse.urlencode(data).encode('utf-8');
		req = urllib.request.Request(self.url+'/sms/send.do', data=data);
		res_data = urllib.request.urlopen(req);
		res = res_data.read();
		res = res.decode('utf-8');
		return res;

文章來源: http://smsow.zhenzikj.com/bbs/question/detail/48.html

相關文章
相關標籤/搜索