閑的無聊。。。
網(wǎng)上一堆,正好練手(主要是新手)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# coding=utf-8 import requests from bs4 import BeautifulSoup headers = { 'user-agent' : 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36' , 'origin' : 'https://www.v2ex.com' , 'referer' : 'https://www.v2ex.com/signin' , 'host' : 'www.v2ex.com' , } s = requests.Session() r = s.get( 'https://www.v2ex.com/signin' , headers = headers) soup = BeautifulSoup(r.content, "html.parser" ) #獲取登錄數(shù)據(jù) once = soup.find( 'input' , { 'name' : 'once' })[ 'value' ] name = soup.find( 'input' , { 'type' : 'text' , 'class' : 'sl' })[ 'name' ] password = soup.find( 'input' , { 'type' : 'password' , 'class' : 'sl' })[ 'name' ] login_data = { name : 'xxx' , password : 'xxx' , 'once' : once, 'next' : '/' } #登錄 s.post( 'https://www.v2ex.com/signin' , login_data, headers = headers) |
以上這篇python3 模擬登錄v2ex實(shí)例講解就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持服務(wù)器之家。