Metadata-Version: 2.1
Name: PM3
Version: 0.3.3
Summary: Like pm2 without node.js ;-)
Home-page: https://github.com/ilariofebi/PM3.git 
Author: Ilario Febi
Author-email: ilario@febi.biz
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# PM3
Like pm2 without node.js ;-)

# Install
`pip install pm3`

# Start
`pm3 daemon start`

`pm3 ping`

# Help
`pm3 -h`

# Bash Tools
`pm3 make_script --help`

## Autocompletition
### Bash
```
pm3_exe=$(which pm3)
eval "$(register-python-argcomplete $pm3_exe)"
```

### Fish
```
pm3_exe=$(which pm3)
register-python-argcomplete --shell fish $pm3_exe | source
```
or
```
register-python-argcomplete --shell fish $pm3_exe > ~/.config/fish/completions/pm3.fish
```

### Other shell
visit https://kislyuk.github.io/argcomplete/


