Metadata-Version: 2.1
Name: PM3
Version: 0.2.9
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
Requires-Dist: argcomplete (==2.0.0)
Requires-Dist: dsnparse (==0.1.15)
Requires-Dist: Flask (>=2.0.0)
Requires-Dist: pendulum (==2.1.2)
Requires-Dist: psutil (>=5.2.0)
Requires-Dist: pydantic (>=1.8.2)
Requires-Dist: requests (>=2.26.0)
Requires-Dist: rich (==10.16.2)
Requires-Dist: tinydb (>=4.5.2)
Requires-Dist: pytailer (==0.1.0)

# PM3
Like pm2 without node.js ;-)

# Install
`pip install pm3`

# Start
`pm3 daemon start`

`pm3 ping`

# Help
`pm3 -h`

# Bash Tools
```commandline
#!/bin/bash

TMPFILE=$(mktemp --suffix=.json)
pm3 dump ${1} -f $TMPFILE
vi $TMPFILE
pm3 load -f $TMPFILE -r
```

## 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/


