Metadata-Version: 2.1
Name: numpy-html
Version: 0.0.3
Summary:  A simple table renderer for numpy arrays. Provides a rich display hook for use with Jupyter Lab / Notebook.
Home-page: https://github.com/agoose77/numpy-html
Author: Angus Hollands
Author-email: goosey15@gmail.com
License: MIT
Description: # numpy-html
        A simple table renderer for numpy arrays. Provides a rich display hook for use with Jupyter Lab / Notebook. Inspired by [xtensor](https://github.com/QuantStack/xtensor).
        
        ## Installation
        `pip install numpy-html`
        
        ## Example inside Jupyter
        ```python
        import numpy_html
        import numpy as np
        
        np.set_printoptions(threshold=5, edgeitems=2)
        np.arange(49).reshape(7, 7)
        ```
        |  0 	|  1 	| ⋯ 	|  5 	|  6 	|
        |:--:	|:--:	|:-:	|:--:	|:--:	|
        |  7 	|  8 	| ⋯ 	| 12 	| 13 	|
        |  ⋮ 	|  ⋮ 	| ⋱ 	|  ⋮ 	|  ⋮ 	|
        | 35 	| 36 	| ⋯ 	| 40 	| 41 	|
        | 42 	| 43 	| ⋯ 	| 47 	| 48 	|
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Jupyter
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
