"""WSGI config for testproject project.It exposes the WSGI callable as a module-level variable named ``application``.For more information on this file, seehttps://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/"""importosos.environ.setdefault("DJANGO_SETTINGS_MODULE","testproject.settings")fromdjango.core.wsgiimportget_wsgi_applicationapplication=get_wsgi_application()