I\'m trying to scrape an excel file from a government \"muster roll\" database. However, the URL I have to access this excel file:
http://nrega.ap.gov.in/Nregs/Front
Using requests this is a trivial task:
>>> url = 'http://httpbin.org/cookies/set/requests-is/awesome' >>> r = requests.get(url) >>> print r.cookies {'requests-is': 'awesome'}