Re: How can i use Spread Sheet as Data Store

2009-05-20 Thread Kalyan Chakravarthy
Thanks Alex Then tell me how can I solve this issue. Thanks in advance Regards Kalyan On Wed, May 20, 2009 at 8:11 AM, alex23 wrote: > On May 19, 11:57 pm, "D'Arcy J.M. Cain" wrote: > > I hear you but I'm not so sure that that is an absolute. There are > > many application

Re: How can i use Spread Sheet as Data Store

2009-05-19 Thread alex23
On May 19, 11:57 pm, "D'Arcy J.M. Cain" wrote: > I hear you but I'm not so sure that that is an absolute.  There are > many applications that allow you to have your password emailed to you. > For something with low risk that's perfectly acceptable. Having -any- password stored in plaintext is una

Re: How can i use Spread Sheet as Data Store

2009-05-19 Thread D'Arcy J.M. Cain
On Tue, 19 May 2009 09:50:18 -0400 Terry Reedy wrote: > D'Arcy J.M. Cain wrote: > > I can't answer your question about reading Google spreadsheets but I do > > wonder why you are trying to solve a database problem with a > > Hardly even a database problem. OP only needs a dict mapping username

Re: How can i use Spread Sheet as Data Store

2009-05-19 Thread Terry Reedy
D'Arcy J.M. Cain wrote: On Tue, 19 May 2009 10:51:57 +0530 Kalyan Chakravarthy wrote: Actually my requirement is in an web application when user enters User name and Password, back end i needs to check, is it they entered correct user name with password ( here i want to read the Spread Sheet Da

Re: How can i use Spread Sheet as Data Store

2009-05-19 Thread D'Arcy J.M. Cain
On Tue, 19 May 2009 10:51:57 +0530 Kalyan Chakravarthy wrote: > Actually my requirement is > in an web application when user enters User name and Password, > back end i needs to check, is it they entered correct user name with > password ( here i want to read the Spread Sheet Data in Python code

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread Kalyan Chakravarthy
Hi John I am using Google Spread Sheet with 20 rows of data , OS is Windows XP Python2.6 Actually my requirement is in an web application when user enters User name and Password, back end i needs to check, is it they entered correct user name with password (

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread Jeff McNeil
On May 18, 11:45 pm, Wincent wrote: > If you want to write to a csv file, the other option is savetxt in > NumPy module. > > Best > > On May 19, 7:29 am, John Machin wrote: > > > On May 19, 5:12 am, Terry Reedy wrote: > > > > Kalyan Chakravarthy wrote: > > > > Hi All, > > > >              I have

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread Wincent
If you want to write to a csv file, the other option is savetxt in NumPy module. Best On May 19, 7:29 am, John Machin wrote: > On May 19, 5:12 am, Terry Reedy wrote: > > > Kalyan Chakravarthy wrote: > > > Hi All, > > >              I have data in Spread Sheet ( First Name and Last Name), > > >

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread John Machin
On May 19, 5:12 am, Terry Reedy wrote: > Kalyan Chakravarthy wrote: > > Hi All, > >              I have data in Spread Sheet ( First Name and Last Name), > > how can i see  this data  in Python code ( how can i use Spread Sheet as > > Data Store ) . > > I you have a choice, a plain text file is MU

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread Terry Reedy
Kalyan Chakravarthy wrote: Hi All, I have data in Spread Sheet ( First Name and Last Name), how can i see this data in Python code ( how can i use Spread Sheet as Data Store ) . I you have a choice, a plain text file is MUCH easier. Or, you can output a plain text data.csv (co

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread John Machin
Kalyan Chakravarthy hyit.com> writes: > > Hi All, I have data in Spread Sheet ( First Name and Last Name), how can i see  this data  in Python code ( how can i use Spread Sheet as Data Store ) . -- RegardsKalyan Hi Kalyan, A few questions ... the answers might help us help you bett

Re: How can i use Spread Sheet as Data Store

2009-05-18 Thread Krishnakant
Hi Kaliyan, It is very simple. There is a library called odfpy which you can use to read and write odf documents. I highly recommend using open formats so that the API is clear and you can ask help if needed. The odfpy library has modules to create spreadsheets and read or write by row or sell etc