General-purpose, high-level programming language supporting multiple programming paradigms.
DevAssistant provides several assistants for Python. If you run da
command from command line, projects are created in current working directory.
If you run da-gui
, you can specify directories where the projects will be created.
In order to create a basic template library, run:
$ da crt python lib -n <library_name>
In order to create a web template application with Django, run:
$ da crt python django -n <app_name>
In order to create a web template application with Flask, run:
$ da crt python flask -n <app_name>
In order to create a basic GTK+3 application based on Python GTK, run:
$ da crt python gtk3 -n <app_name>