Re: Error in webscraping problem

2016-11-17 Thread Gregory Ewing
stanleydasilv...@gmail.com wrote: I am trying to solve the following problem. Two numbers appear on a website. The user has to enter the gcd (greatest common divisor) and hit the submit button. The catch is that the time limit is far too slow for any human processes -- it must be fully

Re: Error in webscraping problem

2016-11-17 Thread Chris Angelico
On Thu, Nov 17, 2016 at 10:55 python-ideas PM, wrote: > I am trying to solve the following problem. Two numbers appear on a website. > The user has to enter the gcd (greatest common divisor) and hit the > submit button. The catch is that

Error in webscraping problem

2016-11-17 Thread stanleydasilva93
I am trying to solve the following problem. Two numbers appear on a website. The user has to enter the gcd (greatest common divisor) and hit the submit button. The catch is that the time limit is far too slow for any human processes -- it must be fully automated. The numbers change each time

When to use mechanize and Windmill library during WebScraping ?

2009-12-17 Thread Raji Seetharaman
-- Forwarded message -- From: Javier Collado javier.coll...@gmail.com To: Raji Seetharaman sraji...@gmail.com Date: Sat, 12 Dec 2009 12:52:27 +0100 Subject: Re: When to use mechanize and Windmill library during WebScraping ? Hello, If a script that uses mechanize fails

When to use mechanize and Windmill library during WebScraping ?

2009-12-17 Thread Raji Seetharaman
Be sure to look at Scrapy too: http://scrapy.org Thank U Raji. S -- http://mail.python.org/mailman/listinfo/python-list

Re: When to use mechanize and Windmill library during WebScraping ?

2009-12-12 Thread Javier Collado
, then you can move to windmill or some other tool that executes JavaScript code before trying to get the desired data. Best regards, Javier 2009/12/11 Raji Seetharaman sraji...@gmail.com: Hi For 'Webscraping with Python' mechanize or urllib2 and windmill or selenium libraries are used

When to use mechanize and Windmill library during WebScraping ?

2009-12-11 Thread Raji Seetharaman
Hi For 'Webscraping with Python' mechanize or urllib2 and windmill or selenium libraries are used to download the webpages. http://www.packtpub.com/article/web-scraping-with-python The above link makes use of mechanize library to download the web pages. The below link uses windmill library

A try with WebScraping using Python

2009-12-11 Thread Raji Seetharaman
Hi From the tutorial found on the net i came to know about WebScraping using Python. I thought to give a try with it. My wish is to extract the contact mail id's from all the posts published till now in the below link http://fossjobs.wordpress.com/ With Firebug add-on its easy to find

Re: When to use mechanize and Windmill library during WebScraping ?

2009-12-11 Thread tyler
On Fri, 11 Dec 2009, Raji Seetharaman wrote: Hi For 'Webscraping with Python' mechanize or urllib2 and windmill or selenium libraries are used to download the webpages. http://www.packtpub.com/article/web-scraping-with-python Be sure to look at Scrapy too: http://scrapy.org Cheers

Re: WebScraping

2006-11-19 Thread Graham Feeley
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Can someone steer me to scripts / modules etc on webscraping please??? Ultimately I would like someone to write a script for me. However i am still searching for documentation on this subject Thanks Graham -- http://mail.python.org

Re: WebScraping

2006-11-06 Thread Bernard
yup yup BeautifulSoup is the way to go. what would you like to scrape by the way? Graham Feeley wrote: Can someone steer me to scripts / modules etc on webscraping please??? Ultimately I would like someone to write a script for me. However i am still searching for documentation

WebScraping

2006-11-04 Thread Graham Feeley
Can someone steer me to scripts / modules etc on webscraping please??? Ultimately I would like someone to write a script for me. However i am still searching for documentation on this subject Thanks Graham -- http://mail.python.org/mailman/listinfo/python-list

Re: WebScraping

2006-11-04 Thread Steven D'Aprano
On Sun, 05 Nov 2006 08:09:52 +1000, Graham Feeley wrote: Can someone steer me to scripts / modules etc on webscraping please??? The definitive documentation on the built-in Python modules can be found here: http://docs.python.org/modindex.html The ActiveState Python cookbook should be useful

Re: WebScraping

2006-11-04 Thread Michael Torrie
On Sun, 2006-11-05 at 13:40 +1100, Steven D'Aprano wrote: On Sun, 05 Nov 2006 08:09:52 +1000, Graham Feeley wrote: Can someone steer me to scripts / modules etc on webscraping please??? The definitive documentation on the built-in Python modules can be found here: http://docs.python.org

Re: WebScraping

2006-11-04 Thread ina
This might be of help to you. http://phlik.ishpeck.net/index.php?P=a1141076600phlik http://phlik.ishpeck.net/index.php?P=b1134168973phlik Graham Feeley wrote: Can someone steer me to scripts / modules etc on webscraping please??? Ultimately I would like someone to write a script for me