Задать вопрос
  • Сайт возвращает 404 при отправке запроса requests?

    delvin-fil
    @delvin-fil
    Crazy Linux-admin
    import requests
    
    headers = {
        'User-Agent': ('Mozilla/5.0 (Windows NT 6.0; rv:14.0) Gecko/20100101 '
                       'Firefox/14.0.1'),
        'Accept':
        'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
        'Accept-Language':
        'ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3',
        'Accept-Encoding':
        'gzip, deflate',
        'Connection':
        'keep-alive',
        'DNT':
        '1'
    }
    
    url = f'https://subtitry.ru/'
    response = requests.post(url, headers=headers).text
    print(response)
    Ответ написан
    Комментировать