Thierry Jean
Thierry Jean
Hey @swapdewalkar! I tried running `hamilton create-tests` locally on a few files from `examples/` and always received `ModuleNotFoundError`. Looking at the code, I think it makes a few assumptions about...
@swapdewalkar thanks for the contribution! The Python import system behaves in strange ways at times, so it would be beneficial if you could add to the docstring of `.with_local_modules()` a...
Is this fixed?
See if [this approach](https://github.com/DAGWorks-Inc/hamilton/pull/725/files#diff-27d92573d6a84be5292669dbfbd3a73c40bbf13a911a02f61f0b45f0196d445a) to add to the default validator list. ```python # hamilton/plugins/my_validator.py from hamilton.data_quality import base, default_validators class CustomValidator(base.DataValidator): def __init__(self, schema: ..., importance: str): super(CustomValidator, self).__init__(importance) self.schema...
(copying my reply from a Slack thread) What's displayed is the intended behavior of 2 changes compared to the early viz feature, but I overlooked one feature. **Change 1**: In...
I think there's a place for this along with `@pipe`. Also the `data.raw -> data` fits the `@check_output` semantic. Although, I propose to rename it `@pipe_out` `@pipe_output` or `@pipe_post`. Maybe...
I like your @pipe documentation and the fact that is echoes the pandas `.pipe()` operation. Apparently, Polars also [has a pipe operator](https://docs.pola.rs/py-polars/html/reference/dataframe/api/polars.DataFrame.pipe.html). To me, "pipe" better communicates than "modify" the...
relates to #495
Note. For Python `
Closed in favor of #945