On 2018-05-24 09:59:14 +1000, Ben Finney wrote:
> If you are attempting to fool a CAPTCHA with an automated tool, you are
> entering an arms race against those who design the CAPTCHA to *prevent*
> exactly what you're doing.
>
> Any technique someone can describe to fool the CAPTCHA, will most lik
Jai writes:
> please do replay how to handle captcha through machanize module
Step 1: ‘import mechanize’.
Step 2: be an actual human, and interact manually with the CAPTCHA.
If you are attempting to fool a CAPTCHA with an automated tool, you are
entering an arms race against those who design
On Thu, May 24, 2018 at 4:01 AM, MRAB wrote:
> On 2018-05-23 06:22, SACHIN CHAVAN wrote:
>>
>> On Wednesday, December 18, 2013 at 6:26:17 PM UTC+5:30, Jai wrote:
>>>
>>> please do replay how to handle captcha through machanize module
>>
>>
>> I have the same issue, nothing find a solution yet!
>>
On 2018-05-23 06:22, SACHIN CHAVAN wrote:
On Wednesday, December 18, 2013 at 6:26:17 PM UTC+5:30, Jai wrote:
please do replay how to handle captcha through machanize module
I have the same issue, nothing find a solution yet!
The purpose of captcha is to ensure that talking to a human, not a b
On Wednesday, December 18, 2013 at 6:26:17 PM UTC+5:30, Jai wrote:
> please do replay how to handle captcha through machanize module
I have the same issue, nothing find a solution yet!
--
https://mail.python.org/mailman/listinfo/python-list
On Wed, 18 Dec 2013 04:56:17 -0800, Jai wrote:
> please do replay how to handle captcha through machanize module
The purpose of a captcha is to prevent automated scraping of data. Many
of us may choose, or even need, to use captcha. What on earth makes you
think for one minute that we'll help y
On Wed, Dec 18, 2013 at 1:21 PM, Mark Lawrence wrote:
> On 18/12/2013 18:11, Michael Torrie wrote:
>
>> On 12/18/2013 07:51 AM, Chris Angelico wrote:
>>
>>> On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick
>>> wrote:
>>>
So, what you need to do is show a small coding example of the problem
>>
On 18/12/2013 18:11, Michael Torrie wrote:
On 12/18/2013 07:51 AM, Chris Angelico wrote:
On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick
wrote:
So, what you need to do is show a small coding example of the problem you
are having. Give the OS, the python version, and copy the traceback if
ther
On 12/18/2013 07:51 AM, Chris Angelico wrote:
> On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick
> wrote:
>> So, what you need to do is show a small coding example of the problem you
>> are having. Give the OS, the python version, and copy the traceback if
>> there is an error.
>
> And give a goo
On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick
wrote:
> So, what you need to do is show a small coding example of the problem you
> are having. Give the OS, the python version, and copy the traceback if
> there is an error.
And give a good solid reason why you need to automate a CAPTCHA,
becaus
On Wed, Dec 18, 2013 at 8:29 AM, Robert Kern wrote:
> On 2013-12-18 12:56, Jai wrote:
>
>> please do replay how to handle captcha through machanize module
>>
>
> You've asked the same question twice now. You have received the only
> answer that you are going to get here: we won't help you do this
On 2013-12-18 12:56, Jai wrote:
please do replay how to handle captcha through machanize module
You've asked the same question twice now. You have received the only answer that
you are going to get here: we won't help you do this. We may help you learn to
do other stuff with Python, but not t
#/usr/bin/env python
import mechanize, re
import cookielib
import cgi
import urllib2
from random import choice
def get_domain(url):
return urlparse.urlparse(url).netloc
if __name__=="__main__":
br = mechanize.Browser()
cj = cookielib.LWPCookieJar()
br.set_proxies({"http": "217.174
please do replay how to handle captcha through machanize module
--
https://mail.python.org/mailman/listinfo/python-list
14 matches
Mail list logo