Skip to content

Commit 4f2bbd3

Browse files
authored
Update README.md
1 parent c8acdb4 commit 4f2bbd3

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Fluid
1+
# Couler for Google Tekton
22

3-
Fluid is a Python package allowing users to write [Tekton](https://github.com/tektoncd/pipeline) workflows in Python other than YAML.
3+
Couler is a Python package allowing users to write [Tekton](https://github.com/tektoncd/pipeline) workflows in Python other than YAML.
44

55
Here is an example. To the left is a Python program defining a Task and related TaskRun. To the right is the equivalent YAML file.
66

77
<table><tr><td valign=top>
88

99
```python
10-
import fluid
10+
import fluid as couler
1111

12-
@fluid.task
12+
@couler.task
1313
def echo_hello_world(hello, world="El mundo"):
14-
fluid.step(image="ubuntu", cmd=["echo"], args=[hello])
15-
fluid.step(image="ubuntu", cmd=["echo"], args=[world])
14+
couler.step(image="ubuntu", cmd=["echo"], args=[hello])
15+
couler.step(image="ubuntu", cmd=["echo"], args=[world])
1616
```
1717

1818
</td><td valign=top>

0 commit comments

Comments
 (0)