Metadata-Version: 2.1
Name: python3-nbctl
Version: 1.0.0
Summary: convert jupyter *.ipynb file to markdown files
Home-page: https://www.xiexianbin.cn/
Author: xiexianbin
Author-email: me@xiexianbin.cn
Project-URL: Bug Tracker, https://github.com/x-actions/python3-nbctl/issues
Project-URL: Source Code, https://github.com/x-actions/python3-nbctl
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: pbr (>=5.5.0)
Requires-Dist: setuptools (==65.1.1)
Requires-Dist: nbconvert (==7.6.0)
Requires-Dist: nbformat (==5.9.0)

# python3-nbctl

将ipynb文件转化为markdown文件/convert jupyter *.ipynb file to markdown files

[![PyPI-python3-nbctl](https://img.shields.io/pypi/v/python3-nbctl.svg?maxAge=3600)](https://pypi.org/project/python3-nbctl/)

Github Actions for [Container ipynb to markdown](https://github.com/marketplace/actions/nbctl)

## How to Use by Github Actions

```
      - name: convert jupyter *.ipynb file to markdown
        uses: x-actions/python3-nbctl@v1
        with:
          script: >
            find <path> -type f -name "*.ipynb" | grep -v ".ipynb_checkpoints" | xargs -I{} nbctl --input {} --force --debug
```

## Dev and Test

- local run

```
# install
pip3 install -r requirements.txt
python3 setup.py install

# or
pip3 install python3-nbctl
```

- help

```
nbctl --help
```

