About Pygwalker0.4.7
- Update duckdb version(0.10.0)
- Fixed the issue that some components in pygwalker are not adapte with the dark theme, and add the button to switch theme.
- Adding cloud calculate mode, users only need to change one parameter to upload the data to kanaries cloud and use the computing resources of kanaries cloud to explore datas.
- Add new apis in jupyter.
- Use spec_io_mode instead of debug parameter.
New Api In Jupyter
import pygwalker as pyg
pyg.table(df)
pyg.render(df, vis_spec)
More api detail, refer it: Jupyter Api
Cloud Calculate Mode
pyg.walker(df, use_cloud_calc=True)
Remove Debug Parameter
previous:
StreamlitRenderer(df, spec="./gw_config.json", debug=True)
current:
StreamlitRenderer(df, spec="./gw_config.json", spec_io_mode="rw")
More api detail, refer it: Streamlit Api
What's Changed
- feat: update duckdb version by @longxiaofei in #438
- feat: auto switches to kernel calculate base on data size by @longxiaofei in #440
- docs: add examples by @longxiaofei in #441
- fix: ui style in dark by @longxiaofei in #442
- fix: the UI style changes when system theme changes by @longxiaofei in #443
- feat: modify position of tips by @longxiaofei in #446
- feat: add buttons to switch theme by @longxiaofei in #449
- refactor: remove deprecated parameters by @longxiaofei in #451
- feat: using batch api when query cloud dataset by @longxiaofei in #452
- feat: update graphic-walker version by @longxiaofei in #457
- fix: use utc timezone when using js calculate by @longxiaofei in #460
- feat: cloud calculate by @longxiaofei in #461
- fix: set default width to None in streamlit by @longxiaofei in #462
- feat: add new api in jupyter by @longxiaofei in #465
- feat: update graphic-walker version by @longxiaofei in #468
- feat: add new api to_chart_html by @longxiaofei in #471
- refactor: use spec_io_mode instead of debug parameter by @longxiaofei in #472
Full Changelog: 0.4.6...0.4.7