I've got a website that I want to check to see if it was updated since the last check (using hash). The problem is that I need to enter a username and password before I can visit the site.
Is there a way to input the username and the password using python?
Check out the
requests
library, which you can get viapip
by typingpip install requests
, either through thecmd
prompt, or terminal, depending on your OS.You should be alright. If you told us the site in question we could probably provide a better answer.
It's possible to send POST requests from Python. Take a look at httplib, it's standard library for http requests. There are other libraries that could help you act more like a browser. My favorite is mechanize.
Yes, it's possible to send the same info as the browser does. Depending on how the browser communicates with the server, it could be as simple as adding username and password as HTTP POST parameters. Other common methods are for the browser to send a hash of the password, or to log in with more than one step.