urllib登入 並訪問其它頁面

2021-10-05 12:51:00 字數 1822 閱讀 2331

def

deng()

:

url =

''# 通過cookiejar()類構建乙個cookiejar物件,用來儲存cookie的值

cookie = cookiejar.cookiejar(

)#通過httpcookieprocessor()物件構建乙個處理器物件,用來處理cookie

)#opener傳入得到的cookie

opener = urllib.request.build_opener(cookie_handler)

#傳入url data headers

request = urllib.request.request(url=url,data=data ,headers=headers)

html = opener.

open

(request)

#開啟鏈結

html = html.read(

) html = html.decode(

'utf-8'

)return

[html,opener]

#返回原始碼 以及攜帶cookie的 opener

html = deng(

)r = html[1]

html =r.

open

('/c/public/memberinfo.jsp'

)html = bs(html,

'lxml'

)print

(html.findall(

'div'

,class_=

'arearight')[

0].text)

Vue專案中跳過登入頁面直接訪問某個頁面

首先要在router下的index.js中新增路由,照葫蘆畫瓢就行 接著是permission.js,網上很多資料都說是mian.js,但是我的這個專案是在permission.js裡面 這裡還是整個拿過來,重要的都有註解 import router from router import store...

寫乙個註冊頁面和登入頁面,並實現成功登入

由於只是要實現登入頁能成功登入,所以頁面很簡單,功能也少 註冊頁面使用者註冊 h3 method post 賬號 text id uname 密碼 password id upwd id sub 註冊 a button value 取消 form var sub document.getelemen...

django寫使用者登入判定並跳轉制定頁面

1.首先看要設定登陸的介面 book view.py user util.my login 相當於 select all my login select all def select all request 查詢所有的書 book list bookinfo.objects.all 返回 retur...