Re: Are there in Python some static web site generating tools like webgen, nanoc or webby in Ruby ?

2010-03-09 Thread dorzey
On Mar 9, 8:57 am, KLEIN Stéphane steph...@harobed.org wrote: Hi, Today, I've show this static web site generating tools write in ruby :  *http://webgen.rubyforge.org/index.html  *http://nanoc.stoneship.org/about/  *http://webby.rubyforge.org/tutorial/ I like this tools, I'm wonder if

Re: Problem when fetching page using urllib2.urlopen

2009-08-11 Thread dorzey
On 10 Aug, 18:11, Diez B. Roggisch de...@nospam.web.de wrote: dorzey wrote: geturl - this returns the real URL of the page fetched. This is useful because urlopen (or the opener object used) may have followed a redirect. The URL of the page fetched may not be the same as the URL requested

Re: Problem when fetching page using urllib2.urlopen

2009-08-10 Thread dorzey
It might be worth checking that you are actually getting the page you want; I seem to remember that semicolons need to be encoded, similar to ''. Dorzey On Aug 10, 12:43 pm, jitu nair.jiten...@gmail.com wrote: On Aug 10, 4:39 pm, jitu nair.jiten...@gmail.com wrote: Hi, A html page  contains

Re: Voronoi diagram algorithm (Fortune’s sweepline )

2009-06-11 Thread dorzey
Found this python implementation: http://www.oxfish.com/python/voronoi.py From what I understand, not my area of expertise, it would seem to be correct. -- http://mail.python.org/mailman/listinfo/python-list

Re: Voronoi diagram algorithm (Fortune’s sweepline )

2009-06-11 Thread dorzey
Found this python implementation: http://www.oxfish.com/python/voronoi.py From what I understand, not my area of expertise, it would seem to be correct. -- http://mail.python.org/mailman/listinfo/python-list

Re: Voronoi diagram algorithm (Fortune’s sweepline )

2009-06-11 Thread dorzey
Found this python implementation: http://www.oxfish.com/python/voronoi.py From what I understand, not my area of expertise, it would seem to be correct. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python syntax

2009-04-07 Thread dorzey
http://wiki.python.org/moin/BeginnersGuide is probably a good place to start. I found lots of useful info from the links on this page when I started programming in Python. Dorzey -- http://mail.python.org/mailman/listinfo/python-list

Re: List of paths

2009-04-01 Thread dorzey
You could use the followingm, where the_list is your list. (I'm new to python so there might be a better way): toremove = [] for x in the_list: for y in the_list: if y.startswith(x) and y != x: toremove.append(y) difference = filter(lambda x:x not

Re: How to send an email with GMail in Python from Windows

2009-03-12 Thread dorzey
You might want to try - http://libgmail.sourceforge.net/. This is a Python binding for GMail; I've used it a little and it did the job for me. Dorzey -- http://mail.python.org/mailman/listinfo/python-list