liveConsole 1.7.4__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.
- {liveconsole-1.7.4/src/liveConsole.egg-info → liveconsole-1.7.5}/PKG-INFO +4 -1
- {liveconsole-1.7.4 → liveconsole-1.7.5}/README.md +3 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/pyproject.toml +1 -1
- {liveconsole-1.7.4 → liveconsole-1.7.5/src/liveConsole.egg-info}/PKG-INFO +4 -1
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/utils.py +5 -2
- {liveconsole-1.7.4 → liveconsole-1.7.5}/LICENSE +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/MANIFEST.in +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/setup.cfg +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole/__init__.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole.egg-info/SOURCES.txt +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole.egg-info/dependency_links.txt +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole.egg-info/entry_points.txt +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole.egg-info/requires.txt +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/liveConsole.egg-info/top_level.txt +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/__init__.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/__main__.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/commandHistory.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/helpTab.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/liveConsole.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/mainConsole.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/pysole.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/settings.json +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/styledTextbox.py +0 -0
- {liveconsole-1.7.4 → liveconsole-1.7.5}/src/pysole/suggestionManager.py +0 -0
- {liveconsole-1.7.4 → 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
|
+
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
|
+
[](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
|
+
[](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
|
+
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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: liveConsole
|
|
3
|
-
Version: 1.7.
|
|
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
|
+
[](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**
|
|
@@ -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
|
-
|
|
10
|
-
|
|
9
|
+
try:
|
|
10
|
+
sys.__stdout__.write(f"{text}\n")
|
|
11
|
+
sys.__stdout__.flush()
|
|
12
|
+
except:
|
|
13
|
+
pass
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|