You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logging statement that uses response.text means that if a character encoding isn't specified in the response header, requests always guesses the encoding. This can be slow for large responses.
The text was updated successfully, but these errors were encountered:
Just been burnt by this again; I'd be tempted to either remove this or add some condition that checks if logging is set to debug. chardet is painfully slow on large files.
The logging statement that uses
response.text
means that if a character encoding isn't specified in the response header,requests
always guesses the encoding. This can be slow for large responses.The text was updated successfully, but these errors were encountered: