document.write('<div class="c" style="font-family: monospace;"><br />');
document.write('<span style="color: #ff0000;">&quot;&quot;</span><span style="color: #ff0000;">&quot;<br />');
document.write('Description: prints a list of all links in a webpage<br />');
document.write('URL:http://sebsauvage.net/index.html<br />');
document.write('License: Unspecified/Public Domain<br />');
document.write('&quot;</span><span style="color: #ff0000;">&quot;&quot;</span><br />');
document.write('import re, urllib<br />');
document.write('htmlSource = urllib.<span style="color: #202020;">urlopen</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://sebsauvage.net/index.html&quot;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #202020;">read</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">200000</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('linksList = re.<span style="color: #202020;">findall</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">\'&lt;a href=(.*?)&gt;.*?&lt;/a&gt;\'</span>,htmlSource<span style="color: #66cc66;">&#41;</span><br />');
document.write('<span style="color: #b1b100;">for</span> link in linksList:<br />');
document.write('&nbsp; &nbsp; print link<br />');
document.write('&nbsp;</div>');
document.write('<br />&nbsp;<br /><div style="font-size: 12px">Brought to you by the community at <a href="http://www.bytemycode.com/snippets/snippet/307/1/" target="_blank">byteMyCode</a>.</div>');
