Django
Last updated
Last updated
MVC web framework from 2003
comes with ORM, form system, template, caching, middleware support, unit testing, and internationalization
mysite/ - same as django-admin but uses settings.py mysite/ _init_.py - routes asgi.py - entrypoint for asgi web servers wsgi.py - entrypoint for wsgi web servers
polls/ _init_.py admin.py apps.py migrations/ _init_.py models.py tests.py urls.py views.py