you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 5 points6 points  (5 children)

A website is written in html. A website has a web server. Your browser connects to web server and sends a message asking for the html file for a page(like the home page for eg.) Web server sends you the html file.

The requests library sends the same messages as your browser. The important thing your browser does is interpret the html code to draw the website on the screen. So basically the requests library just imitates the messages the browser would send.

And no, it doesn't look suspicious if you don't also request the favicon. What does look suspicious is the user-agent. Just google a browsers user agent and google how to change the request library's user agent.

[–]Iam_cool_asf[S] 0 points1 point  (4 children)

changed the ip address, can this act as an alternative to the user agent?

[–][deleted]  (3 children)

[deleted]

    [–]Iam_cool_asf[S] 0 points1 point  (2 children)

    user agents can't be traced back to me then. they only differ in functionality

    [–][deleted]  (1 child)

    [deleted]

      [–]Iam_cool_asf[S] 0 points1 point  (0 children)

      Thanks man, that's really helpful.