This repository has been archived by the owner on May 30, 2021. It is now read-only.
Releases: sotetsuk/paicli
Releases · sotetsuk/paicli
v0.5.4
v0.5.2
v0.5.0
v0.4.0
https://pypi.org/project/paicli/0.4.0/
Updates
- task selection in
ssh
(issue: #8, PR: #27, #28) - skip host key checking in
ssh
(PR: #29) --command
option for ssh (PR: #30)- remove
--jobname
opptions fromssh
andstop
(issue: #22, PR #32) --task-name
/--task-index
option for ssh (issue: #33, PR: #34)- allow muptiple arguments to
submit
andstop
(issue: #16, PR: #35)
New feature usage examples
- ssh into the specified task
paicli ssh $JOBNAME -t $TASKNAME
- check # of python processes
for jobname in `paicli jobs -u sotetsuk | grep $PYTHONJOB | awk '{print $1}'`; do echo $jobname; paicli ssh $jobname -c "ps -aux | grep python | wc -l"; done
- stop multiple jobs;
paicli jobs -u sotetsuk -s RUNNING | grep $JOBNAME | awk '{print $1}' | paicli stop
v0.3.4
Initial release
v0.2.1 fix: remove *.pyc files in make clear