Is the request made by the urllib.request module same as the requests made by Web browsers?

60 Views Asked by At

Consider if I use the Python urllib.request module

import urllib.request 

request_url = urllib.request.urlopen('https://www.geeksforgeeks')

Is it the same request made by the web browser when I type a URL; from the server's point of view?

0

There are 0 best solutions below