toml-cli icon indicating copy to clipboard operation
toml-cli copied to clipboard

Results 9 toml-cli issues
Sort by recently updated
recently updated
newest added

I cannot seem to run this as described on Windows. Installing via `pip` works fine. But you cannot run `toml` as a command from Windows terminal. Typically, when this happens...

The flag `--toml-path` to provide `--toml-path pyproject.toml` can have default `pyproject.toml` . I think the flag is useful whenever the file is not in my current path.

In lieu of the manual formatting struggles of https://github.com/mrijken/toml-cli/pull/19 and https://github.com/mrijken/toml-cli/pull/20, it would be really nice if the project used some automatic formatting tool.

Problem: paths are split by `.` for the `get` and `unset` commands https://github.com/mrijken/toml-cli/blob/d8b2c9c9d6bae6298365a225665bb81bb8ee8515/toml_cli/__init__.py#L73 It's however possible for keys to have `.` within themselves, for example ```toml [section."https://github.com/octokit"] ``` In those...

toml --help Usage: toml [OPTIONS] COMMAND [ARGS]... ╭────────────────────────────────────────────────────────────────────────────────────────────── Traceback (most recent call last) ───────────────────────────────────────────────────────────────────────────────────────────────╮ │ /Library/Frameworks/Python.framework/Versions/3.12/bin/toml:8 in │ │ │ │ 5 from toml_cli import main ╭────────────────────────────────────────────────── locals ───────────────────────────────────────────────────╮ │...

Hi, I have implemented a new command: `search`. The query that you can use to search is the [JMESPath](https://jmespath.org/) expression. It might be really helpful for various of reasons, one...

``` $ cat test.toml [root.d1] f1="f1" [root] f2="f2" # It seems like the toml-cli can't deal with the tables which parent table is defined after child table? $ toml set...

I have a pyproject.toml file and I wanted to use this tool to extract some info into a pipeline in terminal, but for some absurd reason, the formatting in windows...

I read: - #34 - #22 still I can't figure out how to make it work. I run: ```sh toml set dependency-groups.dev [{include-group="test"}] --toml-path pyproject.toml ``` I expect: ```toml dev...