Metadata-Version: 2.1
Name: spalah
Version: 0.2.0
Summary: Spalah is a set of PySpark dataframe helpers
Home-page: https://github.com/avolok/spalah
Author: Alex Volok
Author-email: alexandr.volok@gmail.com
License: MIT license
Keywords: spalah
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# spalah

Spalah is a set of python helpers to deal with PySpark dataframes

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install spalah
```

## Usage

```python
from spalah.dataframe import slice_dataframe
from pyspark.sql import SparkSession

slice_dataframe(
    input_dataframe=df,
    columns_to_include=[],
    columns_to_exclude=["d", "e"],
    nullify_only=False
)
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)


