You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2017/01/05 18:39:50 UTC

[1/2] beam git commit: Closes #1737

Repository: beam
Updated Branches:
  refs/heads/python-sdk a4f08621f -> a2fe856db


Closes #1737


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/a2fe856d
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/a2fe856d
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/a2fe856d

Branch: refs/heads/python-sdk
Commit: a2fe856dbb27abef674578223cde61bb30d4955a
Parents: a4f0862 fc6c051
Author: Robert Bradshaw <ro...@google.com>
Authored: Thu Jan 5 10:39:35 2017 -0800
Committer: Robert Bradshaw <ro...@google.com>
Committed: Thu Jan 5 10:39:35 2017 -0800

----------------------------------------------------------------------
 sdks/python/README.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------



[2/2] beam git commit: Update README.md to get rid of 'incubating' notion.

Posted by ro...@apache.org.
Update README.md to get rid of 'incubating' notion.


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/fc6c051f
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/fc6c051f
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/fc6c051f

Branch: refs/heads/python-sdk
Commit: fc6c051f518fd7c188494b101a0b704149f4316a
Parents: a4f0862
Author: Younghee Kwon <yo...@gmail.com>
Authored: Wed Jan 4 20:53:45 2017 -0800
Committer: Robert Bradshaw <ro...@google.com>
Committed: Thu Jan 5 10:39:35 2017 -0800

----------------------------------------------------------------------
 sdks/python/README.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/fc6c051f/sdks/python/README.md
----------------------------------------------------------------------
diff --git a/sdks/python/README.md b/sdks/python/README.md
index 42cbace..0bee769 100644
--- a/sdks/python/README.md
+++ b/sdks/python/README.md
@@ -16,9 +16,9 @@
     specific language governing permissions and limitations
     under the License.
 -->
-# Apache Beam (incubating) - Python SDK
+# Apache Beam - Python SDK
 
-[Apache Beam](http://beam.incubator.apache.org) is a unified model for defining both batch and streaming data-parallel processing pipelines. Beam provides a set of language-specific SDKs for constructing pipelines. These pipelines can be executed on distributed processing backends like [Apache Spark](http://spark.apache.org/), [Apache Flink](http://flink.apache.org), and [Google Cloud Dataflow](http://cloud.google.com/dataflow).
+[Apache Beam](http://beam.apache.org) is a unified model for defining both batch and streaming data-parallel processing pipelines. Beam provides a set of language-specific SDKs for constructing pipelines. These pipelines can be executed on distributed processing backends like [Apache Spark](http://spark.apache.org/), [Apache Flink](http://flink.apache.org), and [Google Cloud Dataflow](http://cloud.google.com/dataflow).
 
 Apache Beam for Python provides access to Beam capabilities from the Python programming language.
 
@@ -58,7 +58,7 @@ for execution.
 * Runner - specifies where and how the Pipeline should execute.
 
 For a further, detailed introduction, please read the
-[Beam Programming Model](http://beam.incubator.apache.org/learn/programming-guide.md). 
+[Beam Programming Model](http://beam.apache.org/documentation/programming-guide).
 
 ## Getting Started
 
@@ -107,10 +107,10 @@ directory you created.
 #### Download and install
 
 1. Clone the Apache Beam repo from GitHub: 
-  `git clone https://github.com/apache/incubator-beam.git --branch python-sdk`
+  `git clone https://github.com/apache/beam.git --branch python-sdk`
 
 2. Navigate to the `python` directory: 
-  `cd incubator-beam/sdks/python/`
+  `cd beam/sdks/python/`
 
 3. Create the Apache Beam Python SDK installation package: 
   `python setup.py sdist`
@@ -123,7 +123,7 @@ directory you created.
 
 ### Execute a pipeline locally
 
-The Apache Beam [examples](https://github.com/apache/incubator-beam/tree/python-sdk/sdks/python/apache_beam/examples) directory has many examples. All examples can be run locally by passing the arguments required by the example script. 
+The Apache Beam [examples](https://github.com/apache/beam/tree/python-sdk/sdks/python/apache_beam/examples) directory has many examples. All examples can be run locally by passing the arguments required by the example script.
 
 For example, to run `wordcount.py`, run:
 
@@ -157,7 +157,7 @@ Make sure you installed the package first. If not, run `python setup.py install`
 
 ## Simple Examples
 
-The following examples demonstrate some basic, fundamental concepts for using Apache Beam's Python SDK. For more detailed examples, Beam provides a [directory of examples](https://github.com/apache/incubator-beam/tree/python-sdk/sdks/python/apache_beam/examples) for Python.  
+The following examples demonstrate some basic, fundamental concepts for using Apache Beam's Python SDK. For more detailed examples, Beam provides a [directory of examples](https://github.com/apache/beam/tree/python-sdk/sdks/python/apache_beam/examples) for Python.
 
 ### Basic pipeline
 
@@ -357,16 +357,16 @@ SAMPLE_DATA = [('a', 1), ('b', 10), ('a', 2), ('a', 3), ('b', 20)]
 p.run()
 ```
 
-The [combiners_test.py](https://github.com/apache/incubator-beam/blob/python-sdk/sdks/python/apache_beam/examples/cookbook/combiners_test.py) file contains more combiner examples.
+The [combiners_test.py](https://github.com/apache/beam/blob/python-sdk/sdks/python/apache_beam/examples/cookbook/combiners_test.py) file contains more combiner examples.
 
 ## Organizing Your Code
 
 Many projects will grow to multiple source code files. It is recommended that you organize your project so that all code involved in running your pipeline can be built as a Python package. This way, the package can easily be installed in the VM workers executing the job.
 
-Follow the [Juliaset example](https://github.com/apache/incubator-beam/tree/python-sdk/sdks/python/apache_beam/examples/complete/juliaset). If the code is organized in this fashion, you can use the `--setup_file` command line option to create a source distribution out of the project files, stage the resulting tarball, and later install it in the workers executing the job.
+Follow the [Juliaset example](https://github.com/apache/beam/tree/python-sdk/sdks/python/apache_beam/examples/complete/juliaset). If the code is organized in this fashion, you can use the `--setup_file` command line option to create a source distribution out of the project files, stage the resulting tarball, and later install it in the workers executing the job.
 
 ## More Information
 
 Please report any issues on [JIRA](https://issues.apache.org/jira/browse/BEAM/component/12328910).
 
-If you\u2019re interested in contributing to the Beam SDK, start by reading the [Contribute](http://beam.incubator.apache.org/contribute/) guide.
+If you\u2019re interested in contributing to the Beam SDK, start by reading the [Contribute](http://beam.apache.org/contribute/) guide.