-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## My Personal Beam Utils | ||
This package is a small set of Apache Beam utilities that I've coded | ||
as I've needed them. These might -or might not- eventually make it into | ||
the Apache Beam Python SDK. The utilities are the following: | ||
|
||
* **Sources**. A few sources for common file formats: | ||
* \[CsvFileSource\] - A source for CSV files. It returns Dictionaries and Lists | ||
|
||
* **Coders**. A few coders for common encodings | ||
* \[NoopCoder\] - It does not do any operation when encoding/decoding. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from distutils.core import setup | ||
setup( | ||
name = 'beam-utils', | ||
packages = ['beam_utils'], | ||
version = '0.0.1', | ||
description = 'Small lib with a few utilities for the Python SDK of Apache Beam', | ||
author = 'Pablo E.', | ||
author_email = 'mail@iampablo.me', | ||
url = 'https://github.com/pabloem/', | ||
download_url = 'https://github.com/pabloem/beam-utils/tarball/0.0.1', | ||
keywords = ['beam', 'dataflow', 'apache beam'], | ||
classifiers = [], | ||
) |