使用 python 登录使用 cookie 的网站

Using python to login to a website that use cookies

我正在尝试登录此网站 (https://phishtank.org/login.php) 以将其与 python 一起使用,但该网站使用 cookie。我试过这个:

import urllib

cookies = {
    'PHPSESSID': '3hdp8jeu933e8t4hvh240i8rp840p06j',
}

headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
    'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
    'Accept-Language': 'es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3',
    'Referer': 'https://phishtank.org/login_required.php',
    'Connection': 'keep-alive',
    'Upgrade-Insecure-Requests': '1',
    'Sec-Fetch-Dest': 'document',
    'Sec-Fetch-Mode': 'navigate',
    'Sec-Fetch-Site': 'same-origin',
    'Sec-Fetch-User': '?1',
    'Cache-Control': 'max-age=0',
    'TE': 'trailers',
}

response = requests.get('https://phishtank.org/add_web_phish.php', headers=headers, cookies=cookies)

print(response.text)

它有效,但几分钟后 cookie 就过期了。我该怎么做才能避免这种限制?也许是某些东西为我请求新的 cookie 并使用它。

改用请求会话。它为您保留 cookie

import requests
session = requests.Session()
session.headers.update(headers)
session.cookies.update(cookies)

session.get(<url>)