Daniel Reeves
Daniel Reeves
- `help=` is now a valid kwarg for `@argument()` decorator. - `show_arguments` is now `Optional[bool]`. If `None`, then the Arguments panel shows if (1) at least one help text is...
- Replace `click.echo()` everywhere in code as it currently exists with a toggle-able, non-user-facing echo. - Ensure `rich.print()` is always lazy-loaded! - Override `help_option` decorator and `Command.get_help_option()` method. The `help_option`...
It's possible to materialize the Snowflake implementation as a UDF using pre-hook and post-hook tricks, similar to what I do in https://github.com/dwreeves/dbt_pca. This should be the default Snowflake implementation.
Resolves #10 Currently WIP. Only the tests are (mostly) set up; actual implementation needs to happen as well. Additionally, need to handle special cases of 0var and 1var in tests.
Redshift does not handle either `covar` or `covar_pop`, which means `default__regress` doesn't work. There may be other databases where this is true. ### Current solution The best solution is to...
Hi, love the project. We are using it for [rich-click](https://github.com/ewels/rich-click) and it's vastly improved our test suite. One thing Claude Code does in its more recent versions is it calls...
Everything here is tentative and subject to change. ### Higher priorities - `RichColumnType` object: - `def render(command, ctx, formatter, panel)` - `--tree` option and `@click.tree_option()` #269 - RST support -...
Add support for a tree-representation of nested CLI argument grouping, such as done in the [TreeClick click plugin](https://github.com/wr1/treeclick) by @wr1 (this issue is created after he reached out to @ewels)....
### Background In [rich-click](https://github.com/ewels/rich-click) `1.9.0.dev1`, I added a `decorators.pyi` ([link](https://github.com/ewels/rich-click/blob/main/src/rich_click/decorators.pyi)) that enables typed args and-- critically for the developer experience-- tab completion for IDEs. So in rich-click, `@click.option()` (and other...