Martin Rückl

Results 7 comments of Martin Rückl

I stumbled over the same issue, I think it also conflicts with the [actual documentation about client exception](https://docs.aiohttp.org/en/stable/client_reference.html#client-exceptions). > All exceptions are available as members of aiohttp module. > [...]...

@pedroyzkrak I worked around the missing `MultiTerms` by simply defining the following in my own scope: ```python from elasticsearch_dsl.aggs import Bucket class MultiTerms(Bucket): # noqa name = "multi_terms" ``` It...

Another issue with the current sqlite behaviour is that when an `sqlite://:inmemory:` is used, every connection uses a fresh in memory database. This essentially renders the whole sqlite inmemory functionality...

Maybe the way to go is to have a single instance of the connection behind an async mutex. Then this connection can be handed out to the users (locking the...

There is also [surf](https://docs.rs/surf/latest/surf/index.html) which abstracts different HTTP client implementations behind a common interface. It claims to support wasm environment.

Having worked with numpy and also some Eigen3 in C++ I was wondering if there are plans to support having the size (of some dimensions) as part of the type....

I just posted the following question on SO: https://stackoverflow.com/questions/75519932/azure-function-python-model-2-in-docker-container I think I ran into the exact same problem. (`func --version = 4.0.4895`)