Douding

Results 55 comments of Douding

`pip install pygwalker==0.4.8a3` You can use new html api, but currently these APIs are still in the stage of development, and pygwalker's team is improving these APIs. ```python from pygwalker.api.html...

Thank you for your suggestion, we will consider this export way. As this involves communication from the frontend to the kernel, we are currently working on developing a stable communication...

Hi, are you trying to use this feature on jupyter? if so, features similar to this has been added. You can try the pre-release version first. pre-release 0.2.0: [here](https://docs.kanaries.net/pygwalker/changelog/pygwalker-0-2) Also...

Thanks for feedback, good suggestions! 1. Since a "chart" may contain multiple images, so i need html and css to restore the appearance in vega, but i will try to...

install new pre-release version: `pip install pygwalker --upgrade --pre`. `walker.save_chart_to_file("chart name", "xxx.png")` to save the chart to the local file system. `walker.export_chart_png("chart name")` return chart bytes. looking forward to your...

method similar to `export_chart` to return metadata of chart, and will consider adding it in the future. "run all"does cause this problem, since next cell start running before the ui...

By the way, on which platform are you using pygwalker? local jupyter? kaggle?

If you save the chart data in disk, it can solve "run all" problem. like this: ```python walker = pyg.walk(df, spec="xxx.json", store_chart_data=True) ``` pygwalker(0.2.0) has been released. Thanks again for...

Do you need to develop pygwalker, or just import it? Local develop, refer it: https://pygwalker.kanaries.net/installation#local-development Import it, download the built package, https://pypi.org/project/pygwalker/#files

Maybe you can consider putting authentication data into cookies, then patching pygwalker ```python from pygwalker.communications import streamlit_comm class PrvivatePygwalkerHandler(streamlit_comm.PygwalkerHandler): def post(self, gid: str): print(self.cookies) return super().post(gid) streamlit_comm.PygwalkerHandler = PrvivatePygwalkerHandler ```