Re: how to handle captcha through machanize module or any module

2018-05-29 Thread Peter J. Holzer
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

Re: how to handle captcha through machanize module or any module

2018-05-23 Thread Ben Finney
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

Re: how to handle captcha through machanize module or any module

2018-05-23 Thread Chris Angelico
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,

Re: how to handle captcha through machanize module or any module

2018-05-23 Thread MRAB
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

Re: how to handle captcha through machanize module or any module

2018-05-22 Thread SACHIN CHAVAN
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

how to handle captcha through machanize module or any module

2013-12-18 Thread Jai
please do replay how to handle captcha through machanize module -- https://mail.python.org/mailman/listinfo/python-list

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Jai
#/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:

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Robert Kern
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

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Joel Goldstick
On Wed, Dec 18, 2013 at 8:29 AM, Robert Kern robert.k...@gmail.com 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

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Chris Angelico
On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick joel.goldst...@gmail.com 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

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Michael Torrie
On 12/18/2013 07:51 AM, Chris Angelico wrote: On Thu, Dec 19, 2013 at 1:48 AM, Joel Goldstick joel.goldst...@gmail.com 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.

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Mark Lawrence
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 joel.goldst...@gmail.com 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

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Joel Goldstick
On Wed, Dec 18, 2013 at 1:21 PM, Mark Lawrence breamore...@yahoo.co.ukwrote: 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 joel.goldst...@gmail.com wrote: So, what you need to do is show a small

Re: how to handle captcha through machanize module or any module

2013-12-18 Thread Denis McMahon
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