在工作时一切似乎都正常,但是后来我意识到我需要登录该网站。
使用requests.Session().post() and then I printed that with p.text (p is requests.Session().post())
尝试过,但是随后给了我一个
HTML文字说:“ 404您要查找的页面不存在。”
,我确定该页面存在,因为我只是复制了网址。
以下是代码:
import requests
from bs4 import BeautifulSoup as soup
data = {
'login': '________________',
'password': '_____________',
'remember_me': 0
}
with requests.Session() as s:
p = s.post('URl/login', data=data)
print(p.content)
r = s.get('URL/The Page')
print(r.text)