liveConsole 1.7.4__py3-none-any.whl → 1.7.5__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.

Potentially problematic release.


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

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.7.4
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**
@@ -1,5 +1,5 @@
1
1
  liveConsole/__init__.py,sha256=GyV_Y3iiiS12JoEiqE55uZPQ8ZDYfOSKvxh5rcfaD1U,20
2
- liveconsole-1.7.4.dist-info/licenses/LICENSE,sha256=7dZ0zL72aGaFE0C9DxacOpnaSkC5jajhG6iL7lqhWmU,1064
2
+ liveconsole-1.7.5.dist-info/licenses/LICENSE,sha256=7dZ0zL72aGaFE0C9DxacOpnaSkC5jajhG6iL7lqhWmU,1064
3
3
  pysole/__init__.py,sha256=0Jq2s5WxFVveZW-pGwThGZLt_mVSdGcsT9lpJNEZ6ds,124
4
4
  pysole/__main__.py,sha256=QvVFH8J2yzgQaF9MosQ6ajCW67uiRbYliePsTEUCIAg,82
5
5
  pysole/commandHistory.py,sha256=xJtWbJ_vgJo2QGgaZJsApTOi_Hm8Yz0V9_zqQUCItj8,1084
@@ -11,9 +11,9 @@ pysole/settings.json,sha256=cmOtIhRDWHMwmQMESuykWuzJd_jG6iT2tJ-uhSps_3U,722
11
11
  pysole/styledTextbox.py,sha256=qWnwGAKjl7R2HYPXQOr8GrGYIr4JC8PzmeioOCH7hGo,2236
12
12
  pysole/suggestionManager.py,sha256=EUFeCQoZnLS8EjPPNuZpzjY0BR07m2KP5TloyaMDVGY,6457
13
13
  pysole/themes.json,sha256=2KvEfxm-eDsfVKIdBhWk-Qd93wYQub3YwkxbS6CGKH0,2525
14
- pysole/utils.py,sha256=-mGHAp0MkbMPQ9eYzPmo5AGHDLuQ9NfPio_2_iaiCuY,294
15
- liveconsole-1.7.4.dist-info/METADATA,sha256=g5HvNti6x6JcsQ3nGZW93_NcsDIwCAK6hrAA6l33UPM,4955
16
- liveconsole-1.7.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- liveconsole-1.7.4.dist-info/entry_points.txt,sha256=qtvuJHcex4QqM97x_UawFWJYnfhQRl0jhqLcWRpnAGo,84
18
- liveconsole-1.7.4.dist-info/top_level.txt,sha256=YGhC2H7bvcDnMwEtvLXF6qQNIZT2Saayyk1KOJyndN8,19
19
- liveconsole-1.7.4.dist-info/RECORD,,
14
+ pysole/utils.py,sha256=cBjS3KxDCuVr4Wa8up0eH493cLky9_CFImO-kaiWakQ,339
15
+ liveconsole-1.7.5.dist-info/METADATA,sha256=VuazaRtDpU5esWJ2St-l2LwKY5-75J_umHcwBuk4XwE,5087
16
+ liveconsole-1.7.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ liveconsole-1.7.5.dist-info/entry_points.txt,sha256=qtvuJHcex4QqM97x_UawFWJYnfhQRl0jhqLcWRpnAGo,84
18
+ liveconsole-1.7.5.dist-info/top_level.txt,sha256=YGhC2H7bvcDnMwEtvLXF6qQNIZT2Saayyk1KOJyndN8,19
19
+ liveconsole-1.7.5.dist-info/RECORD,,
pysole/utils.py CHANGED
@@ -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