Saturday, March 25, 2017

Re: Django Produces Python?

Python is a programming language. You can use it to write many types of programs. For example, you can use it to write web applications (which run on a web server, respond to HTTP requests, store their data in a database, render HTML templates for output, etc.). But doing this from scratch would require you to write many modules of Python code yourself, in order to handle all the common and necessary parts of a typical web application.

Django provides those things for you, already written, so that you do not need to write them yourself. Instead, you can write only the things which are truly unique to your specific application, and let already-written modules from Django handle the rest.

--
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 django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ_N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment