python comand line module manager. Inspired in symfony2 console
- Create your modules (.py files) into app/manager/module/ directory
- Add import yourmodule in app/manager/module/__init__.py file.
- Run python app/manager/console.py
- Enjoy !!
- Use app/manager/module/test.py like example for create your own modules.
- Definition class: it's the action in your module.
- main method: it's your start point where you write code.
- A module could has many class in order to have many actions.
- api full-rest for custom modules. Provided by flask micro-framework.