Re: Learning Django for beginners

2023-10-31 Thread Vincenzo Celano
Try this video in YouTube: Python Django 7 Hour Course Ciao! Il mer 25 ott 2023, 19:17 SUNIL PATEL ha scritto: > https://tutorial.djangogirls.org/en/ > > On Wed, Oct 25, 2023 at 10:44 PM Janet Anastacia < > janetanastaci...@gmail.com> wrote: > >> I'm new to Django development, I kindly ask

Re: Learning Django for beginners

2023-10-25 Thread SUNIL PATEL
https://tutorial.djangogirls.org/en/ On Wed, Oct 25, 2023 at 10:44 PM Janet Anastacia wrote: > I'm new to Django development, I kindly ask for the best free websites to > learn Django for beginners in 2023. I have tried to learn from different > websites but I don't seem to grab anything. > >

Re: Learning Django for beginners

2023-10-25 Thread Janet Anastacia
I'm new to Django development, I kindly ask for the best free websites to learn Django for beginners in 2023. I have tried to learn from different websites but I don't seem to grab anything. On Wed, Oct 25, 2023, 3:49 PM Adam Stein wrote: > On Wed, 2023-10-25 at 08:24 -0400, Larry Martell

Re: Learning django

2018-08-09 Thread diloudup
There is also a wonderful tutorial on Djangogirls. But it is not quite the last version of Django. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Learning django

2018-08-07 Thread Derek
https://www.twoscoopspress.com/products/two-scoops-of-django-1-11 (Assuming you don't need the cutting-edge version and, to be honest, I'd think it extremely unlikely that anyone could write a book on a cutting-edge version of *any* software platform ... and I'd be very suspicious of such a

Re: Learning django

2018-08-05 Thread vineeth sagar
Not to be mean or cheeky, but Django documentation is best book imo. Read the docs, if they are unclear in anyway, Start reading code. That's how I learnt about sessions and also you'll get to learn all kinds of cool stuff when you start reading Django code, Like property,cached property, Lazy

Re: Learning Django resources

2016-02-17 Thread Robert Dumitru
Thank you so much! I think I'll go with the official tutorial miercuri, 17 februarie 2016, 18:54:17 UTC+2, Robert Dumitru a scris: > > Hi! Is there any "complete" resource I could use for learning Django, > other than "The Django Book"? *I do not like video tutorials* > -- You received this

Re: Learning Django resources

2016-02-17 Thread Andrew Pinkham
Hi Robert, You may be interested in my response to this question in another thread: https://groups.google.com/d/msg/django-users/-iTZB7K1QI4/TTVXd9Y6EwAJ Hope that helps, Andrew -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Learning Django problems

2015-07-30 Thread Stas soroka
The code for this application is in my GitHub repository, link to witch i provided at the end of my original post. Look carefully ;) среда, 29 июля 2015 г., 14:21:01 UTC+3 пользователь roshan.pannase написал: > > sir i am a new learner can you send me the code of this application > > On Wed,

Re: Learning Django problems

2015-07-30 Thread Stas soroka
As it turned out - the problem was in misconfigured STATICFILES_DIRS variable. When i fixied it - everything became as it should be среда, 29 июля 2015 г., 14:53:04 UTC+3 пользователь Robin Lery написал: > > Do u have static directory? And does it have the required resources? > On 29 Jul 2015

Re: Learning Django problems

2015-07-29 Thread Robin Lery
Do u have static directory? And does it have the required resources? On 29 Jul 2015 16:50, "Roshan Pannase" wrote: > sir i am a new learner can you send me the code of this application > > On Wed, Jul 29, 2015 at 11:33 AM, Stas soroka > wrote: >

Re: Learning Django problems

2015-07-29 Thread Roshan Pannase
sir i am a new learner can you send me the code of this application On Wed, Jul 29, 2015 at 11:33 AM, Stas soroka wrote: > I'm currently reading a book "Learning Django Web Development". Even thoug > I followed the book carefully, it says, that my page should look like

Re: Learning Django problems

2015-07-29 Thread Avraham Serour
Clearly the book example is using CSS and got aren't, maybe they forgot to tell you to add or you aren't loading the static files On Wed, Jul 29, 2015, 12:44 PM Stas soroka wrote: > I'm currently reading a book "Learning Django Web Development". Even thoug > I followed the

Re: Learning Django: DjangoProject Poll application

2012-02-29 Thread Tom Evans
On Wed, Feb 29, 2012 at 6:07 AM, WuWoot wrote: > https://docs.djangoproject.com/en/dev/intro/tutorial01/ > > I'm using the Djangostack (Python 2.7.2+; Django 1.3.1-1) from Bitnami > ran on Ubuntu 11.10 with PostgreSQL 9.1.2 > You're doing the dev/trunk tutorial but have django

Re: Learning Django: DjangoProject Poll application

2012-02-29 Thread Denis Darii
try to use DjangoStack 1.4b1-0 instead of 1.3.1-1 On Wed, Feb 29, 2012 at 7:07 AM, WuWoot wrote: > https://docs.djangoproject.com/en/dev/intro/tutorial01/ > > I'm using the Djangostack (Python 2.7.2+; Django 1.3.1-1) from Bitnami > ran on Ubuntu 11.10 with PostgreSQL 9.1.2 > >

Re: (Re)Learning Django

2011-12-24 Thread Alex Kamedov
Hi, Django 1.2 was a greate update of this exelent framework. The new features introdused in this version was coverd on DjangoAdvent.com. Unfortunely looks like this site is not working any more. You can find the DjangoAdvent articles on github

Re: (Re)Learning Django

2011-12-24 Thread Timothy Makobu
Hi, The book is 2 years old, but it's still the best resource I have found that helps me *understand* Django. It covers 1.x, and the current stable release is 1.3 Is there a newer resource that's just as comprehensive? On Sat, Dec 24, 2011 at 5:44 PM, Alec Taylor

Re: (Re)Learning Django

2011-12-24 Thread Alec Taylor
Maybe go through the tutorials here: https://docs.djangoproject.com/en/dev/intro/tutorial01/ Should be a quick refresher, and you'll remember all :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

(Re)Learning Django

2011-12-24 Thread yati sagade
Hi all, I am familiar with Django (not the advanced stuff, though) and lately, I had to be more into J2EE and completely away from Django. Now I want to get back to Django. I was looking for a nice, fast paced resource that could help me. I had first thought of The Django Book as a fallback, but

Re: Learning Django: Approach / Advice / Resources

2011-05-31 Thread Robin
You guys are spectacular! Thanks! I'll give these replies a few reads and just keep plugging along. I'm going to sort of circle back and see if it wouldn't be a good idea to restart my project with a fresh set of eyes now that I've spent a bit of time with Django. Derek, The test cookie thing

Re: Learning Django: Approach / Advice / Resources

2011-05-31 Thread Derek
On May 30, 9:30 pm, Robin wrote: > A little while ago, I was approached about building a basic web site > for a small store.  The requirements were pretty typical and read like > a menu of web development tutorials.  This was to be a data driven > site that any decent web

Re: Learning Django: Approach / Advice / Resources

2011-05-30 Thread Mike Dewhirst
Robin Don't worry - your mother is probably right. Here are my "rules" ... 1. Dive into Python 3 rocks 2. Read "Practical Django Projects"(*) or if you decide against that get yourself a small-ish concrete target and avoid extraneous functionality like the plague. Then when it is working

Re: learning Django after a break -- site tutorials, examples

2011-05-20 Thread John Griessen
On 05/20/2011 04:38 AM, BobX wrote: The top page question . . . the_simplest_ option (from my experience) is to generate a small stub routine that has index.html as a template and use render_to_response to shoot that out when the user goes to URL http//mysite/ (or whatever you want). Just

Re: learning Django after a break -- site tutorials, examples

2011-05-20 Thread BobX
On May 20, 4:35 am, John Griessen wrote: > I've gone through the Django 1.2 tutorial to the point of creating an admin > site, > then had to switch to other work for months.  What are some good simple > example sites > or tutorials for creating a top page ( index.html )

Re: learning Django after a break -- site tutorials, examples

2011-05-19 Thread Mike Dewhirst
On 20/05/2011 1:35pm, John Griessen wrote: I've gone through the Django 1.2 tutorial to the point of creating an admin site, then had to switch to other work for months. What are some good simple example sites or tutorials for creating a top page ( index.html ) and using templates with css?

Re: learning Django after a break -- site tutorials, examples

2011-05-19 Thread Shawn Milochik
I don't think either of the things you're asking for samples of are related to Django. Do you have a specific Django-related question? If not, try w3schools for their tutorials on Web design. -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Learning Django - Error going through Chapt 4 on Templates at DjangoBook.com - Probably real simple

2009-12-18 Thread bayousoft
Sorry guys. the explanation is in the next paragraph. Please disregard. On Dec 18, 1:50 pm, bayousoft wrote: > I am brand new to Django and I'm trying to get up to speed ASAP.  I > really like it so far.  I'm getting an error trying to create a > template in the shell. > >

Re: Learning Django - Error going through Chapt 4 on Templates at DjangoBook.com - Probably real simple

2009-12-18 Thread bayousoft
Looking in Synaptic I'm kinda wondering if I need to install python- jinja2 ? On Dec 18, 1:50 pm, bayousoft wrote: > I am brand new to Django and I'm trying to get up to speed ASAP.  I > really like it so far.  I'm getting an error trying to create a > template in the shell.

Re: learning django

2009-06-23 Thread virgo
thank u very much.. On Jun 2, 4:52 pm, Hernan Olivera wrote: > 2009/6/2virgo: > > > > > I am very new to this field..got a job as python programmer and was > > asked to use django for web developmentHow do u think I should > > start

Re: learning django

2009-06-02 Thread Hernan Olivera
2009/6/2 virgo : > > I am very new to this field..got a job as python programmer and was > asked to use django for web developmentHow do u think I should > start learning...I dont have much time left before they kick me > out!! You must follow the

Re: Learning Django

2008-10-10 Thread Thomas Guettler
appi schrieb: > Please help me out the overview of what to download in order work the > combination of Django, Python, MySQL, in windows xp and ubuntu(linux), > and the entire setup within eclipse. > > Hi, if you have never used python, it maybe be wise to start to learn it first. If you

Re: learning django and python

2007-11-15 Thread Tim Perrett
This should help with installing on OSX http://blog.timperrett.com/2007/9/22/running-django-on-osx Cheers Tim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: learning django and python

2007-11-14 Thread Kenneth Gonsalves
On 14-Nov-07, at 8:41 PM, sebey wrote: > ok ok thanks love some more resurces ok, one more resource, but this is the last one: Introspection, which is the greatest python resource ever: do this: type 'python' in a console type import os and press enter type dir(os) and press enter type

Re: learning django and python

2007-11-14 Thread Wilson MacGyver
I don't know about the Instant Django on OSX, but Django itself is very easy. I use the python universal binary from http://www.python.org/download then download Django, untar it, and go into the extracted Django directory, run "sudo python setup.py install" That's it, Django is installed and

Re: learning django and python

2007-11-14 Thread sebey
is there anyway to download the documentation on the django site? On Nov 14, 3:11 pm, sebey <[EMAIL PROTECTED]> wrote: > ok ok thanks love some more resurces > > On Nov 14, 2:10 pm, cjl <[EMAIL PROTECTED]> wrote: > > > Buy me a mac and I'd be happy to create an OSX version of Instant > > Django

Re: learning django and python

2007-11-14 Thread Francis
I think the best way now is to try and post specific question when you encounter deadends. I run django on a mac, but if you need help you better start by yourself (and you will learn more). It is easier if you use sqlite and to learn, sqlite is more than enough. So follow the instruction on

Re: learning django and python

2007-11-14 Thread sebey
ok ok thanks love some more resurces On Nov 14, 2:10 pm, cjl <[EMAIL PROTECTED]> wrote: > Buy me a mac and I'd be happy to create an OSX version of Instant > Django for you! > > Just kidding, but there are many websites explaining Django > installation on OSX. You can still follow along with my

Re: learning django and python

2007-11-14 Thread cjl
Buy me a mac and I'd be happy to create an OSX version of Instant Django for you! Just kidding, but there are many websites explaining Django installation on OSX. You can still follow along with my tutorial after you have installed it. Sorry I can't be of more help. I actually tried a

Re: learning django and python

2007-11-14 Thread sebey
yes thats cool but one problem; I''m a mac guy so if anyone can find a mac version of this please post On Nov 13, 7:37 pm, cjl <[EMAIL PROTECTED]> wrote: > Sebey: > > You may want to check out a tutorial I am working on: > > http://www.instantdjango.com > > It provides a 'newbie-friendly'

Re: learning django and python

2007-11-13 Thread lispingng
sebey: a python overview you can go through in an hour or 2 is byteofpython. it's very short, and though u wont get everythng in it, it gives you a feel for what python is about. i lso find reading the django code can be very informative (after u have got some python under your belt) you can get

Re: learning django and python

2007-11-13 Thread Raisins
I love Instantd Django. I made installing and depolying django and python a breeze also I can move from my work to home every easy just by carrying around my thumbdrive. I highly suggest it to anyone on the fence about either Python or django. I haven't found an easier cleaner way to deploy them

Re: learning django and python

2007-11-13 Thread cjl
Sebey: You may want to check out a tutorial I am working on: http://www.instantdjango.com It provides a 'newbie-friendly' introduction to Django, even if you're not familiar with Python yet. I haven't finished the second chapter yet, but I think the first chapter will help get you started, or

Re: learning django and python

2007-11-13 Thread Tim Chase
> well I have a book on php,apache and mysql so are there? any > differences between mysql and postgreSQL for django > (proforanmce features etc.) They're becoming closer in terms of their features. A couple observations in my experience: - MySQL tends to be faster and have some nice "my

Re: learning django and python

2007-11-13 Thread sebey
well I have a book on php,apache and mysql so are there? any differences between mysql and postgreSQL for django (proforanmce features etc.) On Nov 13, 1:36 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 13-Nov-07, at 6:55 PM, sebey wrote: > > > has anyone tryed this I guess you have ken

Re: learning django and python

2007-11-13 Thread Kenneth Gonsalves
On 13-Nov-07, at 6:55 PM, sebey wrote: > has anyone tryed this I guess you have ken but is a good and quick way > to learn django and python and sql (mysql is it or again silly?) this > is really intersting I loved to learn more for me - while learning django, I always had Python in a

Re: learning django and python

2007-11-13 Thread Kenneth Gonsalves
On 13-Nov-07, at 6:04 PM, sebey wrote: > is that a joke or for real? sorry don't get it for real - you cant learn python or sql through django - so make a systematic plan of learning the two *while* you are learning django. Meaning that, dont first go and learn python and *then* learn

Re: learning django and python

2007-11-13 Thread sebey
is that a joke or for real? sorry don't get it On Nov 13, 1:47 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 12-Nov-07, at 9:02 PM, sebey wrote: > > > good thanks for can I learn python with django > > while learningdjango(): > python.learn() > sql.learn() > > -- > >

Re: learning django and python

2007-11-13 Thread sebey
is that a joke or for real? sorry don't get it On Nov 13, 1:47 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 12-Nov-07, at 9:02 PM, sebey wrote: > > > good thanks for can I learn python with django > > while learningdjango(): > python.learn() > sql.learn() > > -- > >

Re: learning django and python

2007-11-12 Thread Kenneth Gonsalves
On 12-Nov-07, at 9:02 PM, sebey wrote: > good thanks for can I learn python with django while learningdjango(): python.learn() sql.learn() -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~~~---~--~~ You

Re: learning django and python

2007-11-12 Thread Kenneth Gonsalves
On 12-Nov-07, at 8:03 PM, sebey wrote: > hey I am new to python and all that and of course django so I know > there is a django book up on the site but I was wondering if it would > be a good idea to use that resource ( cause I do not have a lot of > time on my hands) for learning pthyon and

Re: learning django and python

2007-11-12 Thread sebey
this is all great love anymore resource you guys have and for anyone else who may stumbleupon this thanks love some more please On Nov 12, 5:55 pm, kevinski <[EMAIL PROTECTED]> wrote: > This is also a decent resource for learning the basics of Python > quickly. > >

Re: learning django and python

2007-11-12 Thread kevinski
This is also a decent resource for learning the basics of Python quickly. http://www.ibiblio.org/obp/thinkCSpy/index.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: learning django and python

2007-11-12 Thread Doug B
1st: http://www.b-list.org/weblog/2006/jun/13/how-django-processes-request/ 2nd: Tutorial 3rd: The docs, just sit down and read them. If you expect to use them as a reference manual without reading them first it will probably cause you trouble... they just aren't written that way. After doing

Re: learning django and python

2007-11-12 Thread Michael
I was in the same place a couple months back, so here's some resources I found helpful: Django specific: djangobook.com - you mentioned, parts were extremely useful, others too incomplete to be of much use. The tutorial in the first few chapters I found very useful.

Re: learning django and python

2007-11-12 Thread Laszlo Marai
On Mon, 12 Nov 2007 07:35:03 -0800 sebey <[EMAIL PROTECTED]> wrote: Hi, > plus I need to learn it fast as well so I had a look but it looks like > a lot to go tought thanks thought diveintopython is actually quite a fast way to learn python. The ToC looks quite long but the actual pages are

Re: learning django and python

2007-11-12 Thread sebey
plus I need to learn it fast as well so I had a look but it looks like a lot to go tought thanks thought On Nov 12, 2:42 pm, "Jon Atkinson" <[EMAIL PROTECTED]> wrote: > Dive into Python is a good resource for learning Python: > > http://www.diveintopython.org/ > > --Jon > > On 11/12/07, sebey

Re: learning django and python

2007-11-12 Thread sebey
good thanks for can I learn python with django? or is that sound silly On Nov 12, 2:42 pm, "Jon Atkinson" <[EMAIL PROTECTED]> wrote: > Dive into Python is a good resource for learning Python: > > http://www.diveintopython.org/ > > --Jon > > On 11/12/07, sebey <[EMAIL PROTECTED]> wrote: > > > > >

Re: learning django and python

2007-11-12 Thread Jon Atkinson
Dive into Python is a good resource for learning Python: http://www.diveintopython.org/ --Jon On 11/12/07, sebey <[EMAIL PROTECTED]> wrote: > > hey I am new to python and all that and of course django so I know > there is a django book up on the site but I was wondering if it would > be a good

Re: learning django, strange problem with admin

2007-08-24 Thread Graham Dumpleton
On Aug 24, 6:33 pm, "Timothy Kanters" <[EMAIL PROTECTED]> wrote: > > Some may suggest that you set maximum number of requests per Apache > > child to 1. This however is a rather brute force approach and if doing > > that you may as well use CGI. > > Aye, but for my development server that is

Re: learning django, strange problem with admin

2007-08-24 Thread Timothy Kanters
> Some may suggest that you set maximum number of requests per Apache > child to 1. This however is a rather brute force approach and if doing > that you may as well use CGI. Aye, but for my development server that is quite ok, easier to do than restarting apache after every change :) Thanks

Re: learning django, strange problem with admin

2007-08-23 Thread eXt
That clarifies much. Thank you. On 23 Sie, 13:52, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Aug 23, 9:17 pm, eXt <[EMAIL PROTECTED]> wrote: > > > Yes very familiar. I also experienced this kind of strange behaviour > > from my app behind apache. Two things to do: > > 1. restart apache

Re: learning django, strange problem with admin

