kenenet 0.5.2__py3-none-any.whl → 0.5.4__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 +8 -14
- {kenenet-0.5.2.dist-info → kenenet-0.5.4.dist-info}/METADATA +1 -1
- kenenet-0.5.4.dist-info/RECORD +5 -0
- kenenet-0.5.2.dist-info/RECORD +0 -5
- {kenenet-0.5.2.dist-info → kenenet-0.5.4.dist-info}/WHEEL +0 -0
- {kenenet-0.5.2.dist-info → kenenet-0.5.4.dist-info}/top_level.txt +0 -0
kenenet/__init__.py
CHANGED
@@ -1,10 +1,10 @@
|
|
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
|
+
global timings, ospid
|
4
5
|
from pydub import AudioSegment
|
5
6
|
from pydub.playback import play
|
6
|
-
|
7
|
-
ospid, debug_mode = None, False
|
7
|
+
ospid = None
|
8
8
|
timings = {}
|
9
9
|
|
10
10
|
def quick_print(message, l=None):
|
@@ -144,17 +144,11 @@ def track_frame(frame, event, arg):
|
|
144
144
|
# ==========================================================================
|
145
145
|
|
146
146
|
def debug():
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
tracker.start_tracking(module_name)
|
153
|
-
caller_frame.f_trace = track_frame
|
154
|
-
debug_mode = True
|
155
|
-
if debug_mode:
|
156
|
-
VariableTracker.get_instance().stop_tracking()
|
157
|
-
debug_mode = False
|
147
|
+
caller_frame = inspect.currentframe().f_back
|
148
|
+
module_name = caller_frame.f_globals['__name__']
|
149
|
+
tracker = VariableTracker.get_instance()
|
150
|
+
tracker.start_tracking(module_name)
|
151
|
+
caller_frame.f_trace = track_frame
|
158
152
|
|
159
153
|
|
160
154
|
def stop_debug():
|
@@ -0,0 +1,5 @@
|
|
1
|
+
kenenet/__init__.py,sha256=GS824qMEe9UAtIhawdibaE7w1vAgh99xjTcRytwnt7A,8678
|
2
|
+
kenenet-0.5.4.dist-info/METADATA,sha256=YisdJRTL7i5prYfL02AHZ1iZCww5vLDyLycZGVGhflM,633
|
3
|
+
kenenet-0.5.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
kenenet-0.5.4.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
+
kenenet-0.5.4.dist-info/RECORD,,
|
kenenet-0.5.2.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
kenenet/__init__.py,sha256=4D9UWgrpuc6RhS344NlFnH0ersev0O8CXqiM1gsZql0,8880
|
2
|
-
kenenet-0.5.2.dist-info/METADATA,sha256=MZtYIgC1PfAxZOBIwce-u5J4scQs-sNJ57Pt8bplJ3w,633
|
3
|
-
kenenet-0.5.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
kenenet-0.5.2.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
-
kenenet-0.5.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|