Metadata-Version: 2.1
Name: mplex
Version: 0.0.4
Summary: A matplotlib extension
Project-URL: Homepage, https://github.com/tkclam/mplex
Author-email: Thomas Ka Chung Lam <thomas.lam@epfl.ch>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

[![PyPI Latest Release](https://img.shields.io/pypi/v/mplex.svg)](https://pypi.org/project/mplex/)
# mplex
A matplotlib extension.

## Installation
```sh
pip install mplex
```

## Examples
```python
from mplex import Grid
# subplots with uniform size and spacing
g = Grid((30, 20), (2, 3), space=(15, 10))
# subplots with non-uniform size and spacing
g = Grid(([35, 20, 35], [10, 30]), space=([20, 10], 10))
```
![](examples/figures/uniform.svg)

![](examples/figures/non_uniform.svg)

[More exaples](https://github.com/tkclam/mplex/tree/main/examples)