2007-08-23 Thread Graham Dumpleton
On Aug 23, 9:17 pm, eXt <[EMAIL PROTECTED]> wrote: > Yes very familiar. I also experienced this kind of strange behaviour > from my app behind apache. Two things to do: > 1. restart apache after changes to your files (there is a directive to > autoreload described somewhere in the docs - useful

Re: learning django, strange problem with admin

2007-08-23 Thread eXt
Yes very familiar. I also experienced this kind of strange behaviour from my app behind apache. Two things to do: 1. restart apache after changes to your files (there is a directive to autoreload described somewhere in the docs - useful for development) 2. if it doesn't help you then manually

Re: learning django testing

2007-07-26 Thread james_027
Thanks bob cheers, james On Jul 25, 11:48 pm, "Bob T." <[EMAIL PROTECTED]> wrote: > > I don't have any idea what is the > > testing all about. > > James, you might want to take a look at Dive Into Python [1] as a > starting place. It has a couple good chapters on testing and test > driven

Re: learning django testing

2007-07-25 Thread Bob T.
> I don't have any idea what is the > testing all about. James, you might want to take a look at Dive Into Python [1] as a starting place. It has a couple good chapters on testing and test driven development. Bob [1] http://diveintopython.org/unit_testing/index.html

Re: Learning Django

2006-08-15 Thread Adrian Holovaty
On 8/15/06, Reinhard Knobelspies <[EMAIL PROTECTED]> wrote: > Nearing the 1.0 release-date of Django and remembering the announcement > about Adrians and Jacobs book that is in the works i´m pretty > confident that we will see a huge boost of highly qualified > documentation on top of the

Re: Learning Django

2006-08-15 Thread Reinhard Knobelspies
Nearing the 1.0 release-date of Django and remembering the announcement about Adrians and Jacobs book that is in the works i´m pretty confident that we will see a huge boost of highly qualified documentation on top of the allready very helpful docs. As the plans include to open-source the digital

Re: Learning Django

2006-08-15 Thread briantcva
Is there any thought to expanding this help/knowledge in a more wiki-based format? While the comments section at the bottom of each documentation page is a start, it can quickly devolve into a question-reply format where you have to trace things back up to the original question. And while

Re: Re: Learning Django

2006-08-15 Thread Adrian Holovaty
On 8/15/06, Jon Atkinson <[EMAIL PROTECTED]> wrote: > Does Google expose an API for searching Google Groups? It could be a > useful thing to have on the Django site... It doesn't expose an API for Google Groups in particular, but we could use its normal search-engine API and limit the results to

Re: Re: Learning Django

2006-08-15 Thread Jon Atkinson
On 15/08/06, Karen Tracey <[EMAIL PROTECTED]> wrote: > > At 01:08 PM 8/15/2006, you wrote: > >That, unfortunately, raises the issue of how to find that wisdom when > >you actually need it. > > FWIW, I've had good luck searching the mailing list archive on the > Google groups site. > Does Google

Re: Learning Django

2006-08-15 Thread Karen Tracey
At 01:08 PM 8/15/2006, you wrote: >That, unfortunately, raises the issue of how to find that wisdom when >you actually need it. FWIW, I've had good luck searching the mailing list archive on the Google groups site. Karen --~--~-~--~~~---~--~~ You received this

Re: Learning Django

2006-08-15 Thread fyl
Adrian Holovaty wrote: ... If you have any > questions, I'd encourage you to ask them; people on this mailing list > are super-nice and helpful! > > Adrian > > -- > Adrian Holovaty > holovaty.com | djangoproject.com I have to agree completely here. I see so much knowledge being distributed. I

Re: Learning Django

2006-08-15 Thread Reinhard Knobelspies
> What I am suggesting is that Django growth would benefit from a > tutorial that starts with "something that works" that you can play with > to understand the basics and can expand as you gain confidence and > knowledge. If you are looking for "something that works", you might want to have a

Re: Learning Django

2006-08-15 Thread Adrian Holovaty
On 8/15/06, fyl <[EMAIL PROTECTED]> wrote: > What I am suggesting is that Django growth would benefit from a > tutorial that starts with "something that works" that you can play with > to understand the basics and can expand as you gain confidence and > knowledge. I am clearly not ready to write