Is there a "hello world" site for django? OR (I installed django, now what)?

I am learning Python and decided to start familiarizing myself with the Python web map (defacto?) - django.

I have successfully installed the latest version of django. I want a simple hello world website that will help me get me started quickly and quickly. I am already familiar with web frameworks (albeit for different languages) - so I just need a simple "hello world" website to help me figure it out.

Ideally, I don't want to mess up my Apache server settings (since I'm still experimenting), so I want to use a lightweight web server that integrates django. I cannot find how to do this on the django website, although undoubtedly someone will post the link and dishonor me ...

So, does anyone know a link that shows how to get a simple django hello world site and work with minimal fuss?

+6
python django
source share
4 answers

The next step? (Free, online and great) Django book .

+10
source share
+3
source share

"Hello World" django is polls and polls "

+2
source share

I think the official official textbook says ...

cd /path/to/your/code python django-admin.py startproject mysite #creates dir 'mysite' python manage.py runserver 
+1
source share

All Articles