Login using Python in basic HTML form

18,405

well first of all check the page code , to know what kind of method so send a data , and the username and password name

<form action="signin.php" method="post" name="log_in" id="log_in" onsubmit="return login()">
                    <label for="name">User Name:</label><br>
                    <input type="text" maxlength="80" size="25" id="username" name="username" style="border:1px dotted #1a64a3; margin-bottom:10px">
                    <label for="email">Password:</label><br>
                    <input type="password" maxlength="80" size="25" id="password" name="password" style="border:1px dotted #1a64a3">
                    <input type="submit" name="submit" value="Login" style="background:url(images/submit.gif) no-repeat; width:59px; height:22px; color:#FFFFFF; padding-bottom:3px">
</form>

as you see from above , first we scope to the form ,to see what kind of method and what is the name of fileds

so let's handle it in python

import urllib
login_data=urllib.urlencode({'username':'your username','password':'your password','submit':'Login'}) # replace username and password with filed name 
op = urllib.urlopen('www.exmaple.com/sign-in.php',login_data)
Share:
18,405
Amith KK
Author by

Amith KK

21 Years old and an Information Science Student at NMIT. Freelance Full Stack and Web Developer and Editor of the 2buntu Blog. I write poetry in my free time. If you need to get to me, you can find me on Launchpad GitHub LinkedIn

Updated on June 19, 2022

Comments