Metadata-Version: 2.1
Name: matrixview
Version: 0.0.4
Summary: reveal matrix or list
Home-page: https://github.com
Author: eeshikm
Author-email: eeshikm@163.com
License: MIT
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: keyboard

A script that displays a list or matrix.
Case:
"
import matrixview as mv
import numpy as np
a = np.ones((3, 4))
mv.view(a)
"
You can double-click on the displayed element to see the exact value.
You can also use the right mouse button to draw.
