Guillaume Savary
Guillaume Savary
Behind a reverse-proxy or a load balancer, you often need to get the original client IP. A lot of load balancer provide these information with the PROXY protocol - HAproxy...
With `aiohttp`, we get results in bytes, then we decode them in the Fabric* but for `httpx` it returns directly unicode, so we need to convert result before sending the...
I found this code in `utils/json.py` ```py if typing.TYPE_CHECKING: import orjson else: # pragma: no cover orjson = None # noqa ``` If I understand correctly, `orjson` is imported only...
Hello @maximdanilchenko We are using the `master` branch of `aiochclient` in production for 15 days now, without any issue. So I think `aiochclient` is now ready for a new release...
PyAudio
Since PyAudio seems to not be maintained anymore, have you thought to use the Gstreamer python binding (http://cgit.freedesktop.org/gstreamer/gst-python) ? I don't know audio stuff so I don't know if this...
Chapter 4.1: `s.in_memory()` should be `s.open_in_memory()` A bit bellow, you write `n.dump()` but 'n' is not defined yet, it should be `s.root.dump()` Chapter 5.1: An init is missing, we don't...
Major DBs have their asyncio client nowdays: - postgresql: asyncpg - redis: aioredis - kafka: aiokafka - etc It's logical for any I/O access for python to be async. Note...
Checkpoints are used to quickly create backups of the DB. https://github.com/facebook/rocksdb/wiki/Checkpoints _Originally posted by @elrik75 in https://github.com/Congyuwang/RocksDict/discussions/141_
I can install gssapi in `python 3.13b3` with success but not with `python 3.13b3 --disable-gil` Env --- CONFIGURE_OPTS=--disable-gil pyenv install 3.13.0b3 GCC 12.2.0 decorator 5.1.1 Error ------ ```python Processing .../python-gssapi...