Metadata-Version: 2.1
Name: pdfplot
Version: 0.0.1
Summary: Organize and version your matplotlib figures as PDFs
Home-page: https://github.com/sauhaardac/pdfplot
Author: Sauhaarda Chowdhuri
Author-email: sauhaarda@mit.edu
License: UNKNOWN
Description: https://img.shields.io/pypi/l/pdfplot
        
        # pdfplot
        
        pdfplot is a Python library for easily managing your matplotlib figures as PDF files.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install pdfplot.
        
        ```bash
        pip install pdfplot
        ```
        
        ## Usage
        
        ```python
        import pdfplot
        
        fig, ax = pdfplot.make_fig()
        ax.plot([0, 1, 2, 3], [4, 3, 2, 1])
        ax.set_title('First Plot plot!')
        
        fig, ax = pdfplot.make_fig()
        ax.plot([0, 1, 2, 3], [1, 2, 3, 4])
        ax.set_title('Second plot!')
        
        pdfplot.save_figs(folder='figures')
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        ## License
        [MIT](LICENSE)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Description-Content-Type: text/markdown
