Metadata-Version: 2.1
Name: pyapex
Version: 0.0.2
Summary: Create interactive html charts
Home-page: https://github.com/nicodemus-opon/pyapex
Author: nicodemus opon
Author-email: hello@nicopon.me
License: MIT
Download-URL: https://github.com/nicodemus-opon/pyapex/archive/refs/tags/v_0.0.2.tar.gz
Description: Create interactive html charts in python
        powered by js library [Apex Charts](https://apexcharts.com/)
        
        installation
        
            pip install pyapex
        usage
        
        ```
        from pyapex import  Chart
        
        plt  =  Chart(type="candlestick")
        
        plt.set_series([{
        
        "data": [
        
        [1538856000000, 6593.34, 6600, 6582.63, 6600],
        
        [1538856900000, 6595.16, 6604.76, 6590.73, 6593.86]
        
        ]
        
        }])
        
          
        
        plt.set_xaxis({"type": 'datetime'})
        
        plt.show()
        ```
        
        
Keywords: chart,plotting
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
