├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── setup.py └── transformpy ├── __init__.py ├── base.py └── pipes ├── __init__.py ├── clustering.py ├── debug.py ├── field.py ├── hive.py └── pandas.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/setup.py -------------------------------------------------------------------------------- /transformpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/__init__.py -------------------------------------------------------------------------------- /transformpy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/base.py -------------------------------------------------------------------------------- /transformpy/pipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformpy/pipes/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/pipes/clustering.py -------------------------------------------------------------------------------- /transformpy/pipes/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/pipes/debug.py -------------------------------------------------------------------------------- /transformpy/pipes/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/pipes/field.py -------------------------------------------------------------------------------- /transformpy/pipes/hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/pipes/hive.py -------------------------------------------------------------------------------- /transformpy/pipes/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/transformpy/HEAD/transformpy/pipes/pandas.py --------------------------------------------------------------------------------