Metadata-Version: 2.1
Name: django-highcharts-series
Version: 0.0.1
Summary: HighCharts Creation for django models
Home-page: https://github.com/NamitPandey/PythonPackage/tree/master/Django_HighCharts
Author: NightOwlMorningPanda
Author-email: nightowlmorningpanda@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

## Django Highcharts series

This will create a series for line/column graph just by passing in the data and
the name of the column/columns as a list.

## Installation
Run the following to install:

''' python 
pip install django-highcharts-series
'''

## Usuage

''' python
from django_highcharts_series import LINE_GRAPH

series, category = LINE_GRAPH(data, [column_name], category_column)

'''

