Re: [Tutor] Web scraping using selenium and navigating nested dictionaries / lists.

2019-01-27 Thread mhysnm1964
- From: Tutor On Behalf Of Peter Otten Sent: Sunday, 27 January 2019 10:13 PM To: tutor@python.org Subject: Re: [Tutor] Web scraping using selenium and navigating nested dictionaries / lists. mhysnm1...@gmail.com wrote: > All, > > > > Goal of new project. > > I want to scr

Re: [Tutor] Web scraping using selenium and navigating nested dictionaries / lists.

2019-01-27 Thread mhysnm1964
: Sunday, 27 January 2019 9:46 PM To: mhysnm1...@gmail.com Cc: tutor@python.org Subject: Re: [Tutor] Web scraping using selenium and navigating nested dictionaries / lists. Hi my 2 cents. Have a look at scrapy for scraping.selenium is v good tool to learn but is mainly to automate uat of guis

Re: [Tutor] Web scraping using selenium and navigating nested dictionaries / lists.

2019-01-27 Thread Marco Mistroni
Hi my 2 cents. Have a look at scrapy for scraping.selenium is v good tool to learn but is mainly to automate uat of guis Scrapy will scrape for you and u can automate it via cron. It's same stuff I am doing ATM Hth On Sun, Jan 27, 2019, 8:34 AM All, > > > > Goal of new project. > > I want to

[Tutor] Web scraping using selenium and navigating nested dictionaries / lists.

2019-01-27 Thread mhysnm1964
All, Goal of new project. I want to scrape all my books from Audible.com that I have purchased. Eventually I want to export this as a CSV file or maybe Json. I have not got that far yet. The reasoning behind this is to learn selenium for my work and get the list of books I have purchased.

[Tutor] web scraping using Python and urlopen in Python 3.3

2012-11-07 Thread Seema V Srivastava
Hi, I am new to Python, trying to learn it by carrying out specific tasks. I want to start with trying to scrap the contents of a web page. I have downloaded Python 3.3 and BeautifulSoup 4. If I call upon urlopen in any form, such as below, I get the error as shown below the syntax: Does

Re: [Tutor] web scraping using Python and urlopen in Python 3.3

2012-11-07 Thread Walter Prins
Seema, On 7 November 2012 15:44, Seema V Srivastava seema@gmail.com wrote: Hi, I am new to Python, trying to learn it by carrying out specific tasks. I want to start with trying to scrap the contents of a web page. I have downloaded Python 3.3 and BeautifulSoup 4. If I call upon

Re: [Tutor] web scraping using Python and urlopen in Python 3.3

2012-11-07 Thread Dave Angel
On 11/07/2012 10:44 AM, Seema V Srivastava wrote: Hi, I am new to Python, trying to learn it by carrying out specific tasks. I want to start with trying to scrap the contents of a web page. I have downloaded Python 3.3 and BeautifulSoup 4. If I call upon urlopen in any form, such as below,

Re: [Tutor] web scraping using Python and urlopen in Python 3.3

2012-11-07 Thread Dave Angel
On 11/07/2012 11:25 AM, Walter Prins wrote: Seema, On 7 November 2012 15:44, Seema V Srivastava seema@gmail.com wrote: Hi, I am new to Python, trying to learn it by carrying out specific tasks. I want to start with trying to scrap the contents of a web page. I have downloaded Python

Re: [Tutor] Web scraping

2005-06-08 Thread Kent Johnson
[EMAIL PROTECTED] wrote: I am looking for a web scraping sample.who can help me? Take a look at Beautiful Soup http://www.crummy.com/software/BeautifulSoup/ Kent ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Web scraping

2005-06-08 Thread Liam Clarke
An alternative win32 approach is - Use something like IEC http://www.mayukhbose.com/python/IEC/index.php or PAMIE http://pamie.sourceforge.net/, or you can use the python win32 extensions http://starship.python.net/crew/skippy/win32/Downloads.html and use IE navigate through the DOM... but PAMIE