Simon Steinheber
Simon Steinheber
I am facing the same issue. @RajasekharReddy82 did you already find a way to resolve this? I took a screenrecording with the example from the ReadMe. In Mozilla Firefox and...
@RajasekharReddy82 I could fix my problem, I will share in case it is relevant for you too. I tried before with something like this: ```Typescript import Xarrow, {useXarrow, Xwrapper} from...
This issue is just a placeholder for the idea. If anyone is interested please feel free to start a discussion
[mermaid](https://mermaid-js.github.io/mermaid/#/stateDiagram) diagrams could be used to visualize the pipeline
Good articles summarizing libraries: * https://towardsdatascience.com/visualizing-networks-in-python-d70f4cbeb259 * https://towardsdatascience.com/pyvis-visualize-interactive-network-graphs-in-python-77e059791f01
@charliermarsh, thanks for pointing out the solution using environment variables. Do you currently plan to provide a solution similar to [`poetry config http-basic`](https://python-poetry.org/docs/repositories/#installing-from-private-package-sources)? This uses `keyring` under the hood, but...
@zanieb, what are your concerns about keyring-rs? I would be interested to contribute the keyring credentials feature and would like to understand the constraints @farndt, can you share some documentation...
I would suggest the following: - `uv add` [loads the credentials for all indexes](https://github.com/astral-sh/uv/blob/main/crates/uv/src/commands/project/add.rs#L286-L290) into the cache - This uses `[Index.credentials](https://github.com/astral-sh/uv/blob/main/crates/uv-distribution-types/src/index.rs#L141-L152)` - This currently only supports env variables `UV_INDEX_XXX` and...
Topic is also discussed in https://github.com/astral-sh/uv/issues/8810
Using `ticktext` can be used as a workaround: ```python trace = go.Scatter( x = x, y = y, marker = dict( color=y, colorscale=[(0.0, "royalblue"), (0.5, "rgba(230, 230,230,0.5)"), (1.0, "orange") ]...