Re: A Question on URLLIB

2011-03-15 Thread David Marek
You are doing fine so far :-) However, urllib is quite low level module. Do you know mechanize http://wwwsearch.sourceforge.net/mechanize/ ? I have used it in my crawler. If you want to crawl a specific site for known data then Scrapy http://scrapy.org/ could be useful too. David Marek dav

Re: PEP for module naming conventions

2011-03-11 Thread David Marek
Hi, Have you read PEP 8? http://python.org/dev/peps/pep-0008/ I don't think it's possible to be sure that the name of your module won't conflict with system module name (if you'll follow conventions). You can find the list of all PEPs at http://python.org/dev/peps/