manage.py code in django code example
Example 1: django create app
python manage.py startapp # name of the app
Example 2: django create app command
python manage.py startapp app_name
Example 3: manage.py
It is your tool for executing many Django-specific tasks such as
starting a new app within a project, running the development server,
running your tests etc.
Example: python manage.py runserver