pypyr/pypyr
Fork: 26 Star: 589 (更新于 2024-10-24 22:54:54)
license: Apache-2.0
Language: Python .
pypyr task-runner cli & api for automation pipelines. Automate anything by combining commands, different scripts in different languages & applications into one pipeline process.
最后发布版本: v5.9.1 ( 2023-09-22 11:13:53)
pypyr automation task runner
All documentation is here: https://pypyr.io/
pypyr
pronounce how you like, but I generally say piper as in "piping down the valleys wild"
pypyr is a free & open-source task-runner that lets you define and run sequential steps in a pipeline.
Like a turbo-charged shell script, but less finicky. Less annoying than a makefile.
pypyr runs pipelines defined in yaml. A pipeline is pretty much anything you want to automate with a sequence of steps.
Automate anything by combining commands, different scripts in different languages & applications into one pipeline process.
You can run loops, conditionally execute steps based on conditions you specify, wait for status changes before continuing, break on failure conditions or swallow errors. Pretty useful for orchestrating continuous integration, continuous deployment & devops operations.
pypyr gives you simple variable substitution & configuration file management so you can read, merge and write configuration files to and from yaml, json or just text.
Installation
$ pip install --upgrade pypyr
Tested against Python >=3.7
pypyr runs on Linux, MacOS & Windows. pypyr also runs fine on CI servers & containers - pretty much anywhere with a Python run-time will work.
Usage
This is a pipeline
Example pipeline that runs a sequence of steps and takes an optional custom cli input argument:
# ./show-me-what-you-got.yaml
context_parser: pypyr.parser.keyvaluepairs
steps:
- name: pypyr.steps.echo
in:
echoMe: o hai!
- name: pypyr.steps.cmd
in:
cmd: echo any cmd you like
- name: pypyr.steps.shell
in:
cmd: echo ninja shell power | grep '^ninja.*r$'
- name: pypyr.steps.py
in:
py: print('any python you like')
- name: pypyr.steps.cmd
while:
max: 3
in:
cmd: echo gimme a {whileCounter}
- name: pypyr.steps.cmd
foreach: [once, twice, thrice]
in:
cmd: echo say {i}
- name: pypyr.steps.default
in:
defaults:
sayBye: False
- name: pypyr.steps.echo
run: '{sayBye}'
in:
echoMe: k bye!
This is how you run a pipeline
This is what happens when you run this pipeline:
$ pypyr show-me-what-you-got
o hai!
any cmd you like
ninja shell power
any python you like
gimme a 1
gimme a 2
gimme a 3
say once
say twice
say thrice
$ pypyr show-me-what-you-got sayBye=true
o hai!
any cmd you like
ninja shell power
any python you like
gimme a 1
gimme a 2
gimme a 3
say once
say twice
say thrice
k bye!
Help!
Don't Panic! Check the pypyr technical docs to begin. For help, community & talk, check pypyr twitter, or join the chat at the pypyr community discussion forum!
Contribute
Developers
For information on how to help with pypyr, run tests and coverage, please do check out the contribution guide.
Bugs
Well, you know. No one's perfect. Feel free to create an issue.
License
pypyr is free & open-source software distributed under the Apache 2.0 License.
Please see LICENSE file in the root of the repo..
Copyright 2017 the pypyr contributors.
最近版本更新:(数据更新于 2024-10-14 06:51:14)
2023-09-22 11:13:53 v5.9.1
2023-09-21 16:21:12 v5.9.0
2023-03-13 09:40:33 v5.8.0
2022-10-25 21:36:29 v5.7.1
2022-10-20 23:00:13 v5.7.0
2022-10-06 01:43:44 v5.6.0
2022-05-26 21:18:48 v5.5.0
2022-04-15 01:44:08 v5.4.0
2022-03-10 00:38:06 v5.3.0
2022-02-20 02:41:22 v5.2.0
主题(topics):
automation, cd, ci, ci-cd, continuous-deployment, continuous-integration, devops, pipeline, pipeline-processor, pipeline-runner, pipelines, pipelines-yaml, python, script, script-loader, task-manager, task-runner, taskrunner, tool
pypyr/pypyr同语言 Python最近更新仓库
2024-11-05 15:03:24 Cinnamon/kotaemon
2024-11-05 11:00:51 home-assistant/core
2024-11-04 23:11:11 DS4SD/docling
2024-11-04 10:56:18 open-compass/opencompass
2024-11-04 08:51:21 yt-dlp/yt-dlp
2024-11-02 04:45:40 princeton-vl/infinigen