Bruno Cesar Rocha
Bruno Cesar Rocha
this is taken from #43 Idea: ```py from pampy import match, _, raise_error return match(x, 1, "foo", 2, "bar", _, raise_error(ValueError, "Message") ) ```
```bash manage init --toml manage.toml created ```
Better support for plugins as `pip install manage-something`
Idea is: ```bash $ manage bookmark fup "git fetch upstream" $ manage bookmark rbum "git rebase upstream/master" $ manage bookmark createadmin "manage adduser --admin --username={0} --email={1}" ``` then the bookmarks...
Sometimes a command can be useful for more than one project or person. manage hub will be a github repository to store yml files and artifacts. ``` console $manage hub...
https://github.com/kxxoling/flask-shellplus/blob/master/flask_shellplus/__init__.py#L157 `manage shell --notebook` Should run and open ipython notebook with context
See flask-konsh ``` def get_flask_imports(): ret = {} for name in [e for e in dir(flask) if not e.startswith('_')]: ret[name] = getattr(flask, name) return ret ``` if in manage.yml `shell:...
Borow ideas from https://github.com/Junnplus/flask-shell/blob/master/flask_shell.py
In this page http://pyyaml.org/wiki/PyYAMLDocumentation There is some explanation on how to add support to LibYAML which is written in C and is faster. So it is needed to change the...
### Description Ansible as a **django_manage** core module, I think it is useful to create a **manage** module for ansible. ``` yaml tasks: - name: show manage debug manage: debug:...