Metadata-Version: 2.1
Name: plotapi
Version: 2.0.0
Summary: Engaging visualisations, made easy.
Home-page: https://plotapi.com
Author: Dr. Shahin Rostami
Author-email: hello@plotapi.com
License: MIT
Description: 
        <h1 align="center">
          <br>
          <a href="https://plotapi.com"><img src="https://plotapi.com/wp-content/uploads/2021/07/plotapi_logo.svg" alt="Plotapi" width="300"></a>
        </h1>
        
        <h4 align="center">Engaging visualisations, made easy.</h4>
        
        <p align="center">
        <a href="https://pypi.org/project/plotapi/"><img src="https://img.shields.io/badge/pypi%20package-1.0-success.svg"></a>
        <a href="https://plotapi.com/pricing/"><img src="https://img.shields.io/badge/license-get-green.svg"></a>
        <a href="https://discord.gg/nsezsyb"><img src="https://img.shields.io/badge/chat-join-7289da.svg"></a>
        <a href="https://jupyter.org"><img src="https://img.shields.io/badge/supports-jupyter-orange.svg"></a>
        <a href="https://www.linkedin.com/in/shahinrostami/"><img src="https://img.shields.io/badge/linked-in-blue.svg"></a>
        </p>
        
        <p align="center">
          <a href="#key-features">Key Features</a> •
          <a href="https://plotapi.com/pricing/">Get Access</a> •
          <a href="#installation">Installation</a> •
          <a href="#usage">Usage</a> •
          <a href="#license">License</a>
        </p>
        
        ![screenshot](https://camo.githubusercontent.com/bc1ec6f2bb8ce41fad9e16ea35a0d12da8bbacb77051504361978a6abd7c4a16/68747470733a2f2f6e6577736c65747465722e64617461637261796f6e2e636f6d2f75706c6f6164732f61635f6475636b735f322e706e67)
        
        ## Key Features
        
        * **Plotapi Chord** - Illustrate inter-relationships between data.
        * **Plotapi Sankey** - Illustrate the flow from one set of values to another.
        * **Plotapi Terminus** - Illustrate distributing something out amongst recipients.
        * **Plotapi Bar Fight** - Illustrate distributing something out amongst recipients.
        * **Plotapi Confusion Matrix** - Illustrate classifier performance interactively.
        * **Upcoming Visualisations** - Access to new visualisations as they are introduced.
        * **Supports Most Programming Languages** - Get started with any language able to make HTTP requests.
        * **First-Class Python Support** - Get started with pip install plotapi
        * **Jupyter Lab Support** - Super-charge your notebooks with inline visualisations.
        * **Beautiful Themes & Fonts** - Select from pre-made beautiful themes, or add your own.
        * **Share or Embed Interactive HTML** - Download and embed your interactive visualisations.
        * **Render to PDF, SVG, or PNG** - Generate high-quality output ready for print.
        * **Record Animation to Video** - Create social media-ready animated visualisations.
        
        ## Get Access
        
        Visit [the website](https://plotapi.com/#pricing) to get access to Plotapi.
        
        ## Installation
        
        Get up and running with Python with the following command.
        
        ```bash
        pip install plotapi
        ```
        
        ## Usage
        
        ### Example - Chord Pro
        
        https://user-images.githubusercontent.com/15690380/126084021-b008b256-2a31-4106-84af-42777ea480d9.mp4
        
        #### Created with Plotapi
        
        ```python
        Chord(matrix, names).show()
        ```
        
        #### The data
        
        ```python
        matrix = [
            [0, 5, 6, 4, 7, 4],
            [5, 0, 5, 4, 6, 5],
            [6, 5, 0, 4, 5, 5],
            [4, 4, 4, 0, 5, 5],
            [7, 6, 5, 5, 0, 4],
            [4, 5, 5, 5, 4, 0],
        ]
        
        names = ["Action", "Adventure", "Comedy", "Drama", "Fantasy", "Thriller"]
        ```
        
        ### Example - Sankey Pro
        
        https://user-images.githubusercontent.com/15690380/126084745-712fd744-b626-429d-85f3-30b11979fe30.mp4
        
        #### Created with Plotapi
        
        ```python
        Sankey(links).show()
        ```
        
        #### The data
        
        ```python
        links = [
            {"source":"Salary", "target":"Me", "value": 40000},
            {"source":"Freelance", "target":"Me", "value": 10000},
            {"source":"Dividends", "target":"Me", "value": 6000},
        
            {"source":"Me", "target":"Rent", "value": 1100*12},
            {"source":"Me", "target":"Food", "value": 300*12},
            {"source":"Me", "target":"Magazine Subscription", "value": 2000},
            {"source":"Me", "target":"Personal Tax", "value": 6000},
            {"source":"Me", "target":"Investments", "value": 30000},
        
            {"source":"Investments", "target":"Facebook", "value": 8000},
            {"source":"Investments", "target":"Amazon", "value": 7000},
            {"source":"Investments", "target":"Apple", "value": 6000},
            {"source":"Investments", "target":"Netflix", "value": 5000},
            {"source":"Investments", "target":"Google", "value": 4000},
        ]
        ```
        
        ## License
        
        MIT
        
        ---
        
        > [plotapi.com](https://plotapi.com) &nbsp;&middot;&nbsp;
        > GitHub [@shahinrostami](https://github.com/shahinrostami) &nbsp;&middot;&nbsp;
        > Twitter [@shahinrostami](https://twitter.com/shahinrostami)
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
