Metadata-Version: 2.1
Name: panel-highcharts
Version: 20210404.1
Summary: A python package enabling you to use HighCharts with Jupyter, HoloViz Panel and
    the rest of the tools you know and love
Home-page: https://github.com/MarcSkovMadsen/panel-highcharts
Author: Marc Skov Madsen
Author-email: marc.skov.madsen@gmail.com
License: MIT
Description: # &#128200; Panel HighCharts
        
        THIS IS APLHA SOFTWARE. I BELIEVE THINGS WORK, BUT THE PACKAGE NEEDS TO BE USED TO TELL. AND USAGE MIGHT ALSO CHANGE THE API.
        
        The `panel-highcharts` package makes it easy to use [Highcharts](https://www.highcharts.com/) from Python for exploratory analysis in a Jupyter Notebook or as a [Panel](https://panel.holoviz.org) Web App.
        
        ![Panel HighCharts Logo](https://raw.githubusercontent.com/MarcSkovMadsen/panel-highcharts/main/assets/images/panel-highcharts-logo.png)
        
        ## License
        
        The `panel-highcarts` python package and repository is open source and free to use (MIT License), however **Highcharts itself requires a license for commercial use**. For more info see the Highcharts license [FAQs](https://shop.highsoft.com/faq).
        
        ## Installation
        
        With `pip`
        
        ```bash
        pip install panel-highcharts
        ```
        
        ## Usage
        
        From with a Jupyter Notebook
        
        ```python
        import panel_highcharts as ph
        
        import panel as pn
        pn.extension('highchart')
        ```
        
        ```python
        configuration = {
            "title": {"text": "HighChart Pane"},
            "series": [
                {
                    "name": "series1",
                    "data": [1, 2, 3, 4, 5],
                }
            ]
        }
        ```
        
        ```python
        ph.HighChart(object=configuration, sizing_mode="stretch_width")
        ```
        
        ![Basic Example](assets/images/panel-highcharts-basic-example.png)
        
        ## Reference Guide
        
        - [HighChart Reference Guide](https://github.com/MarcSkovMadsen/panel-highcharts/blob/main/examples/HighChart.ipynb)
        
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/marcskovmadsen/panel-highcharts/HEAD?urlpath=lab/tree/examples/HighChart.ipynb)
        
        https://github.com/marcskovmadsen/panel-highcharts/blob/HEAD/examples/HighChart.ipynb
        
        ## Examples
        
        - [Networkgraph](https://github.com/MarcSkovMadsen/panel-highcharts/blob/main/examples/Network.ipynb)
        
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/marcskovmadsen/panel-highcharts/HEAD?urlpath=lab/tree/examples/Network.ipynb)
        
        ## Additional Resources
        
        You can find more inspiration via the links below.
        
        - [Highcharts](https://www.highcharts.com/blog/products/highcharts/)
          - [Demos](https://www.highcharts.com/demo)
          - [API docs](https://api.highcharts.com/highcharts/)
        - [Panel](https://panel.holoviz.org)
        - [Awesome Panel](https://awesome-panel.org)
        
        ## Roadmap
        
        When I get the time I would like to
        
        - Get it working in Jupyter Notebook (Works in Jupyter Lab and Panel app).
        - Deploy to Binder
        - Add more examples
        - Add some apps for Binder via jupyter-server-proxy
        - Add badges for 100% test coverage etc.
        - Distribute as conda package
        - Support [HighStock](https://www.highcharts.com/demo/stock)
        - Support [HighMap](https://www.highcharts.com/demo/maps)
        - Support [HighGantt](https://www.highcharts.com/blog/products/gantt/)
        - Support [HighEditor](https://www.highcharts.com/products/highcharts-editor/)
        
        ## Change Log
        
        - 20210404: Can now display in Classic Notebook
        - 20210403: First Release to PyPi. Works in Jupyter Lab and Panel App.
        
Platform: Windows
Platform: Mac OS X
Platform: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Office/Business
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: examples
Provides-Extra: tests
Provides-Extra: recommended
Provides-Extra: doc
Provides-Extra: all
