Skip to main content

UNKNOWN

Project description

# pandas-diligent

`diligent` is a data proofing tool for pandas dataframes, best used in Jupyter notebooks.


Run `diligent` on your dataframes.

from diligent import diligent

diligent(df)

Run only certain kinds of checks.

diligent(df, include='basic')

Run in verbose mode:

diligent(df, verbose=True)

Register your own checks.

from diligent import registry

@registry.register(name='My custom check', tags='custom')
def custom_check(series):
yield 'Warning 1'
yield 'Warning 2'

Project details


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