Christian Aichinger

Results 6 comments of Christian Aichinger

Libconf treats include directives as if the 'child file' contents had been inlined at that exact place in the 'parent file'. Maybe it is just a problem with the placement...

In my understanding, key orders will be preserved in Python 3.8+, since `dict` is now ordered by default. Preserving comments is harder, since python-libconf returns JSON-like data structures (i.e. dicts/lists/tuples)....

@djechelon Did you find a solution for this issue? I have the same problem as well.

Just checked it with Python 2.7 as well, it doesn't work there, either. Same result: "Available Endpoints" and an empty page below it.

The problem is that sqlite relative path URLs don't work, while absolute paths do: ``` # Fails sandmanctl --port 4999 sqlite:///Chinook_Sqlite.sqlite # Works sandmanctl --port 4999 sqlite:////abs/path/to/Chinook_Sqlite.sqlite # The database...

I ran into the same issue: new to `uv`, needed to change Python version due to some incompatible libraries. My main issue was the the solution was not discoverable: I...