Re: Web framework

2005-03-09 Thread Phil Jackson
"Gianluca Sartori" <[EMAIL PROTECTED]> writes: > What web framework do you suggest to develop with? I tend to use mod_python. Phil -- http://mail.python.org/mailman/listinfo/python-list

Re: Dealing with config files what's the options

2005-02-23 Thread Phil Jackson
Tom Willis <[EMAIL PROTECTED]> writes: > How are the expert pythoneers dealing with config files? You could use the cPickle module if you don't mind your config files being unreadable by humans. There is also the shlex module for more powerful config file needs: http://docs.python.org/lib/module

Re: Can I get message filename from a Maildir mailbox stream?

2005-02-19 Thread Phil Jackson
[EMAIL PROTECTED] writes: > Is there a way to figure out what filename an email object points to > in a qmail style Maildir directory? What do you mean bu "email object"? Surely if you are iterating a Maildir then you should have the filename. Or am I misunderstanding what you mean? Phil -- htt