Metadata-Version: 2.1
Name: jupyterblack
Version: 0.3.0
Summary: Format code cells in Jupyter Notebook and JupyterLab using black.
Home-page: https://github.com/irahorecka/jupyterblack
Author: Ira Horecka
Author-email: ira89@icloud.com
License: MIT
Description: # jupyterblack
        [![continuous-integration](https://github.com/cristianmatache/jupyterblack/workflows/continuous-integration/badge.svg?branch=master)](https://github.com/cristianmatache/jupyterblack/actions)
        [![Python 3.8+](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/)
        [![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
        ![pylint Score](https://mperlet.github.io/pybadge/badges/10.svg)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        [![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=cristianmatache/jupyterblack)](https://dependabot.com)
        
        [![pypiv](https://img.shields.io/pypi/v/jupyterblack.svg)](https://pypi.python.org/pypi/jupyterblack)
        
        [comment]: <> ([![pyv]&#40;https://img.shields.io/pypi/pyversions/jupyterblack.svg&#41;]&#40;https://pypi.python.org/pypi/jupyterblack&#41;)
        [![Licence](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/irahorecka/jupyterblack/master/LICENSE)
        ![CodeSize](https://img.shields.io/github/languages/code-size/cristianmatache/jupyterblack)
        
        Format code cells in Jupyter Notebook and JupyterLab using [black](https://github.com/ambv/black).
        
        <p align="center">
            <img src="documentation/jupyterblack_demo.gif">
        </p>
        
        ## It's as simple as calling jblack
        
        ```bash
        $ jblack my_notebook.ipynb
        ```
        
        ## Install jupyterblack from the command line with pip
        
        ```bash
        $ pip install jupyterblack
        ```
        
        ## Usage
        
        ```bash
        # Format to black's default line length of 88.
        $ jblack notebook.ipynb
        
        # Customize your own line length to 70.
        $ jblack -l 70 notebook.ipynb
        
        # Format three .ipynb files to default line length.
        $ jblack notebook_1.ipynb notebook_2.ipynb notebook_3.ipynb
        
        # Show help.
        $ jblack -h
        ```
        
        ## Contributing
        
        ### Bug reports and feature requests
        
        Please use the [issues tracker](https://github.com/irahorecka/jupyterblack/issues) to report bugs or submit feature requests.
        
        ### Development
        
        Pull requests are very welcome.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
