Re: Extract email address from Java script in html source using python

2015-05-25 Thread Denis McMahon
On Sat, 23 May 2015 12:16:06 +0530, savitha devi wrote: > I am developing a web scraper code using HTMLParser. I need to extract > text/email address from java script with in the HTMLCode.I am beginner > level in python coding and totally lost here. Need some help on this. (a) Try a less ambitiou

Re: Extract email address from Java script in html source using python

2015-05-24 Thread Friedrich Rentsch
On 05/23/2015 04:15 PM, savitha devi wrote: What I exactly want is the java script is in the html code. I am trying for a regular expression to find the email address embedded with in the java script. On Sat, May 23, 2015 at 2:31 PM, Chris Angelico wrote: On Sat, May 23, 2015 at 4:46 PM, sa

Re: Extract email address from Java script in html source using python

2015-05-23 Thread VanguardLH
Steve Hayes wrote: > On Sat, 23 May 2015 19:01:55 +1000, Chris Angelico > wrote: > >>On Sat, May 23, 2015 at 4:46 PM, savitha devi wrote: >>> I am developing a web scraper code using HTMLParser. I need to extract >>> text/email address from java script with in the HTMLCode.I am beginner level >

Re: Extract email address from Java script in html source using python

2015-05-23 Thread Steve Hayes
On Sat, 23 May 2015 19:01:55 +1000, Chris Angelico wrote: >On Sat, May 23, 2015 at 4:46 PM, savitha devi wrote: >> I am developing a web scraper code using HTMLParser. I need to extract >> text/email address from java script with in the HTMLCode.I am beginner level >> in python coding and totall

Re: Extract email address from Java script in html source using python

2015-05-23 Thread Peter Pearson
On Sat, 23 May 2015 12:16:06 +0530, savitha devi wrote: > > I am developing a web scraper code using HTMLParser. I need to extract > text/email address from java script with in the HTMLCode. Would be be correct in suspecting that you are assembling a list of email addresses for use in spamming?

Re: Extract email address from Java script in html source using python

2015-05-23 Thread Chris Angelico
On Sun, May 24, 2015 at 12:15 AM, savitha devi wrote: > What I exactly want is the java script is in the html code. I am trying for > a regular expression to find the email address embedded with in the java > script. Now you have two problems. You can't write a regex that can interpret ECMAScrip

Re: Extract email address from Java script in html source using python

2015-05-23 Thread Joel Goldstick
On Sat, May 23, 2015 at 10:15 AM, savitha devi wrote: > What I exactly want is the java script is in the html code. I am trying for > a regular expression to find the email address embedded with in the java > script. > > On Sat, May 23, 2015 at 2:31 PM, Chris Angelico wrote: >> >> On Sat, May 23,

Re: Extract email address from Java script in html source using python

2015-05-23 Thread savitha devi
What I exactly want is the java script is in the html code. I am trying for a regular expression to find the email address embedded with in the java script. On Sat, May 23, 2015 at 2:31 PM, Chris Angelico wrote: > On Sat, May 23, 2015 at 4:46 PM, savitha devi wrote: > > I am developing a web sc

Re: Extract email address from Java script in html source using python

2015-05-23 Thread Chris Angelico
On Sat, May 23, 2015 at 4:46 PM, savitha devi wrote: > I am developing a web scraper code using HTMLParser. I need to extract > text/email address from java script with in the HTMLCode.I am beginner level > in python coding and totally lost here. Need some help on this. The java > script code is a