Pygwalker

Latest version: v0.4.9.14

Safety actively analyzes 714860 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 11

0.4.8.7

What's Changed
* feat: add web_server mode by longxiaofei in https://github.com/Kanaries/pygwalker/pull/558
* feat: add iso time unit by longxiaofei in https://github.com/Kanaries/pygwalker/pull/560


**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.8.5...0.4.8.7

0.4.8.5

What's Changed
* fix: fix dialect sql(mysql, postgres) && add new tracker by longxiaofei in https://github.com/Kanaries/pygwalker/pull/553


**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.8.4...0.4.8.5

0.4.8.4

What's Changed
* fix: raise error when cancel appearance by longxiaofei in https://github.com/Kanaries/pygwalker/pull/527
* fix: params name error by longxiaofei in https://github.com/Kanaries/pygwalker/pull/530
* doc: update gradio demo by longxiaofei in https://github.com/Kanaries/pygwalker/pull/533
* fix: viewer container size base on the root iframe in streamlit by longxiaofei in https://github.com/Kanaries/pygwalker/pull/535
* feat: update graphic-walker version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/536
* fix: snowflake client return undefined by longxiaofei in https://github.com/Kanaries/pygwalker/pull/539
* fix: parse source code in jupyter by longxiaofei in https://github.com/Kanaries/pygwalker/pull/540
* feat: update graphic-walker version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/541
* fix: "Copy to Clipboard" in different browser by BHznJNs in https://github.com/Kanaries/pygwalker/pull/543
* chore: update version of dsl_parser by longxiaofei in https://github.com/Kanaries/pygwalker/pull/547
* feat: add global param max_data_length by longxiaofei in https://github.com/Kanaries/pygwalker/pull/550

New Contributors
* BHznJNs made their first contribution in https://github.com/Kanaries/pygwalker/pull/543

**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.8...0.4.8.4

0.4.8

