Home  >  Article  >  Backend Development  >  Use python3 to simulate login to v2ex

Use python3 to simulate login to v2ex

巴扎黑
巴扎黑Original
2017-07-21 13:27:581497browse

It’s boring. . .

There are a lot of them online, just for practicing (mainly for novices)

# 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.php.cn',
'referer': 'https://www.php.cn/signin',
'host': 'www.php.cn',
}
s = requests.Session()
r = s.get('https://www.php.cn/signin', headers=headers)
soup = BeautifulSoup(r.content, "html .parser")

#Get login data
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' : '/'
}

#Login
s.post('https://www.php.cn/signin', login_data, headers=headers)

The above is the detailed content of Use python3 to simulate login to v2ex. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn