Отключение поддержки

В более старых версиях Requests была возможность отключить поддержку активности. Что-то вроде этого:

s = requests.session()
s.config['keep_alive'] = False

Я также нахожу в другом вопросе, что я могу использовать заголовок Connection: закрыть

HTTP/1.1 defines the "close" connection option for the sender to signal 
that the connection will be closed after completion of the response. 
For example,
   Connection: close
in either the request or the response header fields indicates that the 
connection SHOULD NOT be considered `persistent' (section 8.1) after the 
current request/response is complete.
HTTP/1.1 applications that do not support persistent connections MUST 
include the "close" connection option in every message. 

Если я правильно понимаю, это не значит, что соединение будет закрыто. Это всего лишь информация о том, что ее не следует считать постоянной.

Как это сделать в последних версиях?

0 ответов

Другие вопросы по тегам