Giuseppe Tribulato
Giuseppe Tribulato
The decoded precision depends on the precision used when encoding the polyline. The encoder has a default of 5 digits of precision but there is a parameter to change that:...
Hi, this library only implements a custom IO class that perform remote reads instead of local reads. The business logic is still using the official ZipFile module of python. And...
Hi, thanks for your contribution. Could you please add the same change also for the async client ([async_client.py](https://github.com/gtsystem/lightkube/blob/master/lightkube/core/async_client.py)) ?. Also would be great to see some unittests showing that the...
@antoinebrl, still interested in completing this feature?
Added for the last release
You can use the default patch type (`PatchType.STRATEGIC`). Example with a config map: ```python from lightkube import Client from lightkube.resources.core_v1 import ConfigMap from lightkube.models.meta_v1 import ObjectMeta # create a new...
I added an example in the documentation, however I'm keeping this open as it could still be nice to design something to easily modify labels and annotations (better even with...
Hi, this is not supported right now. Would you like to contribute this functionality?
Hi, the library is optimized to minimize requests, so in the moment the zip engine try to extract a member, a stream request is issued to the remote backend for...
Hi, have you tried using the httpx environment variables https://www.python-httpx.org/environment_variables/ ? If this doesn't work, it would be possible to override the httpx client constructor function: https://github.com/gtsystem/lightkube/blob/master/lightkube/config/client_adapter.py#L14 https://github.com/gtsystem/lightkube/blob/master/lightkube/core/generic_client.py#L73 However, be...