Re: What part of Django source code should I read first?

2008-07-03 Thread bruno desthuilliers
On 3 juil, 10:22, Rit Lim <[EMAIL PROTECTED]> wrote: > I'm a recent college graduate, and I haven't written any real program. > I'm trying to learn the more advance topics in Python... Its > impossible to get an entry-level Python job. > > What part of Django source code should I read first?

Re: What part of Django source code should I read first?

2008-07-03 Thread [EMAIL PROTECTED]
Have you dived already? [1] If not, you should! [1]: http://www.diveintopython.org/ On Jul 3, 10:22 am, Rit Lim <[EMAIL PROTECTED]> wrote: > I'm a recent college graduate, and I haven't written any real program. > I'm trying to learn the more advance topics in Python... Its > impossible to get

Re: What part of Django source code should I read first?

2008-07-03 Thread urukay
i agree, the best way to learn Django is to start doing something Kenneth Gonsalves wrote: > > > > On 03-Jul-08, at 1:52 PM, Rit Lim wrote: > >> I'm a recent college graduate, and I haven't written any real program. >> I'm trying to learn the more advance topics in Python... Its >>

Re: What part of Django source code should I read first?

2008-07-03 Thread Kenneth Gonsalves
On 03-Jul-08, at 1:52 PM, Rit Lim wrote: > I'm a recent college graduate, and I haven't written any real program. > I'm trying to learn the more advance topics in Python... Its > impossible to get an entry-level Python job. > > What part of Django source code should I read first? none - first

Re: What part of Django source code should I read first?

2008-07-03 Thread [EMAIL PROTECTED]
In terms of advanced concepts in python, the metaclass usage in the model system is pretty advanced. And the SQL generation stuff in the Query class is probably pretty cool alogirthmwise. On Jul 3, 3:22 am, Rit Lim <[EMAIL PROTECTED]> wrote: > I'm a recent college graduate, and I haven't