* update duckdb version((0.10.1)
* update graphic-walker version(0.4.62)
* refactor api of streamlit
* add new tab: chat
* fix bugs and optimize the feature of saving

What's Changed
* feat: support custom ask callback function by longxiaofei in https://github.com/Kanaries/pygwalker/pull/477
* doc: add dash example by longxiaofei in https://github.com/Kanaries/pygwalker/pull/478
* feat: add new html apis by longxiaofei in https://github.com/Kanaries/pygwalker/pull/480
* fix: change dict in place by longxiaofei in https://github.com/Kanaries/pygwalker/pull/481
* refactor: modify type of field_specs by longxiaofei in https://github.com/Kanaries/pygwalker/pull/482
* feat: support vega spec by longxiaofei in https://github.com/Kanaries/pygwalker/pull/483
* feat: modify height of walker ui by longxiaofei in https://github.com/Kanaries/pygwalker/pull/484
* fix: temporarily fix bugs of pure chart rendering in streamlit by longxiaofei in https://github.com/Kanaries/pygwalker/pull/485
* fix: update graphic walker to 0.4.56 by islxyqwe in https://github.com/Kanaries/pygwalker/pull/489
* chore: bump to v0.4.8a4 by islxyqwe in https://github.com/Kanaries/pygwalker/pull/490
* chore: update version of pypa/gh-action-pypi-publish by longxiaofei in https://github.com/Kanaries/pygwalker/pull/492
* fix: StrictVersion was removed in python3.12 by longxiaofei in https://github.com/Kanaries/pygwalker/pull/494
* feat: update feature for uploading chart to cloud by longxiaofei in https://github.com/Kanaries/pygwalker/pull/497
* fix: parse array field in mysql by longxiaofei in https://github.com/Kanaries/pygwalker/pull/498
* doc: remove expired links by longxiaofei in https://github.com/Kanaries/pygwalker/pull/499
* refactor: deprecated function name by longxiaofei in https://github.com/Kanaries/pygwalker/pull/501
* doc: remove expired links by longxiaofei in https://github.com/Kanaries/pygwalker/pull/503
* feat: support chat feature by longxiaofei in https://github.com/Kanaries/pygwalker/pull/504
* doc: update expired links by longxiaofei in https://github.com/Kanaries/pygwalker/pull/506
* refactor: redesign APIs by ObservedObserver in https://github.com/Kanaries/pygwalker/pull/509
* chore: update graphic walker to 0.4.58 by islxyqwe in https://github.com/Kanaries/pygwalker/pull/511
* chore: code style by longxiaofei in https://github.com/Kanaries/pygwalker/pull/512
* feat: add red point when spec changed by longxiaofei in https://github.com/Kanaries/pygwalker/pull/515
* chore: update duckdb version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/517
* feat: optimize the feature of saving & merge button by longxiaofei in https://github.com/Kanaries/pygwalker/pull/520
* feat: collect error log by longxiaofei in https://github.com/Kanaries/pygwalker/pull/521

New Contributors
* islxyqwe made their first contribution in https://github.com/Kanaries/pygwalker/pull/489

**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.7...0.4.8

0.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

python
import pygwalker as pyg

pyg.table(df)

pyg.render(df, vis_spec)


More api detail, refer it: [Jupyter Api](https://pygwalker-docs.vercel.app/api-reference/jupyter)

Cloud Calculate Mode

python
pyg.walker(df, use_cloud_calc=True)


Remove Debug Parameter

previous:
python
StreamlitRenderer(df, spec="./gw_config.json", debug=True)


current:
python
StreamlitRenderer(df, spec="./gw_config.json", spec_io_mode="rw")


More api detail, refer it: [Streamlit Api](https://pygwalker-docs.vercel.app/api-reference/streamlit)


What's Changed
* feat: update duckdb version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/438
* feat: auto switches to kernel calculate base on data size by longxiaofei in https://github.com/Kanaries/pygwalker/pull/440
* docs: add examples by longxiaofei in https://github.com/Kanaries/pygwalker/pull/441
* fix: ui style in dark by longxiaofei in https://github.com/Kanaries/pygwalker/pull/442
* fix: the UI style changes when system theme changes by longxiaofei in https://github.com/Kanaries/pygwalker/pull/443
* feat: modify position of tips by longxiaofei in https://github.com/Kanaries/pygwalker/pull/446
* feat: add buttons to switch theme by longxiaofei in https://github.com/Kanaries/pygwalker/pull/449
* refactor: remove deprecated parameters by longxiaofei in https://github.com/Kanaries/pygwalker/pull/451
* feat: using batch api when query cloud dataset by longxiaofei in https://github.com/Kanaries/pygwalker/pull/452
* feat: update graphic-walker version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/457
* fix: use utc timezone when using js calculate by longxiaofei in https://github.com/Kanaries/pygwalker/pull/460
* feat: cloud calculate by longxiaofei in https://github.com/Kanaries/pygwalker/pull/461
* fix: set default width to None in streamlit by longxiaofei in https://github.com/Kanaries/pygwalker/pull/462
* feat: add new api in jupyter by longxiaofei in https://github.com/Kanaries/pygwalker/pull/465
* feat: update graphic-walker version by longxiaofei in https://github.com/Kanaries/pygwalker/pull/468
* feat: add new api to_chart_html by longxiaofei in https://github.com/Kanaries/pygwalker/pull/471
* refactor: use spec_io_mode instead of debug parameter by longxiaofei in https://github.com/Kanaries/pygwalker/pull/472


**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.6...0.4.7

0.4.6

What's Changed
* feat: optimize the memory usage of generating html https://github.com/Kanaries/pygwalker/pull/426
* feat: loaded init_streamlit_comm implicitly https://github.com/Kanaries/pygwalker/pull/430
* refactor: modify param name https://github.com/Kanaries/pygwalker/pull/432
* feat: update graphic-walker version https://github.com/Kanaries/pygwalker/pull/433


**Full Changelog**: https://github.com/Kanaries/pygwalker/compare/0.4.5...0.4.6

Page 2 of 11

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.