I am scraping a simple web page using Python. When I look at the web page using Chrome I get:
8/13 2:20 PM - this is the correct time for my time zone
In on one of the date strings (returns as a string)
I am using requests.get (Same results with urllib2) with the call:
thepage = requests.get('http://fakepage.com')
and when I get everything decoded I get: 8/13 4:20 PM - since it's off by two hours exactly, I assume it's the server side detecting my time zone.
is there any way to send my time zone in the requests.get call? or perhaps I am looking at it incorrectly.