Myles Scolnick
Myles Scolnick
Could we not go a level higher, and instead of preserving `# /// script`, we just preserve the whole comment as-in without any modification? ```md --- title: Notebook marimo-version: 0.0.0...
> Why add the prefix overhead for users? I dont see this as overhead but rather transparency. It's very WYSIWYG. Also we don't need to track which prefix types there...
@Haleshot, quick solution is we can by outputting the HTML ```python import pygwalker as pyg import marimo as mo from vega_datasets import data walker = pyg.walk(data.iris()) mo.iframe(walker.to_html_without_iframe()) ``` It should...
@Haleshot could you actually file a feature request on the pywalker repo so that `pygwalker.api.pygwalker.PygWalker` could implement a `_repr_html_` or `_mime_` ([see docs](https://docs.marimo.io/guides/integrating_with_marimo/displaying_objects.html)), otherwise looks like this: 
@ggggggggg we don't currently have any maintainers (or contributors) with a windows setup. hopefully someone with a windows setup and help debug and contribute the fix.
I wonder if we should be using `click.echo` (which claims to be more environment friendly) instead of `print`.
Closing this as I think this is fixed by checking if we support colors: https://github.com/marimo-team/marimo/pull/3146/files#diff-92c30eba0f093c2dfa5a0bd78433068066664c81f11bdb5822902b2889295c5cR13-R39
This cropped up when I started to auto-infer data-types from the column values: https://github.com/marimo-team/marimo/pull/2796 I've fixed that in this PR: https://github.com/marimo-team/marimo/pull/2907, which won't show data-types if you pass a list/dict,...
@sorinbiriescu - this is because not all tables have a stable ID. we do support this for polars/pandas, but cannot support this for interchange tables (duckdb or ibis) or lists/dictionaries....
This makes sense. we can likely re-use the current homepage from `marimo edit`. We would just need to make sure we restrict usage to just those files. ---- In the...