when i access www.sampleweb.com/reg/ i has an input values like .
<input id="input-id" class="input-class" name="myinput" type="text" value="hello world">
how can i get the hello world value of www.sampleweb.com/reg/'s input using python?
i think in accessing the www.sampleweb.com/reg/ is like this :
url = 'http://www.sampleweb.com/reg/'
urlopen(url)
is this correct in accessing the url?
can anyone can help me about my case?
thanks in advance ...