pdit 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pdit/__init__.py ADDED
@@ -0,0 +1,11 @@
1
+ """
2
+ pdit - Interactive Python code editor with inline execution results.
3
+ """
4
+
5
+ from .ipython_executor import IPythonExecutor
6
+
7
+ __version__ = "0.1.0"
8
+
9
+ __all__ = [
10
+ "IPythonExecutor",
11
+ ]