Django is an open source library created in 2005.
#671on PLDB | 19Years Old |
Django ( JANG-goh) is a free and open-source web framework, written in Python, which follows the model-view-template (MVT) architectural pattern. It is maintained by the Django Software Foundation (DSF), an independent organization established as a 501(c)(3) non-profit. Django's primary goal is to ease the creation of complex, database-driven websites. Read more on Wikipedia...
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello World")