kenenet 0.5.3__py3-none-any.whl → 0.5.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.
- kenenet/__init__.py +15 -12
- {kenenet-0.5.3.dist-info → kenenet-0.5.5.dist-info}/METADATA +1 -1
- kenenet-0.5.5.dist-info/RECORD +5 -0
- kenenet-0.5.3.dist-info/RECORD +0 -5
- {kenenet-0.5.3.dist-info → kenenet-0.5.5.dist-info}/WHEEL +0 -0
- {kenenet-0.5.3.dist-info → kenenet-0.5.5.dist-info}/top_level.txt +0 -0
kenenet/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import sys, zhmiscellany, keyboard, mss, time, os, random, pyperclip, inspect, datetime, atexit
|
1
|
+
import inspect, sys, zhmiscellany, keyboard, mss, time, linecache, types, os, random, pyperclip, inspect, datetime, atexit
|
2
2
|
import numpy as np
|
3
3
|
from PIL import Image
|
4
4
|
from pydub import AudioSegment
|
@@ -143,22 +143,25 @@ def track_frame(frame, event, arg):
|
|
143
143
|
# PUBLIC API
|
144
144
|
# ==========================================================================
|
145
145
|
|
146
|
+
|
147
|
+
def start_trace():
|
148
|
+
caller_frame = inspect.currentframe().f_back
|
149
|
+
module_name = caller_frame.f_globals['__name__']
|
150
|
+
tracker = VariableTracker.get_instance()
|
151
|
+
tracker.start_tracking(module_name)
|
152
|
+
caller_frame.f_trace = track_frame
|
153
|
+
|
154
|
+
def end_trace():
|
155
|
+
VariableTracker.get_instance().stop_tracking()
|
156
|
+
|
146
157
|
def debug():
|
147
158
|
global debug_mode
|
148
159
|
if not debug_mode:
|
149
160
|
debug_mode = True
|
150
|
-
|
151
|
-
|
152
|
-
tracker = VariableTracker.get_instance()
|
153
|
-
tracker.start_tracking(module_name)
|
154
|
-
caller_frame.f_trace = track_frame
|
155
|
-
if debug_mode:
|
161
|
+
start_trace()
|
162
|
+
else:
|
156
163
|
debug_mode = False
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
def stop_debug():
|
161
|
-
VariableTracker.get_instance().stop_tracking()
|
164
|
+
end_trace()
|
162
165
|
|
163
166
|
def pp(msg='caca', subdir=None, pps=3):
|
164
167
|
import os, subprocess
|
@@ -0,0 +1,5 @@
|
|
1
|
+
kenenet/__init__.py,sha256=GtOqZSuMhBCe-yD44-H1CGZ5FI1oquvCXowv3-GwKd8,8891
|
2
|
+
kenenet-0.5.5.dist-info/METADATA,sha256=ErNyvBrwaNUKjMvufOQW7R_GvgYccy2SWDIdEYxgNpg,633
|
3
|
+
kenenet-0.5.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
kenenet-0.5.5.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
+
kenenet-0.5.5.dist-info/RECORD,,
|
kenenet-0.5.3.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
kenenet/__init__.py,sha256=PnVfIbzwnhkI4Q22WiW2UtGWNI3O_GrqEM2ppP-YYxs,8880
|
2
|
-
kenenet-0.5.3.dist-info/METADATA,sha256=DuuL8O7OOoAk7eG0anRjuLUd8fYpH_XNx0WAc4wgfKs,633
|
3
|
-
kenenet-0.5.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
kenenet-0.5.3.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
-
kenenet-0.5.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|