Re: Advice Criticism on Python App

2010-03-26 Thread Tim Roberts
Steven D'Aprano wrote: >On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote: > >> Jimbo wrote: >>> >>>class stock: >>>code = "" >>>purchasePrice= 0 >>>purchaseQuantity = 0 >>>price= [] # list of recent prices >>>recentBid= [] # list of

Re: Advice Criticism on Python App

2010-03-25 Thread Bruno Desthuilliers
Steven D'Aprano a écrit : On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote: Jimbo wrote: class stock: code = "" purchasePrice= 0 purchaseQuantity = 0 price= [] # list of recent prices recentBid= [] # list of recent bids for stock

Re: Advice Criticism on Python App

2010-03-24 Thread Steven D'Aprano
On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote: > Jimbo wrote: >> >>class stock: >>code = "" >>purchasePrice= 0 >>purchaseQuantity = 0 >>price= [] # list of recent prices >>recentBid= [] # list of recent bids for stock >>recent

Re: Advice Criticism on Python App

2010-03-24 Thread Tim Roberts
Jimbo wrote: > >class stock: >code = "" >purchasePrice= 0 >purchaseQuantity = 0 >price= [] # list of recent prices >recentBid= [] # list of recent bids for stock >recentOffer = [] # list of recent offers for stock >stockVol

Re: Advice Criticism on Python App

2010-03-23 Thread MRAB
Jimbo wrote: I have made a Python App(really script) that will check a stocks current values from a website & save that data to a SQLite 3 database. I am looking for any suggestions & criticisms on what I should do better or anything at all but mainly in these areas: [QUOTE] - Correct Python Lay

Re: Advice Criticism on Python App

2010-03-23 Thread Chris Rebert
On Tue, Mar 23, 2010 at 5:05 PM, Jimbo wrote: > I have made a Python App(really script) that will check a stocks > current values from a website & save that data to a SQLite 3 database. > > I am looking for any suggestions & criticisms on what I should do > better or anything at all but mainly in

Advice Criticism on Python App

2010-03-23 Thread Jimbo
I have made a Python App(really script) that will check a stocks current values from a website & save that data to a SQLite 3 database. I am looking for any suggestions & criticisms on what I should do better or anything at all but mainly in these areas: [QUOTE] - Correct Python Layout of code - C