Metadata-Version: 2.4
Name: arrowshader
Version: 0.1.1
Summary: Visualize large arrow tables
Maintainer-email: Christopher Akiki <christopher.akiki@gmail.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pyarrow
Provides-Extra: dev
Requires-Dist: datasets; extra == 'dev'
Requires-Dist: polars; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# Arrowshader

Arrow-based huge scatterplot library, inspired by datashader.

```python
import arrowshader as ash

c = ash.Canvas(width=600, height=600, x_range=..., y_range=...)
c.plot(your_dataset, "x_col_name", "y_col_name")
```
