How we can send mail with attachment in Python?

2015-07-19 Thread Kevin Peterson
Hi, How we can send mail with attachment in Python? Is it any prerequisite for it? Thanks, Kevin Peterson -- https://mail.python.org/mailman/listinfo/python-list

stdout of child process as an input of another thread in Python?

2015-05-29 Thread Kevin Peterson
;],stdout=PIPE) while True: Line = Proc.stdout.readline() print Line Here, Filename.py(Child process) is continuously printing "Hello World!!" in place of reading stdout of child process. Thanks, Kevin Peterson -- https://mail.python.org/mailman/listinfo/python-list

Re: Airplane mode control using Python?

2013-12-23 Thread Kevin Peterson
nformation. >>> import android >>> droid = android.Android() Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'Android' >>> Thanks, On Mon, Dec 23, 2013 at 9:29 AM, Ned Batchelder wrote:

Deamonify my python script on Android

2013-12-23 Thread Kevin Peterson
Hi, I want to daemonify my python script on Android device. That is, it should be automatically invoked on boot up. Appreciate your help. Thanks, Kevin Peterson -- https://mail.python.org/mailman/listinfo/python-list

Daemonify my python script on Android

2013-12-22 Thread Kevin Peterson
Hi, I want to daemonify my python script on Android device. That is, it should be automatically invoked on boot up. Appreciate your help. Thanks KP -- https://mail.python.org/mailman/listinfo/python-list

Re: Airplane mode control using Python?

2013-12-22 Thread Kevin Peterson
I will take care. Thanks, On Mon, Dec 23, 2013 at 10:22 AM, wrote: > On 12/22/2013 08:33 PM, Chris Angelico wrote: > > On Mon, Dec 23, 2013 at 2:20 PM, Kevin Peterson > wrote: > >> I am trying to control Aeroplane mode on Android using Python code. > >> I am

Airplane mode control using Python?

2013-12-22 Thread Kevin Peterson
() droid.makeToast('exiting') I get the error 'no such attribute Android()'. One important thing is, I want to be able to do this without the need to reboot the Android device and any other working solution is also fine long as it is invokeable through Python. Thanks, Kevin