liveConsole 1.7.3__tar.gz → 1.7.5__tar.gz

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.

Potentially problematic release.


This version of liveConsole might be problematic. Click here for more details.

Files changed (27) hide show
  1. {liveconsole-1.7.3/src/liveConsole.egg-info → liveconsole-1.7.5}/PKG-INFO +4 -1
  2. {liveconsole-1.7.3 → liveconsole-1.7.5}/README.md +3 -0
  3. {liveconsole-1.7.3 → liveconsole-1.7.5}/pyproject.toml +1 -1
  4. liveconsole-1.7.5/src/liveConsole/__init__.py +1 -0
  5. {liveconsole-1.7.3 → liveconsole-1.7.5/src/liveConsole.egg-info}/PKG-INFO +4 -1
  6. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/liveConsole.egg-info/SOURCES.txt +1 -0
  7. liveconsole-1.7.5/src/liveConsole.egg-info/top_level.txt +2 -0
  8. liveconsole-1.7.5/src/pysole/__init__.py +4 -0
  9. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/utils.py +5 -2
  10. liveconsole-1.7.3/src/liveConsole.egg-info/top_level.txt +0 -1
  11. liveconsole-1.7.3/src/pysole/__init__.py +0 -1
  12. {liveconsole-1.7.3 → liveconsole-1.7.5}/LICENSE +0 -0
  13. {liveconsole-1.7.3 → liveconsole-1.7.5}/MANIFEST.in +0 -0
  14. {liveconsole-1.7.3 → liveconsole-1.7.5}/setup.cfg +0 -0
  15. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/liveConsole.egg-info/dependency_links.txt +0 -0
  16. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/liveConsole.egg-info/entry_points.txt +0 -0
  17. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/liveConsole.egg-info/requires.txt +0 -0
  18. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/__main__.py +0 -0
  19. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/commandHistory.py +0 -0
  20. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/helpTab.py +0 -0
  21. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/liveConsole.py +0 -0
  22. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/mainConsole.py +0 -0
  23. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/pysole.py +0 -0
  24. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/settings.json +0 -0
  25. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/styledTextbox.py +0 -0
  26. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/suggestionManager.py +0 -0
  27. {liveconsole-1.7.3 → liveconsole-1.7.5}/src/pysole/themes.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.7.3
3
+ Version: 1.7.5
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -16,6 +16,9 @@ Dynamic: license-file
16
16
  ## You can finally test your code in real time without using idle!
17
17
  ### If you found [this repository](https://github.com/TzurSoffer/Pysole) useful, please give it a ⭐!.
18
18
 
19
+ ## Showcase (click to watch on Youtube)
20
+ [![Watch the demo](Showcase/thumbnail.png)](https://www.youtube.com/shorts/pjoelNjc3O0)
21
+
19
22
  A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
20
23
 
21
24
  * Python syntax highlighting via **Pygments**
@@ -3,6 +3,9 @@
3
3
  ## You can finally test your code in real time without using idle!
4
4
  ### If you found [this repository](https://github.com/TzurSoffer/Pysole) useful, please give it a ⭐!.
5
5
 
6
+ ## Showcase (click to watch on Youtube)
7
+ [![Watch the demo](Showcase/thumbnail.png)](https://www.youtube.com/shorts/pjoelNjc3O0)
8
+
6
9
  A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
7
10
 
8
11
  * Python syntax highlighting via **Pygments**
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "liveConsole"
3
- version = "1.7.3"
3
+ version = "1.7.5"
4
4
  description = "An IDLE-like debugger to allow for real-time command injection for debugging and testing python code"
5
5
  authors = [{ name="Tzur Soffer", email="tzur.soffer@gmail.com" }]
6
6
  license = {text = "MIT"}
@@ -0,0 +1 @@
1
+ from pysole import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.7.3
3
+ Version: 1.7.5
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -16,6 +16,9 @@ Dynamic: license-file
16
16
  ## You can finally test your code in real time without using idle!
17
17
  ### If you found [this repository](https://github.com/TzurSoffer/Pysole) useful, please give it a ⭐!.
18
18
 
19
+ ## Showcase (click to watch on Youtube)
20
+ [![Watch the demo](Showcase/thumbnail.png)](https://www.youtube.com/shorts/pjoelNjc3O0)
21
+
19
22
  A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
20
23
 
21
24
  * Python syntax highlighting via **Pygments**
@@ -2,6 +2,7 @@ LICENSE
2
2
  MANIFEST.in
3
3
  README.md
4
4
  pyproject.toml
5
+ src/liveConsole/__init__.py
5
6
  src/liveConsole.egg-info/PKG-INFO
6
7
  src/liveConsole.egg-info/SOURCES.txt
7
8
  src/liveConsole.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ liveConsole
2
+ pysole
@@ -0,0 +1,4 @@
1
+ from .pysole import probe, _standalone, InteractiveConsole
2
+ import sys
3
+
4
+ sys.modules['liveConsole'] = sys.modules[__name__]
@@ -6,5 +6,8 @@ themesPath = os.path.join(os.path.dirname(__file__), "themes.json")
6
6
 
7
7
  def stdPrint(text):
8
8
  """Print text to the terminal."""
9
- sys.__stdout__.write(f"{text}\n")
10
- sys.__stdout__.flush()
9
+ try:
10
+ sys.__stdout__.write(f"{text}\n")
11
+ sys.__stdout__.flush()
12
+ except:
13
+ pass
@@ -1 +0,0 @@
1
- from .pysole import probe, _standalone, InteractiveConsole
File without changes
File without changes
File without changes