Python3使用cookielib模組

同時使用過python2和python3的應該都知道,好多模組在python2中能直接安裝,但是到了python3中卻無法安裝直接使用,同樣python3中的好些模組在python2中也是一樣

如下:

 

# python2   可直接安裝使用cookielib模組 
from cookielib import CookieJar
cookie = CookieJar()



# python3 需要安裝http模組才能使用
from http import cookiejar
cookie = cookiejar.CookieJar()

Tags: