Metadata-Version: 2.1
Name: ipysketch-lite
Version: 0.0.1
Summary: Simple sketching tool for jupyter notebooks
Author-email: Matthew Taylor <matthew.taylor.andre@gmail.com>
Project-URL: Homepage, https://github.com/MatthewAndreTaylor/ipysketch_lite
Keywords: jupyter,sketch,drawing,canvas
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: utils
Requires-Dist: numpy ; extra == 'utils'
Requires-Dist: pillow ; extra == 'utils'

# ipysketch_lite

A lite sketching utility for python notebooks, no sockets or extra dependencies 🎨

(no extra widget code)

Make sketches right in your notebook then use the sketch in your python code.

## Quickstart

Start drawing a quick sketch in your notebook like this

```py
from ipysketch_lite import Sketch

sketch = Sketch()
```

Then add a new cell to retrieve the sketch in python

```py
print(sketch.get_output())

import matplotlib.pyplot as plt

plt.imshow(sketch.get_output_array())
```

![example sketch](examples/sketches/example.png)

Sketches get updated in cells after draw updates

This means you can continue your sketch and get the new updated outputs
