pandas-render 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.
- {pandas_render-0.3.0 → pandas_render-0.3.1}/CHANGELOG.md +11 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/PKG-INFO +9 -5
- {pandas_render-0.3.0 → pandas_render-0.3.1}/README.md +8 -4
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/__init__.py +1 -1
- {pandas_render-0.3.0 → pandas_render-0.3.1}/.gitignore +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/CONTRIBUTING.md +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/LICENSE +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/assets/pandas-render.png +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/base/Component.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/base/Element.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/base/__init__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/cli/__init__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/cli/__main__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/components/Toggle.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/components/__init__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/elements/Image.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/elements/Link.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/elements/__init__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/extensions/DataFrame.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/extensions/Series.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/extensions/__init__.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pandas_render/utils.py +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/pyproject.toml +0 -0
- {pandas_render-0.3.0 → pandas_render-0.3.1}/uv.lock +0 -0
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.3.1](https://github.com/nok/pandas-render/compare/v0.3.0...v0.3.1) (2025-04-21)
|
4
|
+
|
5
|
+
|
6
|
+
### Documentation
|
7
|
+
|
8
|
+
* Add support section ([4e0cea3](https://github.com/nok/pandas-render/commit/4e0cea3c4ff6357d9245ac61ef3fbb447b081dfd))
|
9
|
+
* Enclose installation commands in quotes ([b97c250](https://github.com/nok/pandas-render/commit/b97c2500598ef120897f56fad6b1e57efed290f3))
|
10
|
+
* Remove installation instructions and repository links from examples ([89fc056](https://github.com/nok/pandas-render/commit/89fc0569c36036b48b6ca6096816e183876e0378))
|
11
|
+
* Remove license badge ([f5e8483](https://github.com/nok/pandas-render/commit/f5e84835f745c8a1c447d03a655beea1293b3095))
|
12
|
+
* Use full image url ([d14fec3](https://github.com/nok/pandas-render/commit/d14fec36c49242c3966a68bf3c657c3e9cdbfa38))
|
13
|
+
|
3
14
|
## 0.3.0 (2025-04-16)
|
4
15
|
|
5
16
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pandas-render
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.1
|
4
4
|
Summary: A pandas extension for rendering DataFrames
|
5
5
|
Project-URL: Repository, https://github.com/nok/pandas-render
|
6
6
|
Project-URL: Issues, https://github.com/nok/pandas-render/issues
|
@@ -23,7 +23,7 @@ Requires-Dist: polars>=1.0.0; extra == 'polars'
|
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
|
25
25
|
<p align="center">
|
26
|
-
<img src="/assets/pandas-render.png" alt="pandas-render" height=130>
|
26
|
+
<img src="https://raw.githubusercontent.com/nok/pandas-render/refs/heads/main/assets/pandas-render.png" alt="pandas-render" height=130>
|
27
27
|
</p>
|
28
28
|
|
29
29
|
<h1 align="center">pandas-render</h1>
|
@@ -34,7 +34,6 @@ Description-Content-Type: text/markdown
|
|
34
34
|
|
35
35
|

|
36
36
|
[](https://ko-fi.com/nok)
|
37
|
-
[](LICENSE)
|
38
37
|
|
39
38
|
</div>
|
40
39
|
|
@@ -42,11 +41,11 @@ Description-Content-Type: text/markdown
|
|
42
41
|
## Installation
|
43
42
|
|
44
43
|
```bash
|
45
|
-
pip install pandas-render[pandas]
|
44
|
+
pip install "pandas-render[pandas]"
|
46
45
|
```
|
47
46
|
|
48
47
|
```bash
|
49
|
-
pip install pandas-render[polars]
|
48
|
+
pip install "pandas-render[polars]"
|
50
49
|
```
|
51
50
|
|
52
51
|
|
@@ -89,6 +88,11 @@ List of all notebooks with examples:
|
|
89
88
|
- [Components](examples/02_components.ipynb)
|
90
89
|
|
91
90
|
|
91
|
+
## Support
|
92
|
+
|
93
|
+
Do you like this project? Fuel it with a ☕ coffee on [Ko-fi](https://ko-fi.com/nok). Every little bit helps and means a lot!
|
94
|
+
|
95
|
+
|
92
96
|
## Contributing
|
93
97
|
|
94
98
|
We encourage you to contribute to this project! Please check out the [contributing guidelines](CONTRIBUTING.md) about how to proceed.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<p align="center">
|
2
|
-
<img src="/assets/pandas-render.png" alt="pandas-render" height=130>
|
2
|
+
<img src="https://raw.githubusercontent.com/nok/pandas-render/refs/heads/main/assets/pandas-render.png" alt="pandas-render" height=130>
|
3
3
|
</p>
|
4
4
|
|
5
5
|
<h1 align="center">pandas-render</h1>
|
@@ -10,7 +10,6 @@
|
|
10
10
|
|
11
11
|

|
12
12
|
[](https://ko-fi.com/nok)
|
13
|
-
[](LICENSE)
|
14
13
|
|
15
14
|
</div>
|
16
15
|
|
@@ -18,11 +17,11 @@
|
|
18
17
|
## Installation
|
19
18
|
|
20
19
|
```bash
|
21
|
-
pip install pandas-render[pandas]
|
20
|
+
pip install "pandas-render[pandas]"
|
22
21
|
```
|
23
22
|
|
24
23
|
```bash
|
25
|
-
pip install pandas-render[polars]
|
24
|
+
pip install "pandas-render[polars]"
|
26
25
|
```
|
27
26
|
|
28
27
|
|
@@ -65,6 +64,11 @@ List of all notebooks with examples:
|
|
65
64
|
- [Components](examples/02_components.ipynb)
|
66
65
|
|
67
66
|
|
67
|
+
## Support
|
68
|
+
|
69
|
+
Do you like this project? Fuel it with a ☕ coffee on [Ko-fi](https://ko-fi.com/nok). Every little bit helps and means a lot!
|
70
|
+
|
71
|
+
|
68
72
|
## Contributing
|
69
73
|
|
70
74
|
We encourage you to contribute to this project! Please check out the [contributing guidelines](CONTRIBUTING.md) about how to proceed.
|
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
|
File without changes
|