liveConsole 1.4.1__tar.gz → 1.5.1__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.
- {liveconsole-1.4.1 → liveconsole-1.5.1}/PKG-INFO +12 -5
- {liveconsole-1.4.1 → liveconsole-1.5.1}/README.md +11 -4
- {liveconsole-1.4.1 → liveconsole-1.5.1}/pyproject.toml +5 -1
- liveconsole-1.5.1/src/__init__.py +1 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/liveConsole.egg-info/PKG-INFO +12 -5
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/liveConsole.egg-info/SOURCES.txt +2 -0
- liveconsole-1.5.1/src/liveConsole.egg-info/entry_points.txt +3 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/liveConsole.egg-info/top_level.txt +1 -0
- liveconsole-1.5.1/src/liveConsole.py +8 -0
- liveconsole-1.4.1/src/liveConsole.py → liveconsole-1.5.1/src/pysole.py +7 -1
- liveconsole-1.4.1/src/__init__.py +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/LICENSE +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/setup.cfg +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/commandHistory.py +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/helpTab.py +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/liveConsole.egg-info/dependency_links.txt +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/liveConsole.egg-info/requires.txt +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/mainConsole.py +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/styledTextbox.py +0 -0
- {liveconsole-1.4.1 → liveconsole-1.5.1}/src/suggestionManager.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: liveConsole
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.1
|
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
|
@@ -11,9 +11,10 @@ Requires-Dist: customtkinter
|
|
11
11
|
Requires-Dist: pygments
|
12
12
|
Dynamic: license-file
|
13
13
|
|
14
|
-
#
|
14
|
+
# PYSOLE
|
15
15
|
|
16
16
|
## You can finally test your code in real time without using idle!
|
17
|
+
### If you found [this repository](https://github.com/TzurSoffer/LiveDebugger) useful, please give it a ⭐!.
|
17
18
|
|
18
19
|
A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
|
19
20
|
|
@@ -27,7 +28,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
27
28
|
|
28
29
|
* Multi-line input with auto-indentation
|
29
30
|
|
30
|
-
*
|
31
|
+
* History of previous commands
|
31
32
|
|
32
33
|
* **Integrated Help Panel** for quick access to Python object documentation
|
33
34
|
|
@@ -39,6 +40,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
39
40
|
|
40
41
|
## Features
|
41
42
|
|
43
|
+
### Standalone Launch
|
44
|
+
|
45
|
+
* Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
|
46
|
+
|
47
|
+
* This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
|
48
|
+
|
42
49
|
### Syntax Highlighting
|
43
50
|
|
44
51
|
* Real-time syntax highlighting using **Pygments** and the **Monokai** style.
|
@@ -100,8 +107,8 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
100
107
|
## Usage
|
101
108
|
|
102
109
|
```
|
103
|
-
|
104
|
-
|
110
|
+
import pysole
|
111
|
+
pysole.probe()
|
105
112
|
```
|
106
113
|
|
107
114
|
* Type Python commands in the `>>>` prompt and see live output.
|
@@ -1,6 +1,7 @@
|
|
1
|
-
#
|
1
|
+
# PYSOLE
|
2
2
|
|
3
3
|
## You can finally test your code in real time without using idle!
|
4
|
+
### If you found [this repository](https://github.com/TzurSoffer/LiveDebugger) useful, please give it a ⭐!.
|
4
5
|
|
5
6
|
A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
|
6
7
|
|
@@ -14,7 +15,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
14
15
|
|
15
16
|
* Multi-line input with auto-indentation
|
16
17
|
|
17
|
-
*
|
18
|
+
* History of previous commands
|
18
19
|
|
19
20
|
* **Integrated Help Panel** for quick access to Python object documentation
|
20
21
|
|
@@ -26,6 +27,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
26
27
|
|
27
28
|
## Features
|
28
29
|
|
30
|
+
### Standalone Launch
|
31
|
+
|
32
|
+
* Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
|
33
|
+
|
34
|
+
* This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
|
35
|
+
|
29
36
|
### Syntax Highlighting
|
30
37
|
|
31
38
|
* Real-time syntax highlighting using **Pygments** and the **Monokai** style.
|
@@ -87,8 +94,8 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
87
94
|
## Usage
|
88
95
|
|
89
96
|
```
|
90
|
-
|
91
|
-
|
97
|
+
import pysole
|
98
|
+
pysole.probe()
|
92
99
|
```
|
93
100
|
|
94
101
|
* Type Python commands in the `>>>` prompt and see live output.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "liveConsole"
|
3
|
-
version = "1.
|
3
|
+
version = "1.5.1"
|
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"}
|
@@ -8,6 +8,10 @@ readme = "README.md"
|
|
8
8
|
requires-python = ">=3.7"
|
9
9
|
dependencies = ["customtkinter", "pygments"]
|
10
10
|
|
11
|
+
[project.scripts]
|
12
|
+
liveconsole = "liveConsole:main"
|
13
|
+
pysole = "pysole:main"
|
14
|
+
|
11
15
|
[build-system]
|
12
16
|
requires = ["setuptools>=61.0", "wheel"]
|
13
17
|
build-backend = "setuptools.build_meta"
|
@@ -0,0 +1 @@
|
|
1
|
+
from pysole import probe, InteractiveConsole
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: liveConsole
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.1
|
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
|
@@ -11,9 +11,10 @@ Requires-Dist: customtkinter
|
|
11
11
|
Requires-Dist: pygments
|
12
12
|
Dynamic: license-file
|
13
13
|
|
14
|
-
#
|
14
|
+
# PYSOLE
|
15
15
|
|
16
16
|
## You can finally test your code in real time without using idle!
|
17
|
+
### If you found [this repository](https://github.com/TzurSoffer/LiveDebugger) useful, please give it a ⭐!.
|
17
18
|
|
18
19
|
A fully-featured, **live Python console GUI** built with **CustomTkinter** and **Tkinter**, featuring:
|
19
20
|
|
@@ -27,7 +28,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
27
28
|
|
28
29
|
* Multi-line input with auto-indentation
|
29
30
|
|
30
|
-
*
|
31
|
+
* History of previous commands
|
31
32
|
|
32
33
|
* **Integrated Help Panel** for quick access to Python object documentation
|
33
34
|
|
@@ -39,6 +40,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
39
40
|
|
40
41
|
## Features
|
41
42
|
|
43
|
+
### Standalone Launch
|
44
|
+
|
45
|
+
* Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
|
46
|
+
|
47
|
+
* This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
|
48
|
+
|
42
49
|
### Syntax Highlighting
|
43
50
|
|
44
51
|
* Real-time syntax highlighting using **Pygments** and the **Monokai** style.
|
@@ -100,8 +107,8 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
100
107
|
## Usage
|
101
108
|
|
102
109
|
```
|
103
|
-
|
104
|
-
|
110
|
+
import pysole
|
111
|
+
pysole.probe()
|
105
112
|
```
|
106
113
|
|
107
114
|
* Type Python commands in the `>>>` prompt and see live output.
|
@@ -6,10 +6,12 @@ src/commandHistory.py
|
|
6
6
|
src/helpTab.py
|
7
7
|
src/liveConsole.py
|
8
8
|
src/mainConsole.py
|
9
|
+
src/pysole.py
|
9
10
|
src/styledTextbox.py
|
10
11
|
src/suggestionManager.py
|
11
12
|
src/liveConsole.egg-info/PKG-INFO
|
12
13
|
src/liveConsole.egg-info/SOURCES.txt
|
13
14
|
src/liveConsole.egg-info/dependency_links.txt
|
15
|
+
src/liveConsole.egg-info/entry_points.txt
|
14
16
|
src/liveConsole.egg-info/requires.txt
|
15
17
|
src/liveConsole.egg-info/top_level.txt
|
@@ -109,6 +109,12 @@ class InteractiveConsole(ctk.CTk):
|
|
109
109
|
"""Start the console main loop."""
|
110
110
|
self.mainloop(*args, **kwargs)
|
111
111
|
|
112
|
+
def probe():
|
113
|
+
InteractiveConsole().probe()
|
114
|
+
|
115
|
+
def main():
|
116
|
+
from pysole import probe
|
117
|
+
probe()
|
112
118
|
|
113
119
|
# Example usage
|
114
120
|
if __name__ == "__main__":
|
@@ -123,4 +129,4 @@ if __name__ == "__main__":
|
|
123
129
|
exampleList = [1, 2, 3, 4, 5]
|
124
130
|
|
125
131
|
# Start the console
|
126
|
-
|
132
|
+
probe()
|
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
|