Tom Pohl
Tom Pohl
# What is this project? From their README: [AnyIO](https://github.com/agronholm/anyio) is an asynchronous networking and concurrency library that works on top of either [asyncio](https://docs.python.org/3/library/asyncio.html) or [trio](https://github.com/python-trio/trio). It implements trio-like [structured concurrency](https://en.wikipedia.org/wiki/Structured_concurrency)...
To secure the HTTP requests even over a unencrypted connection, it would make sense to include a TOTP in the URL or the HTTP request header. In principle, one could...
# Software versions OS: Linux 5.4.6 Browser: Chrome 78.0.3904.108 (Official Build) (64-bit) Python: 3.8.1 JupyterLab: 1.2.4 Pandas: 0.25.3 Bokeh: 1.4.0 # Issue When plotting a `vbar_stack`, the entire row in...
I never counted it, but many of the example images which can be retrieved using `imageio:whatever.png` are square. In my experience, using square images during the development phase of an...
# Setup * nats-py: 2.0.0 * Python 3.10.3 * OS: Linux 5.16.16 # Test Code ```python import asyncio from nats.aio.client import Client async def main(): nc = Client() await nc.connect("nats://localhost:54100",...
I have a use case where I send a few values and a chuck of bytes to JavaScript using msgpack. Most libraries (including msgpackr) try to unpack the data with...
Observations: * No alpha value for `gl` seems to be fine: `chroma(0.5, 0.5, 0.8, "gl")` = `#8080cc` (**expected**) * Until you use this object: `chroma(0.5, 0.5, 0.8, "gl").brighten(1)` = `1`...
### Description: Every once in a while, I have the requirement for a thresholding algo which works on a circular feature (such as hue in some color spaces or orientation...
## Describe the bug The formatter removes both leading and trailing special whitespace characters (e.g. U+2003). Let's say you have a YAML file containing leading special whitespace (U+2003): ```yaml some_string:...
Here's a snipped for a class decorator `define_strict` which makes all fields strict. I can prepare a PR if you are interested. ```py3 import attrs from attrs_strict import type_validator def...