Re: pyhton or json, list or array?

2008-10-02 Thread Bernhard Walle
Hi, * bruce [2008-09-30 13:01]: > > i was told > that it's json, but i have no idea how to convert it/manipulate it.. See http://json.org/ for a list of available JSON parsers for Python. I personally used python-simplejson, and I was happy with it. :-) Regards, Bernhard -- http://mail.python.o

Re: How to add CC and BCC while sending mails using python

2008-09-30 Thread Bernhard Walle
Hi, * cindy jones [2008-09-30 19:57]: > > Can someone tel me how to add cc's and bcc's while sending mails using > python Following (tested) snippet should help: -- 8< -- from smtplib import SMTP from email.mime.image import MIMEImage from email.mime.t