Home  >  Article  >  Backend Development  >  Detailed explanation of files generated by Django framework project under Pycharm development python

Detailed explanation of files generated by Django framework project under Pycharm development python

高洛峰
高洛峰Original
2017-03-08 10:53:111866browse

The directory MyDjangoProject represents the global configuration of the project, which are settings.py, urls.py and wsgi.py,

1. settings.py includes the system's database configuration, application configuration and other configurations ,
2, urls.py represents the configuration of web project Url mapping.
3. The subdirectory student is the app created under the project, including models.py, tests.py, views.py and other files
4. The templates directory is the directory of template files
5 , manage.py is a management tool provided by Django, which can synchronize databases, etc.

The above is the detailed content of Detailed explanation of files generated by Django framework project under Pycharm development python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn