Brunno Vanelli

Results 12 issues of Brunno Vanelli

Currently, all folders are recursively watched, with the only option to exclude folders via options with filters. https://github.com/samuelcolvin/watchfiles/blob/937d00fe5ba9c1c8f6360823078a9b6387c9e07c/src/lib.rs#L50 I would propose to include a boolean flag `recursive=False` that would disable...

This is a copy of https://github.com/sloria/environs/pull/198 I finally wrote the tests. Here is also some consideration, lists and dicts should be directly considered as json (as well as null itself),...

Turns out some errors are not handled and show full traceback when using websockets. For example this one, when I restart the nats server: ```python ERROR:nats.aio.client:nats: encountered error Traceback (most...

Example data is already being introduced on the base json provided. The fields could be used to provide an example to the pydantic field, which usually helps on the implementation....

Closes https://github.com/pola-rs/polars/issues/5568 Improvements on Excel support for polars, including a new exporter and an importer that does better type inferring, i.e. handling null entries, correctly parsing datetimes, etc. There are...

Currently, you cannot have extra arguments for the cmd. One example would be the `--servercert` to allow self-signed certificates for the vpn connection. I'm willing to provide the changes, if...

**Describe the bug** This happens because of an (oversight?) on alertmanager. It apparently groups the messages to send them all at once, but there can be entries which are resolved...

bug

**Feature Proposed** Currently, you can connect through an HTTP proxy using the following config: ``` [client.transport] type = "tcp" [client.transport.tcp] proxy = "http://proxy:3128" ``` But this only works if the...

enhancement

It it's extremely nice to load examples when building an API, since the OpenAPI specification is going to contain an example value from the actual response. If you are building...

Python arrays start at 0, so it is a bit confusing having to read indexes starting at 1. I know that 0 is meant to read all sheets, but in...