Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass function kwargs into the check function? #77

Open
josh-gree opened this issue May 29, 2020 · 2 comments
Open

Pass function kwargs into the check function? #77

josh-gree opened this issue May 29, 2020 · 2 comments
Labels
question Further information is requested

Comments

@josh-gree
Copy link

Hi great project thanks very much!

I have the following use case and I am wondering if it can perhaps already be achieved? I have taken a look at the source and not sure that it can be! Maybe what I want to do is crazy!?

I have some function;

def foo(date: datetime.date) -> DataFrame:
    df = call_to_an_external_api(date)
    return df

The particular api is supposed to respond with data for only a single day specified by date - however sometimes data from days either side leak in - I would like to check that a column of df is unique and that all its values are date. However I don't know date until the function is called.

Could it be possible for a check decorator to pass in the decorated functions args in some way so this could be possible?

@ZaxR
Copy link
Owner

ZaxR commented May 30, 2020

Unfortunately there's not currently a way to do this flexibly with decorators. Right now the easiest way would be to use the check function version:

def foo(date: datetime.date) -> pd.DataFrame:
    df = call_to_an_external_api(date)
    ck.has_vals_within_set(df, items={"date": [date]})
    return df

or to wrap the decorated version:

def foo(date: datetime.date) -> pd.DataFrame
    @dc.HasValsWithinSet(items={"date": [date]})
    def foo(date):
        df = call_to_an_external_api(date)
        return df
    return foo(date)

This question has come up before, and I'm open to a solution if you have one. It's challenging because check argument names and the argument names in the user's function might collide, but be used for different purposes, so kwargs can't just be synced by name

@ZaxR ZaxR added the question Further information is requested label May 30, 2020
@josh-gree
Copy link
Author

@ZaxR Thanks for the response! I did initially think it could just be as simple as passing the kwargs/args into the check function - but you are correct not clear how to deal with clashes...

I think your second approach may work for me!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants