Metadata-Version: 2.1
Name: panel-highcharts
Version: 20210403.1.4
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: # 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.
        
        <div align="center" style="margin-right:10%;margin-left:10%; max-height: 250px" >
            <a href="https://panel.holoviz.org"><img
            alt="Panel"
            src="https://raw.githubusercontent.com/MarcSkovMadsen/panel-highcharts/main/assets/images/panel_logo.png"
            style="max-width:40%;height:255px;margin-right:20px"></a>
            <a href="https://www.highcharts.com/blog/products/highcharts/"><img
            alt="HighCharts"
            src="https://raw.githubusercontent.com/MarcSkovMadsen/panel-highcharts/main/assets/images/highcharts_logo.png"
            style="max-width:40%;height:200px"
            ></a>
        </div>
        
        ## 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)
        
        ## Examples
        
        - [Networkgraph](https://github.com/MarcSkovMadsen/panel-highcharts/blob/main/examples/Network.ipynb)
        
        ## Roadmap
        
        - Deploy to Binder
        - Add more examples
        - Add some apps (for Binder)
        - 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
        
        - 20210403: First Release to PyPi
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
