simple question about Dictionary type containing List objects

2009-07-13 Thread gganesh
Hi group, I have a dict object like emails={'mycontacts': [ 'x...@gmail.com, 'y...@gmail.com', 'z...@gmail.com'], 'myname':['gganesh']} I need to get the lenght of the list mycontacts ,like mycontacts_numbers=3 help me to solve Thanks -- http://mail.python.org/mailman/listinfo/python-list

what will be best framework to select to develop Multi-Level Marketing (network marketing) application in python?

2009-07-01 Thread gganesh
hi group, I have to build a software for Multi-Level Marketing (network marketing),There are several Frameworks available in python ,i could like to know the best Framework suitable to develop an application on Multi-Level Marketing . Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: AssertionError - help me to solve this in a programme with Queue

2009-05-12 Thread gganesh
On May 12, 6:34 pm, MRAB wrote: > gganesh wrote: > > Hi all, > > I'm just learning python ,the code below is found in one of the > > sites ,it produces an error like > > Traceback (most recent call last): > >   File "queue.py", line 34, in > &

AssertionError - help me to solve this in a programme with Queue

2009-05-12 Thread gganesh
Hi all, I'm just learning python ,the code below is found in one of the sites ,it produces an error like Traceback (most recent call last): File "queue.py", line 34, in main() File "queue.py", line 28, in main t=MyThread(q) File "/usr/lib/python2.5/threading.py", line 398, in __init_

About twisted.mail.smtp.SMTPDeliveryError

2009-05-08 Thread gganesh
hi group, I wrote a code as below from twisted.mail.smtp import sendmail from twisted.internet import reactor from twisted.python.log import err import time MAILSERVER = 'mail.xxx.com' listTo = ['gxxx...@gmail.com', 'gjangox...@gmail.com', 'lxx...@yahoo.co.in', 'gk...@gmail.com'] FROM = 'gan

Re: problem in using sendmail in multi thread

2009-05-06 Thread gganesh
On May 6, 7:10 pm, Jean-Paul Calderone wrote: > On Tue, 5 May 2009 22:17:35 -0700 (PDT), gganesh wrote: > >On May 5, 9:25 pm, Piet van Oostrum wrote: > >> >>>>> gganesh (g) wrote: > >> >g> hi, > >> >g> I'm a beginner in usin

Re: problem in using sendmail in multi thread

2009-05-05 Thread gganesh
On May 5, 9:25 pm, Piet van Oostrum wrote: > >>>>> gganesh (g) wrote: > >g> hi, > >g> I'm a beginner in using Python script > >g> I'm trying to send mails using multi-thread > >g> I wrote > >g> FROM = 'ganeshx...

Is there is any way to send messages to chunk of emails ID's concurrently using smptlib

2009-05-05 Thread gganesh
Hi friends, I suppose sendmail() can send mails one by one ,how to send mails concurrently , It would be very grateful,if someone could point out a solution. Thanks Ganesh -- http://mail.python.org/mailman/listinfo/python-list

problem in using sendmail in multi thread

2009-05-05 Thread gganesh
hi, I'm a beginner in using Python script I'm trying to send mails using multi-thread I wrote FROM = 'ganeshx...@.com' # for more mail add';' the another mail id listTo = ['g@gmail.com', 'xxjango...@gmail.com', 'xx...@yahoo.co.in'] SUBJECT = 'This is the subject' MSGBODY = 'This the body