Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vdayanand/jupyter2pluto.jl
Convert a Jupyter notebook to Pluto notebook (vice versa)
https://github.com/vdayanand/jupyter2pluto.jl
converter julia jupyter jupyter-notebook pluto pluto-notebooks
Last synced: 5 days ago
JSON representation
Convert a Jupyter notebook to Pluto notebook (vice versa)
- Host: GitHub
- URL: https://github.com/vdayanand/jupyter2pluto.jl
- Owner: vdayanand
- License: mit
- Created: 2020-07-31T08:10:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T21:48:31.000Z (10 months ago)
- Last Synced: 2024-09-09T23:18:25.435Z (2 months ago)
- Topics: converter, julia, jupyter, jupyter-notebook, pluto, pluto-notebooks
- Language: Julia
- Homepage:
- Size: 33.2 KB
- Stars: 38
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jupyter2Pluto
Jupyter2Pluto is a Julia package that allows you to convert Jupyter notebooks into [Pluto.jl](https://github.com/fonsp/Pluto.jl) notebooks and vice versa.
## InstallationYou can install Jupyter2Pluto using the Julia package manager. Open a Julia REPL and run the following commands:
```julia
using Pkg
Pkg.add("Jupyter2Pluto")
```## Converting Jupyter to Pluto
To convert a Jupyter notebook into a Pluto notebook, use the following Julia code snippet after installing Jupyter2Pluto:
```julia
using Jupyter2Pluto
jupyter2pluto("sample.ipynb")
```This command will create a new Pluto notebook named `sample.jl` in your current working directory.
## Converting Pluto to Jupyter
If you have a Pluto notebook and want to convert it to a Jupyter notebook, simply use the following Julia code:
```julia
pluto2jupyter("sample.jl")
```
This command will create a new Jupyter notebook named `sample.ipynb` in your current working directory.
## Contributions
If you'd like to improve the package, fix issues, or add new features, please consider contributing to the project.