https://github.com/datastacktv/apache-beam-explained
Source code for the YouTube video, Apache Beam Explained in 12 Minutes
https://github.com/datastacktv/apache-beam-explained
apache-beam
Last synced: 3 months ago
JSON representation
Source code for the YouTube video, Apache Beam Explained in 12 Minutes
- Host: GitHub
- URL: https://github.com/datastacktv/apache-beam-explained
- Owner: datastacktv
- License: mit
- Created: 2020-10-20T11:09:55.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-23T12:44:29.000Z (over 5 years ago)
- Last Synced: 2025-09-11T12:49:10.853Z (9 months ago)
- Topics: apache-beam
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 21
- Watchers: 1
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🎥 Apache Beam Explained in 12 Minutes
Source code for the YouTube video, Apache Beam explained in 12 minutes. Watch the video [here]()!
## Install dependencies
```bash
pip install -r requirements.txt
```
## Run pipeline locally
```bash
python pipeline.py
```
This command produces a text file called `output-00000-of-00001`. The output looks like the following:
```txt
('Andy', 2)
('Andy', 1)
('Sam', 1)
```