Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

ipynb-py-convert

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipynb-py-convert - npm Package Compare versions

Comparing version
0.4.4
to
0.4.5
+2
-2
ipynb_py_convert.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: ipynb-py-convert
Version: 0.4.4
Version: 0.4.5
Summary: Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter .ipynb notebooks and vice versa

@@ -17,3 +17,3 @@ Home-page: https://github.com/kiwi0fruit/ipynb-py-convert

**ipynb-py-convert** is a forks of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).
**ipynb-py-convert** is a fork of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).

@@ -20,0 +20,0 @@

@@ -16,3 +16,3 @@ import json

if cell_type == 'markdown':
result.append("%s'''\n%s\n'''" %
result.append('%s"""\n%s\n"""'%
(header_comment, ''.join(cell['source'])))

@@ -39,2 +39,5 @@

cell_type = 'markdown'
elif chunk.startswith('"""'):
chunk = chunk.strip('"\n')
cell_type = 'markdown'

@@ -41,0 +44,0 @@ cell = {

Metadata-Version: 2.1
Name: ipynb-py-convert
Version: 0.4.4
Version: 0.4.5
Summary: Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter .ipynb notebooks and vice versa

@@ -17,3 +17,3 @@ Home-page: https://github.com/kiwi0fruit/ipynb-py-convert

**ipynb-py-convert** is a forks of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).
**ipynb-py-convert** is a fork of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).

@@ -20,0 +20,0 @@

@@ -9,3 +9,3 @@ # ipynb-py-convert

**ipynb-py-convert** is a forks of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).
**ipynb-py-convert** is a fork of the [vscode-ipynb-py-converter](https://github.com/nojvek/vscode-ipynb-py-converter).

@@ -12,0 +12,0 @@

@@ -12,3 +12,3 @@ from setuptools import setup

packages=['ipynb_py_convert'],
version='0.4.4',
version='0.4.5',
description='Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter .ipynb notebooks and vice versa',

@@ -15,0 +15,0 @@ long_description=long_description,