Create django project quickly single command with all necessary file like djnago app, urls.py, templates folder, static folder and add the default code in view.py,models.py,admin.py and create index.html
pip install quick-django
open cmd in your porject folder and run this command
python -m quick-django myproject myproject_app
open terminal in your porject folder and run this command
python3 -m quick-django myproject myproject_app
# setting.py
INSTALLED_APPS = [
....
'myproject_app',
]
open cmd in your porject folder and run this command
python -m quick-django myproject myproject_app --restapi
open terminal in your porject folder and run this command
python3 -m quick-django myproject myproject_app --restapi
# setting.py
INSTALLED_APPS = [
....
'myproject_app',
'rest_framework'
]
Check Our Site : https://mefiz.com
pypi site : https://pypi.org/project/quick-django/
developed by Momin Iqbal