How Do I get my Python script to attach multiple files and send as a single email

2013-08-08 Thread wachkama
I have a dilemma I cant figure out how to send multiple files as an attachment to my email using this script. I can only send a single file attachment . Help!!! Here is my script. All filename's are txt files. fo = with open(filename,'rb') fo1 = open(filename2,'rb') fo2= open(filename3, 'rb')

Re: script to Login a website

2013-08-01 Thread wachkama
On Wednesday, July 31, 2013 11:33:25 AM UTC-4, wach...@gmail.com wrote: > I have created a script to log in a website. It gets its username and > password from two files, then log's in with this credentials. My code is not > showing me what username it is using to login from the file. And I am no

Re: script to Login a website

2013-08-01 Thread wachkama
On Wednesday, July 31, 2013 11:33:25 AM UTC-4, wach...@gmail.com wrote: > I have created a script to log in a website. It gets its username and > password from two files, then log's in with this credentials. My code is not > showing me what username it is using to login from the file. And I am no

Re: script to Login a website

2013-07-31 Thread wachkama
On Wednesday, July 31, 2013 12:21:59 PM UTC-4, John Gordon wrote: > In wachk...@gmail.com > writes: > > > > > I have created a script to log in a website. It gets its username and > > > password from two files, then log's in with this credentials. My code is > > > not showing me what usernam

script to Login a website

2013-07-31 Thread wachkama
I have created a script to log in a website. It gets its username and password from two files, then log's in with this credentials. My code is not showing me what username it is using to login from the file. And I am not sure if it is even opening up the url and prompting for login. I am stuck