[Answer]-Django project doesnt have wsgi.py and yet running

1👍

Because wsgi.py is an optional file, for use when you deploy Django projects as a WSGI application.

But you can totally run any Django project just using manage.py’s runserver command (though it’s not great).

Leave a comment