Metadata-Version: 1.1
Name: nb-black
Version: 1.0.7
Summary: A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black.
Home-page: https://github.com/dnanhkhoa/nb_black
Author: Khoa Duong
Author-email: dnanhkhoa@live.com
License: MIT
Description: # nb_black
        
        [![PyPI](https://img.shields.io/pypi/v/nb_black.svg)]()
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/nb_black.svg)]()
        
        A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using **Black**.
        
        Please note that since the **Black** package only supports Python 3.6+, so **YAPF** package will
        be used for the lower versions. If you edit the code while running the cell, the formatting is
        not submitted to the Jupyter notebook and instead silently suppressed, so you have to stick with
        the edited, but unformatted code.
        
        ## Installation
        
        You can install this package using [pip](http://www.pip-installer.org):
        
        ```
        $ [sudo] pip install nb_black
        ```
        
        ## Usage
        
        For Jupyter Notebook:
        
        ```
        %load_ext nb_black
        ```
        
        For Jupyter Lab:
        
        ```
        %load_ext lab_black
        ```
        
        Just put this code into the first cell in your Notebook, and that's all. :)
        
Keywords: black-formatter black-beautifier black jupyterlab-extension jupyter-notebook-extension
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
