Metadata-Version: 1.2
Name: chartify
Version: 2.2.0
Summary: Python library to make plotting simpler for data scientists
Home-page: https://github.com/spotify/chartify
Author: 
Author-email: chalpert@spotify.com
License: UNKNOWN
Description: Chartify
        ========
        
        |status|  |release|  |python|
        
        .. |status| image:: https://img.shields.io/badge/Status-Beta-blue.svg
        .. |release| image:: https://img.shields.io/badge/Release-2.2.0-blue.svg
        .. |python| image:: https://img.shields.io/badge/Python-3.6-blue.svg
        
        Chartify is a Python library that aims to make it as easy as possible for data scientists to create charts.
        
        Why use Chartify?
        -----------------
        
        - Consistent input data format: Spend less time transforming data to get your charts to work. All plotting functions use a consistent tidy input data format.
        - Smart default styles: Create pretty charts with very little customization required.
        - Simple API: We've attempted to make to the API as intuitive and easy to learn as possible.
        - Flexibility: Chartify is built on top of `Bokeh <http://bokeh.pydata.org/en/latest/>`_, so if you do need more control you can always fall back on Bokeh's API.
        
        Examples
        --------
        
        .. image:: /docs/_static/chartify1.png
        .. image:: /docs/_static/chartify2.png
        .. image:: /docs/_static/chartify3.png
        .. image:: /docs/_static/chartify4.png
        .. image:: /docs/_static/chartify5.png
        .. image:: /docs/_static/chartify6.png
        
        `See this notebook for more examples! </examples/Examples.ipynb>`_.
        
        Installation
        ------------
        
        1. Chartify can be installed via pip:
        
        ``pip3 install chartify``
        
        2. Install chromedriver requirement:
            - Install google chrome.
            - Download the appropriate version of chromedriver for your OS `here <https://sites.google.com/a/chromium.org/chromedriver/downloads>`_.
            - Copy the executable file to a directory within your PATH.
        	- View directorys in your PATH variable: ``echo $PATH``
        	- Copy chromedriver to the appropriate directory, e.g.: ``cp chromedriver /usr/local/bin``
        
        Getting started
        ---------------
        
        This `tutorial notebook </examples/Chartify%20Tutorial.ipynb>`_ is the best place to get started with a guided tour of the core concepts of Chartify.
        
        From there, check out the `example notebook </examples/Examples.ipynb>`_ for a list of all the available plots.
        
        Code of Conduct
        ---------------
        
        This project adheres to the `Open Code of Conduct <https://github.com/spotify/code-of-conduct/blob/master/code-of-conduct.md>`_. By participating, you are expected to honor this code.
        
        Contributing
        ------------
        
        `See the contributing docs <CONTRIBUTING.rst>`_.
        
        
        =======
        History
        =======
        
        2.2.0 (2018-09-17)
        ------------------
        
        * First release on PyPI.
        
Keywords: chartify
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.5,<4
