User NepUS - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T00:16:04Zhttp://stackoverflow.com/feeds/user/132919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1100029/how-to-fix-or-make-an-exception-for-this-error1how to fix or make an exception for this errorNepUS2009-07-08T19:15:58Z2009-12-03T22:34:07Z
<p>I'm creating a code that gets image's urls from any web pages, the code are in python and use BeutifulSoup and httplib2.
When I run the code, I get the next error:</p>
<pre><code>Look me http://movies.nytimes.com (this line is printed by the code)
Traceback (most recent call last):
File "main.py", line 103, in <module>
visit(initialList,profundidad)
File "main.py", line 98, in visit
visit(dodo[indice], bottom -1)
File "main.py", line 94, in visit
getImages(w)
File "main.py", line 34, in getImages
iSoupList = BeautifulSoup(response, parseOnlyThese=SoupStrainer('img'))
File "/usr/local/lib/python2.6/dist-packages/BeautifulSoup.py", line 1499, in __init__
BeautifulStoneSoup.__init__(self, *args, **kwargs)
File "/usr/local/lib/python2.6/dist-packages/BeautifulSoup.py", line 1230, in __init__
self._feed(isHTML=isHTML)
File "/usr/local/lib/python2.6/dist-packages/BeautifulSoup.py", line 1263, in _feed
self.builder.feed(markup)
File "/usr/lib/python2.6/HTMLParser.py", line 108, in feed
self.goahead(0)
File "/usr/lib/python2.6/HTMLParser.py", line 148, in goahead
k = self.parse_starttag(i)
File "/usr/lib/python2.6/HTMLParser.py", line 226, in parse_starttag
endpos = self.check_for_whole_start_tag(i)
File "/usr/lib/python2.6/HTMLParser.py", line 301, in check_for_whole_start_tag
self.error("malformed start tag")
File "/usr/lib/python2.6/HTMLParser.py", line 115, in error
raise HTMLParseError(message, self.getpos())
HTMLParser.HTMLParseError: malformed start tag, at line 942, column 118
</code></pre>
<p>Someone can explain me how to fix or make an exeption for the error</p>
http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup0retrieve links from web page using python and beautiful soupNepUS2009-07-03T18:29:56Z2009-08-03T15:34:01Z
<p>How can I retrieve the links of a webpage and copy the url adress of the links using Python?</p>
http://stackoverflow.com/questions/1107021/how-to-insert-a-draw-box-in-my-html-code1How to insert a draw box in my html code?NepUS2009-07-09T23:51:11Z2009-07-10T00:15:37Z
<p>I'm creating a web page, and I can't (with html code) add a draw box*?</p>
<p>*It's a box, like a Microsoft Paint, only with one brush, where the user make a draw by a click draged.</p>
http://stackoverflow.com/questions/1080411/retrieve-links-from-web-page-using-python-and-beautiful-soup/1080472#1080472Comment by NepUS on retrieve links from web page using python and beautiful soupNepUS2009-07-03T21:17:57Z2009-07-03T21:17:57Zthanks, this solve my problem, with this I finish my proyect thanks a lot