Powerful data visualization and analysis library combining Pandas, Matplotlib, and Seaborn.
Project description
Plotverse
strategy: matrix: python-version: [3.11, 3.12, 3.13]
Plotverse is a unified Python library that combines:
- All functionality from
pandas - All
matplotlib.pyplotfunctions (prefixed asplt_) - All
seabornfunctions (prefixed assns_)
📦 Installation
pip install .
## 🧠 Usage
import plotverse as pv
df = pv.DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]})
pv.plt_plot(df['x'], df['y'])
pv.sns_heatmap(df.corr())
## 🎨 Themes
from plotverse.theme import dark_mode, light_mode
dark_mode()
# or
light_mode()
---
### 📦 `setup.py`
```python
from setuptools import setup, find_packages
setup(
name="plotverse",
version="0.0.1",
packages=find_packages(),
install_requires=[
"pandas",
"matplotlib",
"seaborn"
],
author="Sanju",
description="A combined wrapper for Pandas, Matplotlib, and Seaborn.",
url="https://github.com/sk-sanju/plotverse",
license="MIT",
)
📄 LICENSE (MIT)
MIT License
Copyright (c) 2025 sk-sanju
💡 Folder Structure
plotverse/
├── plotverse/
│ ├── __init__.py
│ └── theme/
│ └── __init__.py
├── tests/
│ └── test_imports.py
├── README.md
├── setup.py
└── LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
plotverse-0.0.1.tar.gz
(2.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plotverse-0.0.1.tar.gz.
File metadata
- Download URL: plotverse-0.0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f41f28fa84191acda09424594e029ec35b3752bbe188f9817cac34078fe5648d
|
|
| MD5 |
cbbe7baf587dceced530ad81c0290b3c
|
|
| BLAKE2b-256 |
b87869eecde1834add627949ac6730464c31297c6bd829973c0bfccb5513b43d
|
File details
Details for the file plotverse-0.0.1-py3-none-any.whl.
File metadata
- Download URL: plotverse-0.0.1-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1c88ec85f82b155128fe5aff644b9c0c71c1bc55c347ae3bc7984e70c85e84b
|
|
| MD5 |
735c85f61c9755cc0784d6dd62435649
|
|
| BLAKE2b-256 |
a6ab195e686aa6fdfbc2a99c577c8897f5f3ff0cf341111401ba561d20c8c649
|