plotlibs 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plotlibs-0.3.0/plotlibs.egg-info → plotlibs-0.3.1}/PKG-INFO +9 -8
- {plotlibs-0.3.0 → plotlibs-0.3.1}/README.md +8 -7
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlib/__init__.py +1 -1
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/__init__.py +1 -1
- {plotlibs-0.3.0 → plotlibs-0.3.1/plotlibs.egg-info}/PKG-INFO +9 -8
- {plotlibs-0.3.0 → plotlibs-0.3.1}/pyproject.toml +1 -1
- {plotlibs-0.3.0 → plotlibs-0.3.1}/tests/test_rebrand.py +1 -1
- {plotlibs-0.3.0 → plotlibs-0.3.1}/LICENSE +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/backends/__init__.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/backends/renderer.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/colors.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/data.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/db.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/eda.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/fast.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/figure.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/ml.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/pyplot.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs/style.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs.egg-info/SOURCES.txt +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs.egg-info/dependency_links.txt +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs.egg-info/requires.txt +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/plotlibs.egg-info/top_level.txt +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/setup.cfg +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/tests/test_fame.py +0 -0
- {plotlibs-0.3.0 → plotlibs-0.3.1}/tests/test_plotlib.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotlibs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: plotlibs — fast, beautiful, matplotlib-compatible plotting with DataFrames, SQL, EDA and ML/DL visuals (numpy + Pillow only)
|
|
5
5
|
Author: salim-studio
|
|
6
6
|
License: MIT
|
|
@@ -51,11 +51,11 @@ Requires-Dist: scikit-learn; extra == "dev"
|
|
|
51
51
|
Dynamic: license-file
|
|
52
52
|
|
|
53
53
|
<p align="center">
|
|
54
|
-
<img src="assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
54
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
55
55
|
</p>
|
|
56
56
|
|
|
57
57
|
<p align="center">
|
|
58
|
-
<img src="assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
58
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
59
59
|
</p>
|
|
60
60
|
|
|
61
61
|
<h1 align="center">plotlibs</h1>
|
|
@@ -63,7 +63,7 @@ Dynamic: license-file
|
|
|
63
63
|
|
|
64
64
|
<p align="center">
|
|
65
65
|
<a href="https://github.com/salim-studio/plotlibs"><img src="https://img.shields.io/badge/github-salim--studio%2Fplotlibs-0F172A?logo=github" alt="GitHub"/></a>
|
|
66
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
66
|
+
<img src="https://img.shields.io/badge/version-0.3.1-4F46E5" alt="version"/>
|
|
67
67
|
<img src="https://img.shields.io/badge/speed-~4x_vs_matplotlib-06B6D4" alt="speed"/>
|
|
68
68
|
<img src="https://img.shields.io/badge/deps-numpy_%2B_pillow_only-A3E635" alt="deps"/>
|
|
69
69
|
<img src="https://img.shields.io/badge/license-MIT-FACC15" alt="license"/>
|
|
@@ -142,7 +142,7 @@ pl.plot_images(mnist_images)
|
|
|
142
142
|
|
|
143
143
|
## Visual identity
|
|
144
144
|
|
|
145
|
-
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](assets
|
|
145
|
+
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](https://github.com/salim-studio/plotlibs/tree/main/assets) and [`BRANDING.md`](https://github.com/salim-studio/plotlibs/blob/main/BRANDING.md).
|
|
146
146
|
|
|
147
147
|
Signature theme:
|
|
148
148
|
|
|
@@ -164,7 +164,7 @@ print(pl.style.available())
|
|
|
164
164
|
|
|
165
165
|
## Matplotlib compatibility
|
|
166
166
|
|
|
167
|
-
| matplotlib | plotlibs 0.3.
|
|
167
|
+
| matplotlib | plotlibs 0.3.1 |
|
|
168
168
|
|---|---|
|
|
169
169
|
| `plot / scatter / bar / hist / imshow / pie / fill_between / step / errorbar` | ✅ same signature |
|
|
170
170
|
| `boxplot / violinplot / hist2d / stem / stackplot` | ✅ |
|
|
@@ -210,7 +210,8 @@ plotlibs/ # repo root (package name == repo name)
|
|
|
210
210
|
|
|
211
211
|
## Roadmap
|
|
212
212
|
|
|
213
|
-
- [x] 0.3.
|
|
213
|
+
- [x] 0.3.1 — Fix PyPI banner/logo images (absolute URLs), polish docs
|
|
214
|
+
- [x] 0.3.0 — Rename to **plotlibs**, English docs, brand identity
|
|
214
215
|
- [ ] 0.4.0 — Interactive HTML export (`pl.save_html`), dashboards, RTL/Arabic labels
|
|
215
216
|
- [ ] 0.5.0 — Geo + time-series + sklearn/HF pipeline helpers
|
|
216
217
|
- Suggest ideas: open an issue with `[idea]` at https://github.com/salim-studio/plotlibs/issues
|
|
@@ -225,4 +226,4 @@ python examples/demo_fame.py
|
|
|
225
226
|
|
|
226
227
|
## License
|
|
227
228
|
|
|
228
|
-
MIT — see [LICENSE](LICENSE).
|
|
229
|
+
MIT — see [LICENSE](https://github.com/salim-studio/plotlibs/blob/main/LICENSE).
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
2
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<img src="assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
6
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
<h1 align="center">plotlibs</h1>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
13
13
|
<a href="https://github.com/salim-studio/plotlibs"><img src="https://img.shields.io/badge/github-salim--studio%2Fplotlibs-0F172A?logo=github" alt="GitHub"/></a>
|
|
14
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
14
|
+
<img src="https://img.shields.io/badge/version-0.3.1-4F46E5" alt="version"/>
|
|
15
15
|
<img src="https://img.shields.io/badge/speed-~4x_vs_matplotlib-06B6D4" alt="speed"/>
|
|
16
16
|
<img src="https://img.shields.io/badge/deps-numpy_%2B_pillow_only-A3E635" alt="deps"/>
|
|
17
17
|
<img src="https://img.shields.io/badge/license-MIT-FACC15" alt="license"/>
|
|
@@ -90,7 +90,7 @@ pl.plot_images(mnist_images)
|
|
|
90
90
|
|
|
91
91
|
## Visual identity
|
|
92
92
|
|
|
93
|
-
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](assets
|
|
93
|
+
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](https://github.com/salim-studio/plotlibs/tree/main/assets) and [`BRANDING.md`](https://github.com/salim-studio/plotlibs/blob/main/BRANDING.md).
|
|
94
94
|
|
|
95
95
|
Signature theme:
|
|
96
96
|
|
|
@@ -112,7 +112,7 @@ print(pl.style.available())
|
|
|
112
112
|
|
|
113
113
|
## Matplotlib compatibility
|
|
114
114
|
|
|
115
|
-
| matplotlib | plotlibs 0.3.
|
|
115
|
+
| matplotlib | plotlibs 0.3.1 |
|
|
116
116
|
|---|---|
|
|
117
117
|
| `plot / scatter / bar / hist / imshow / pie / fill_between / step / errorbar` | ✅ same signature |
|
|
118
118
|
| `boxplot / violinplot / hist2d / stem / stackplot` | ✅ |
|
|
@@ -158,7 +158,8 @@ plotlibs/ # repo root (package name == repo name)
|
|
|
158
158
|
|
|
159
159
|
## Roadmap
|
|
160
160
|
|
|
161
|
-
- [x] 0.3.
|
|
161
|
+
- [x] 0.3.1 — Fix PyPI banner/logo images (absolute URLs), polish docs
|
|
162
|
+
- [x] 0.3.0 — Rename to **plotlibs**, English docs, brand identity
|
|
162
163
|
- [ ] 0.4.0 — Interactive HTML export (`pl.save_html`), dashboards, RTL/Arabic labels
|
|
163
164
|
- [ ] 0.5.0 — Geo + time-series + sklearn/HF pipeline helpers
|
|
164
165
|
- Suggest ideas: open an issue with `[idea]` at https://github.com/salim-studio/plotlibs/issues
|
|
@@ -173,4 +174,4 @@ python examples/demo_fame.py
|
|
|
173
174
|
|
|
174
175
|
## License
|
|
175
176
|
|
|
176
|
-
MIT — see [LICENSE](LICENSE).
|
|
177
|
+
MIT — see [LICENSE](https://github.com/salim-studio/plotlibs/blob/main/LICENSE).
|
|
@@ -32,7 +32,7 @@ from . import db as db
|
|
|
32
32
|
from . import eda as eda
|
|
33
33
|
from . import ml as ml
|
|
34
34
|
|
|
35
|
-
__version__ = "0.3.
|
|
35
|
+
__version__ = "0.3.1"
|
|
36
36
|
__brand__ = "plotlibs"
|
|
37
37
|
__all__ = ["Figure", "figure", "subplots", "plt", "pyplot", "style", "rcParams",
|
|
38
38
|
"data", "db", "eda", "ml",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotlibs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: plotlibs — fast, beautiful, matplotlib-compatible plotting with DataFrames, SQL, EDA and ML/DL visuals (numpy + Pillow only)
|
|
5
5
|
Author: salim-studio
|
|
6
6
|
License: MIT
|
|
@@ -51,11 +51,11 @@ Requires-Dist: scikit-learn; extra == "dev"
|
|
|
51
51
|
Dynamic: license-file
|
|
52
52
|
|
|
53
53
|
<p align="center">
|
|
54
|
-
<img src="assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
54
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/banner.svg" alt="plotlibs banner" width="100%"/>
|
|
55
55
|
</p>
|
|
56
56
|
|
|
57
57
|
<p align="center">
|
|
58
|
-
<img src="assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
58
|
+
<img src="https://raw.githubusercontent.com/salim-studio/plotlibs/main/assets/logo.svg" alt="plotlibs logo" width="96"/>
|
|
59
59
|
</p>
|
|
60
60
|
|
|
61
61
|
<h1 align="center">plotlibs</h1>
|
|
@@ -63,7 +63,7 @@ Dynamic: license-file
|
|
|
63
63
|
|
|
64
64
|
<p align="center">
|
|
65
65
|
<a href="https://github.com/salim-studio/plotlibs"><img src="https://img.shields.io/badge/github-salim--studio%2Fplotlibs-0F172A?logo=github" alt="GitHub"/></a>
|
|
66
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
66
|
+
<img src="https://img.shields.io/badge/version-0.3.1-4F46E5" alt="version"/>
|
|
67
67
|
<img src="https://img.shields.io/badge/speed-~4x_vs_matplotlib-06B6D4" alt="speed"/>
|
|
68
68
|
<img src="https://img.shields.io/badge/deps-numpy_%2B_pillow_only-A3E635" alt="deps"/>
|
|
69
69
|
<img src="https://img.shields.io/badge/license-MIT-FACC15" alt="license"/>
|
|
@@ -142,7 +142,7 @@ pl.plot_images(mnist_images)
|
|
|
142
142
|
|
|
143
143
|
## Visual identity
|
|
144
144
|
|
|
145
|
-
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](assets
|
|
145
|
+
Brand: **midnight ink `#0F172A` + indigo `#4F46E5` + cyan `#06B6D4`**, highlights lime `#A3E635` / amber `#FACC15`, background paper `#F8FAFC`. Logo: rounded-square gradient with a white line chart. See [`assets/`](https://github.com/salim-studio/plotlibs/tree/main/assets) and [`BRANDING.md`](https://github.com/salim-studio/plotlibs/blob/main/BRANDING.md).
|
|
146
146
|
|
|
147
147
|
Signature theme:
|
|
148
148
|
|
|
@@ -164,7 +164,7 @@ print(pl.style.available())
|
|
|
164
164
|
|
|
165
165
|
## Matplotlib compatibility
|
|
166
166
|
|
|
167
|
-
| matplotlib | plotlibs 0.3.
|
|
167
|
+
| matplotlib | plotlibs 0.3.1 |
|
|
168
168
|
|---|---|
|
|
169
169
|
| `plot / scatter / bar / hist / imshow / pie / fill_between / step / errorbar` | ✅ same signature |
|
|
170
170
|
| `boxplot / violinplot / hist2d / stem / stackplot` | ✅ |
|
|
@@ -210,7 +210,8 @@ plotlibs/ # repo root (package name == repo name)
|
|
|
210
210
|
|
|
211
211
|
## Roadmap
|
|
212
212
|
|
|
213
|
-
- [x] 0.3.
|
|
213
|
+
- [x] 0.3.1 — Fix PyPI banner/logo images (absolute URLs), polish docs
|
|
214
|
+
- [x] 0.3.0 — Rename to **plotlibs**, English docs, brand identity
|
|
214
215
|
- [ ] 0.4.0 — Interactive HTML export (`pl.save_html`), dashboards, RTL/Arabic labels
|
|
215
216
|
- [ ] 0.5.0 — Geo + time-series + sklearn/HF pipeline helpers
|
|
216
217
|
- Suggest ideas: open an issue with `[idea]` at https://github.com/salim-studio/plotlibs/issues
|
|
@@ -225,4 +226,4 @@ python examples/demo_fame.py
|
|
|
225
226
|
|
|
226
227
|
## License
|
|
227
228
|
|
|
228
|
-
MIT — see [LICENSE](LICENSE).
|
|
229
|
+
MIT — see [LICENSE](https://github.com/salim-studio/plotlibs/blob/main/LICENSE).
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|