Will python requests.get affect website statistics?

r = requests.get (" http://github.com")
r.url
" https://github.com/"
r.status_code
200
r.history

is requests.get (" http://github.com")) equivalent to browsing http://github.com if it uses Baidu statistics or Google statistics, will record this traffic record?

Apr.11,2021

generally not. Requests only gets the document, but the JS in it is not obtained, so it will not be counted.


Baidu statistics or Google statistics call Js for statistics, so they will not be affected.
but some internal statistics of many sites are carried out on the server side, which will affect

.
Menu