Evgeny Ivanov
Evgeny Ivanov
Maybe rico could be an alternative solution: https://github.com/e10v/rico It's a Python package for creating HTML documents from rich content: dataframes, plots, images, markdown etc. It provides a high-level, easy-to-use API...
Hi! Here is my workaround: ```python from typing import TypeVar, cast from prefect.futures import PrefectFuture from prefect.utilities.asyncutils import A T = TypeVar("T") def cast_future(val: PrefectFuture[T, A]) -> T: return cast(T,...
Here is another dirty hack. But it's useful only if you: 1. Always `submit` tasks. 2. Never use `PrefectFuture` methods (like `result`). Although you can call `some_task.submit` explicitly and use...
Actually different module name is useful not only for packages but for other projects. Suppose, I have a project repo with polars as a dependency. I can execute it my...
> Hi, have you tried to urlencode your password? This may similar to [this upstream issue](https://github.com/blackbeam/rust-mysql-simple/issues/224) I've tried to encode with `urllib.parse.quote_plus`. Didn't help.
I've just tried the same with user with plain password and it worked. So that means that connector-x doesn't work for users with sha256 password. But console mysql client can...
I've just tested. Pandas through native clickhouse protocol is x2 faster than connector-x through mysql protocol. So it's not worth it anyway. And it's faster to read with pandas and...
New logo: https://blueskyweb.xyz/blog/12-21-2023-butterfly
Maybe rico could be an alternative solution: https://github.com/e10v/rico It's a Python package for creating HTML documents from rich content: dataframes, plots, images, markdown etc. It provides a high-level, easy-to-use API...
Agree with 1. I would keep the default colors. Also I would consider changing background for bar charts. It can be achieved by adding `view: {fill: '#e5e5e5'}` to config.