Metadata-Version: 2.1
Name: pncl
Version: 1.0.0
Summary: UNKNOWN
Home-page: https://github.com/danielegrattarola/pncl
Author: Daniele Grattarola
Author-email: daniele.grattarola@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: aiohttp-sse
Requires-Dist: numpy
Requires-Dist: requests

# Welcome to Pencil

Pencil is a small Python library to create plots in the browser using [Charts.js](https://chartjs.org).

Pencil makes it easy to draw your charts in a dynamic and responsive grid, and lets you update your plots live as the data is created. 

With Pencil, you can draw seven different types of charts: 

- Line
- Bar
- Radar
- Pie
- Doughnut
- Polar area
- Scatter

Read the documentation [here](https://danielegrattarola.github.io/pncl).

## Installation

Pencil is available on the Python Package Index and can be installed with `pip`:

```sh
$ pip install pncl
```

If you want, you can also install the package from source with:

```sh
$ git clone https://github.com/danielegrattarola/pncl.git
$ cd pncl
$ pip install .
```

Pencil requires Python 3.6.5+, and works on Linux and MacOS.

## Contributing

Feel free to open an issue or a pull request if you find any problems with the package or if you want to add a new functionality to Pencil.


