Repository: incubator-beam Updated Branches: refs/heads/python-sdk 43057960a -> 75be6e974
Add reference to the >> and | operators for pipelines. Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/3510ff99 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/3510ff99 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/3510ff99 Branch: refs/heads/python-sdk Commit: 3510ff99da9cd149e67e8fdb12b942689374b2d7 Parents: 4305796 Author: Maria Garcia Herrero <mari...@google.com> Authored: Tue Dec 6 21:05:47 2016 -0800 Committer: Robert Bradshaw <rober...@google.com> Committed: Thu Dec 8 11:14:51 2016 -0800 ---------------------------------------------------------------------- sdks/python/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/3510ff99/sdks/python/README.md ---------------------------------------------------------------------- diff --git a/sdks/python/README.md b/sdks/python/README.md index cff497c..820084d 100644 --- a/sdks/python/README.md +++ b/sdks/python/README.md @@ -163,8 +163,9 @@ The following examples demonstrate some basic, fundamental concepts for using Ap A basic pipeline will take as input an iterable, apply the beam.Create `PTransform`, and produce a `PCollection` that can -be written to a file or modified by further `PTransform`s. The -pipe operator allows to chain `PTransform`s. +be written to a file or modified by further `PTransform`s. +The `>>` operator is used to label `PTransform`s and +the `|` operator is used to chain them. ```python # Standard imports