Registry / data / vnstock-ezchart

vnstock-ezchart

JSON →
library0.0.3pypypiunverified

vnstock-ezchart is a high-level Python charting library built on Matplotlib and Seaborn, offering a simplified API for routine data visualization. Version 0.0.3 requires Python >=3.10 and is actively maintained on GitHub by vnstock-hq.

pip install vnstock-ezchart
INSTALL
IMPORT
SIG · VNSTOCK-EZCHART
V
vnstock-ezchart
datapythonv0.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

EzChart
from vnstock_ezchart import EzChart
from vnstock_ezchart import EzChart

Creates a simple bar chart from a DataFrame using EzChart.

import pandas as pd from vnstock_ezchart import EzChart df = pd.DataFrame({ 'x': ['A', 'B', 'C', 'D'], 'y': [10, 20, 15, 25] }) chart = EzChart(df, x='x', y='y') chart.bar() chart.show()
Debug
Known issues
gotchaEzChart expects a pandas DataFrame; passing other iterables may raise AttributeError.
fix
Convert data to pandas DataFrame before passing to EzChart.
affects: <=0.0.3
gotchaThe chart.show() method blocks execution in non-interactive environments; use chart.savefig() instead.
fix
Use chart.savefig('output.png') to save the plot without blocking.
affects: <=0.0.3
deprecatedThe old import pattern 'import ezchart' was used in pre-release versions; now it's 'vnstock_ezchart'.
fix
Update imports to: from vnstock_ezchart import EzChart
affects: >=0.0.1, <0.0.3
Upgrade
Version history
0.0.3latest on PyPI · released Nov 8, 2025
Audit
Dependencies
matplotlibrequiredPrimary plotting backend
seabornrequiredStatistical data visualization wrapper
pandasrequiredData manipulation and handling
Agent activity
27 hits · last 30 days
node
24
OpenAI (training)
1
Resources
vnstock-ezchart — pip install vnstock-ezchart · libregistry