https://github.com/arnavrneo/getipynb
https://github.com/arnavrneo/getipynb
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arnavrneo/getipynb
- Owner: arnavrneo
- License: mit
- Created: 2021-12-30T05:55:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-30T15:08:20.000Z (over 3 years ago)
- Last Synced: 2025-02-24T20:39:25.421Z (4 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# getipynb - A python module to convert .py to .ipynbgetipynb is a python module which aims to solve the very common problem of opening .py files in jupyter notebook in an executable form. It ends the problem of copy and pasting the whole of your .py code into the jupyter notebooks.
# Installation
## Dependencies
Python (>= v3.7)
## User Installation
The easiest way to install is by using `pip`:
`pip install getipynb`
## Usage
To use it, open the python terminal and type:
`from ipack import getipynb`
And then:
`getipynb.convert(file_address)`
It will create the jupyter equivalent notebook in the same directory.