Re: [Tutor] Protecting username - password items in python3.3

2013-10-10 Thread Aurélien DESBRIÈRES
Paul Smith writes: > On Thu, Oct 10, 2013 at 5:49 PM, Oscar Benjamin > wrote: > > On 10 October 2013 22:28, Paul Smith > wrote: > > Ok experts I need to protect username and password items in some > Python3.3 > > code I am writing. > > > I'm not an expert on th

Re: [Tutor] Protecting username - password items in python3.3

2013-10-10 Thread Dave Angel
On 10/10/2013 19:30, Paul Smith wrote: > > > I am automating my email login to yahoo... I run my python > script injecting username and password into the login fields... I run my own > filters grab only the information I want... Not a new concept just a new > twist I am working on... I need to

Re: [Tutor] Protecting username - password items in python3.3

2013-10-10 Thread Paul Smith
I am automating my email login to yahoo... I run my python script injecting username and password into the login fields... I run my own filters grab only the information I want... Not a new concept just a new twist I am working on... I need to keep the username and password info in my python code h

Re: [Tutor] Protecting username - password items in python3.3

2013-10-10 Thread Oscar Benjamin
On 10 October 2013 22:28, Paul Smith wrote: > Ok experts I need to protect username and password items in some Python3.3 > code I am writing. I'm not an expert on this subject but... > Let me clarify, I don't care here about protecting the program itself i.e. > using > > else: >main() >

[Tutor] Protecting username - password items in python3.3

2013-10-10 Thread Paul Smith
Ok experts I need to protect username and password items in some Python3.3 code I am writing. Let me clarify, I don't care here about protecting the program itself i.e. using else: main() to work around my username password input, I simply don't want to reveal username and password info.