Metadata-Version: 2.1
Name: ipynb-conversor
Version: 0.0.1
Summary: A package for getting python code from jupyter notebook.
Home-page: https://github.com/vitia-fritelle/ipynb_converter
Author: Vitia Fritelle (Vitor Guilherme Coutinho de Barros Junior)
Author-email: <vitorjunior448@gmail.com>
License: MIT
Keywords: python,jupyter notebook,converter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Framework :: Jupyter
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt


# Jupyter notebook to Python file conversor

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)



<!-- DOCS-IGNORE:start -->

## Contributors



Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):



<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->

<!-- prettier-ignore-start -->

<!-- markdownlint-disable -->

<table>

  <tr>

    <td align="center"><a href="https://github.com/vitia-fritelle"><img src="https://avatars.githubusercontent.com/u/71563179" width="100px;" alt=""/><br /><sub><b>Vitor Junior</b></sub></a><br /><a href="https://github.com/organizar-bot/commits?author=vitia-fritelle" title="Code">💻</a></td>

  </tr>

</table>



<!-- markdownlint-restore -->

<!-- prettier-ignore-end -->



## Examples of How to Use It



On a Python program:

```python

    from ipynb_converter import ipynb_converter 

    file_path = "jupyter_notebook.ipynb"

    save_name = "python_file.py" #optional

    ipynb_converter(file_path, save_name)

```

On command line:



    py -m ipynb_converter "jupyter_notebook.ipynb" "python_file.py"

or 



    py -m ipynb_converter "jupyter_notebook.ipynb" 



<!-- ALL-CONTRIBUTORS-LIST:END -->



This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!



<!-- DOCS-IGNORE:end -->



