Metadata-Version: 2.1
Name: PlotMyGoogleSheet28
Version: 0.0.1
Summary: This package will help you to plot a chart betweem any two columns from google sheet
Home-page: UNKNOWN
Author: Aditya Sisodiya
Author-email: adityasisodiya2803@gmail.com
License: MIT
Description: This package allows all user to plot a graph between any two columns of your google sheet.<br/><br/>
        
        # Installation using pip:<br/>
        ```
            pip install PlotMyGoogleSheet28
        ```
        
        # Methods Available:<br/>
            + .get_cols() : This method will return a list of all column lables present in the selected google sheet.
        
            + .plot(x, y) : This method will generate a graph between column1(x_axis) and column2(y_axis) and will save it as an image file on the local disk.
        
        # Code Example<br/>
        ```
            from PlotMyGoogleSheet28 import *
        
            object = MyFirstPlot(url)
        
            # Method 1
            columns = object.get_cols()
        
            # Method 2
            object.plot(x_axis_column_name, y_axis_column_name)
        ```
        
        
        
        
        Change Log
        ===========
        
        0.0.1 (15/01/2021)
        ------------------------
        - First Release
Keywords: Graph Google-Sheet
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Description-Content-Type: text/markdown
