Skip to main content

Function decorators for Pandas Dataframe column name and data type validation

Project description

DAFFY DataFrame Column Validator

PyPI PyPI - Python Version test Code style: black

Description

In projects using Pandas, it's very common to have functions that take Pandas DataFrames as input or produce them as output. It's hard to figure out quickly what these DataFrames contain. This library offers simple decorators to annotate your functions so that they document themselves and that documentation is kept up-to-date by validating the input and output on runtime.

Table of Contents

Installation

Install with your favorite Python dependency manager like

pip install daffy

or

poetry add daffy

Usage

Start by importing the needed decorators:

from daffy import df_in, df_out

To check a DataFrame input to a function, annotate the function with @df_in. For example the following function expects to get a DataFrame with columns Brand and Price:

@df_in(columns=["Brand", "Price"])
def process_cars(car_df):
    # do stuff with cars

If your function takes multiple arguments, specify the field to be checked with it's name:

@df_in(name="car_df", columns=["Brand", "Price"])
def process_cars(year, style, car_df):
    # do stuff with cars

To check that a function returns a DataFrame with specific columns, use @df_out decorator:

@df_out(columns=["Brand", "Price"])
def get_all_cars():
    # get those cars
    return all_cars_df

In case one of the listed columns is missing from the DataFrame, a helpful assertion error is thrown:

AssertionError("Column Price missing from DataFrame. Got columns: ['Brand']")

To check both input and output, just use both annotations on the same function:

@df_in(columns=["Brand", "Price"])
@df_out(columns=["Brand", "Price"])
def filter_cars(car_df):
    # filter some cars
    return filtered_cars_df

If you want to also check the data types of each column, you can replace the column array:

columns=["Brand", "Price"]

with a dict:

columns={"Brand": "object", "Price": "int64"}

This will not only check that the specified columns are found from the DataFrame but also that their dtype is the expected.

To quickly check what the incoming and outgoing dataframes contain, you can add a @df_log annotation to the function. For example adding @df_log to the above filter_cars function will product log lines:

Function filter_cars parameters contained a DataFrame:columns: ['Brand', 'Price']
Function filter_cars returned a DataFrame: columns: ['Brand', 'Price']

Contributing

Contributions are accepted. Include tests in PR's.

Development

To run the tests, clone the repository, install dependencies with Poetry and run tests with PyTest:

poetry install
poetry shell
pytest

To enable linting on each commit, run pre-commit install. After that, your every commit will be checked with isort, black and flake8.

License

MIT

Changelog

0.4.0

Added @df_log for logging. Improved assertion messages.

0.3.0

Added type hints.

0.2.1

Added Pypi classifiers.

0.2.0

Fixed decorator usage. Added functools wraps.

0.1.0

Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

daffy-0.4.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

daffy-0.4.0-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file daffy-0.4.0.tar.gz.

File metadata

  • Download URL: daffy-0.4.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/4.19.84-microsoft-standard

File hashes

Hashes for daffy-0.4.0.tar.gz
Algorithm Hash digest
SHA256 406cec28aac14b2d23eea5fd82ddd77bde59111e3b81676807afd2938d880bbf
MD5 320c6b1046d2016e4bee9bfca7e7d858
BLAKE2b-256 8deecdeb68dacf394e5b7b1f85ae3f9378af9b48e501cf7a160d0f6c7412d9db

See more details on using hashes here.

File details

Details for the file daffy-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: daffy-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/4.19.84-microsoft-standard

File hashes

Hashes for daffy-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2cba755355dc351eb90e1422036b3686f98adaf232b524a01121229cce010f21
MD5 b24624a281aa3fc3b0e9d460ea6b999e
BLAKE2b-256 0f61bfe46954a403b81234d9bf9cc987f724768dd686a51c8f6dade997eae661

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page