I am trying to create a django app dynamically with respect to user inputs and would want to do it in a view (after a POST request). Is it possible to run python manage.py startapp myNewDynamicApp through Django's view rather than through CLI?
I could use shell scripts and call them through os.system() but I wanted to check for options in the current space rather than that.