0 votes
in Data Handling by
What are the various files that are created when you create a Django Project? Explain briefly.

1 Answer

0 votes
by

When you create a project using the startproject command, the following files will be created:

File Name Description

manage.py

A command-line utility that allows you to interact with your Django project

__init__.py

An empty file that tells Python that the current directory should be considered as a Python package

settings.py

Consists of the settings for the current project

urls.py

Contains the URL’s for the current project

wsgi.py

This is an entry-point for the web servers to serve the project you have created

Related questions

0 votes
asked Apr 3, 2020 in Data Handling by amita rallin
0 votes
asked Apr 3, 2020 in Data Handling by amita rallin
...