osbot-utils 1.60.0__py3-none-any.whl → 1.61.0__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.
- osbot_utils/helpers/Timestamp_Now.py +13 -0
- osbot_utils/helpers/flows/Flow.py +39 -33
- osbot_utils/helpers/flows/Flow__Events.py +25 -26
- osbot_utils/helpers/flows/Task.py +10 -2
- osbot_utils/helpers/flows/decorators/flow.py +1 -3
- osbot_utils/helpers/flows/models/{Flow__Config.py → Flow_Run__Config.py} +1 -1
- osbot_utils/helpers/flows/models/Flow_Run__Event.py +15 -0
- osbot_utils/helpers/flows/models/Flow_Run__Event_Data.py +14 -0
- osbot_utils/helpers/flows/models/{Flow__Event_Type.py → Flow_Run__Event_Type.py} +3 -1
- osbot_utils/utils/Json.py +2 -2
- osbot_utils/utils/Misc.py +1 -0
- osbot_utils/utils/Objects.py +6 -0
- osbot_utils/version +1 -1
- {osbot_utils-1.60.0.dist-info → osbot_utils-1.61.0.dist-info}/METADATA +3 -2
- {osbot_utils-1.60.0.dist-info → osbot_utils-1.61.0.dist-info}/RECORD +17 -15
- {osbot_utils-1.60.0.dist-info → osbot_utils-1.61.0.dist-info}/WHEEL +1 -1
- osbot_utils/helpers/flows/models/Flow__Event.py +0 -6
- {osbot_utils-1.60.0.dist-info → osbot_utils-1.61.0.dist-info}/LICENSE +0 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
from osbot_utils.utils.Misc import timestamp_now
|
2
|
+
|
3
|
+
class Timestamp_Now(int):
|
4
|
+
def __new__(cls, value=None):
|
5
|
+
if value is None:
|
6
|
+
value = timestamp_now()
|
7
|
+
return int.__new__(cls, value)
|
8
|
+
|
9
|
+
def __init__(self, value=None):
|
10
|
+
self.value = value if value is not None else timestamp_now()
|
11
|
+
|
12
|
+
def __str__(self):
|
13
|
+
return str(self.value)
|
@@ -2,17 +2,17 @@ import asyncio
|
|
2
2
|
import logging
|
3
3
|
import typing
|
4
4
|
|
5
|
-
from osbot_utils.helpers.Dependency_Manager
|
6
|
-
|
7
|
-
from osbot_utils.
|
8
|
-
from osbot_utils.helpers.
|
9
|
-
from osbot_utils.helpers.flows.
|
10
|
-
from osbot_utils.helpers.flows.
|
11
|
-
from osbot_utils.testing.Stdout
|
12
|
-
from osbot_utils.utils.Misc
|
13
|
-
from osbot_utils.utils.Python_Logger
|
14
|
-
from osbot_utils.utils.Str
|
15
|
-
from osbot_utils.utils.Threads
|
5
|
+
from osbot_utils.helpers.Dependency_Manager import Dependency_Manager
|
6
|
+
from osbot_utils.base_classes.Type_Safe import Type_Safe
|
7
|
+
from osbot_utils.helpers.CFormat import CFormat, f_dark_grey, f_magenta, f_bold
|
8
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Config import Flow_Run__Config
|
9
|
+
from osbot_utils.helpers.flows.Flow__Events import flow_events
|
10
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Data import Flow_Run__Event_Data
|
11
|
+
from osbot_utils.testing.Stdout import Stdout
|
12
|
+
from osbot_utils.utils.Misc import random_id, lower
|
13
|
+
from osbot_utils.utils.Python_Logger import Python_Logger
|
14
|
+
from osbot_utils.utils.Str import ansis_to_texts
|
15
|
+
from osbot_utils.utils.Threads import invoke_in_new_event_loop
|
16
16
|
|
17
17
|
FLOW__RANDOM_ID__PREFIX = 'flow_id__'
|
18
18
|
FLOW__RANDOM_NAME__PREFIX = 'flow_name__'
|
@@ -26,7 +26,7 @@ class Flow(Type_Safe):
|
|
26
26
|
data : dict # dict available to the tasks to add and collect data
|
27
27
|
flow_id : str
|
28
28
|
flow_name : str
|
29
|
-
flow_config :
|
29
|
+
flow_config : Flow_Run__Config
|
30
30
|
flow_error : Exception = None
|
31
31
|
flow_target : callable
|
32
32
|
flow_args : tuple
|
@@ -39,20 +39,22 @@ class Flow(Type_Safe):
|
|
39
39
|
resolved_args : tuple
|
40
40
|
resolved_kwargs : dict
|
41
41
|
|
42
|
-
def add_flow_artifact(self, description=None, key=None, data=None, artifact_type=None): # todo: figure out how to make this work since at the moment most are showing an unknown type
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
42
|
+
def add_flow_artifact(self, description=None, key=None, data=None, artifact_type=None): # todo: figure out how to make this work since at the moment most are showing an unknown type
|
43
|
+
event_data = Flow_Run__Event_Data()
|
44
|
+
event_data.data= dict(artifact_data = dict(description = description or 'description',
|
45
|
+
key = key or 'an-artifact-key',
|
46
|
+
data = data or {"link": "https://www.google.com", "link_text": "link to Google"}, # test data to see if it worksw
|
47
|
+
type = artifact_type or "link")) # type clashed with built-in type
|
48
|
+
event_data.flow_run_id = self.flow_id
|
49
|
+
flow_events.on__new_artifact(event_data)
|
48
50
|
|
49
|
-
flow_events.on__new_artifact(self, result_data )
|
50
51
|
|
51
52
|
def add_flow_result(self, key, description):
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
53
|
+
event_data = Flow_Run__Event_Data()
|
54
|
+
event_data.flow_run_id = self.flow_id
|
55
|
+
event_data.data = dict(result_data = dict(key = key ,
|
56
|
+
description = description ))
|
57
|
+
flow_events.on__new_result(event_data)
|
56
58
|
|
57
59
|
def config_logger(self):
|
58
60
|
with self.logger as _:
|
@@ -61,15 +63,12 @@ class Flow(Type_Safe):
|
|
61
63
|
if self.flow_config.log_to_console:
|
62
64
|
_.add_console_logger()
|
63
65
|
|
64
|
-
def create_flow(self):
|
65
|
-
self.set_flow_name()
|
66
|
-
self.log_debug(f"Created flow run '{self.f__flow_id()}' for flow '{self.f__flow_name()}'")
|
67
|
-
|
68
66
|
def execute(self):
|
69
67
|
return self.execute_flow()
|
70
68
|
|
71
69
|
def execute_flow(self, flow_run_params=None): # todo: see if it makes more sense to call this start_flow_run
|
72
|
-
flow_events.on__flow__start(self)
|
70
|
+
flow_events.on__flow__start(self.flow_event_data())
|
71
|
+
self.log_debug(f"Created flow run '{self.f__flow_id()}' for flow '{self.f__flow_name()}'")
|
73
72
|
self.set_flow_run_params(flow_run_params)
|
74
73
|
|
75
74
|
if self.flow_config.log_to_memory:
|
@@ -93,7 +92,7 @@ class Flow(Type_Safe):
|
|
93
92
|
self.logger.remove_memory_logger() # todo: move to method that does post-execute tasks
|
94
93
|
if self.flow_return_value:
|
95
94
|
self.add_flow_result(key = 'flow-return-value', description=f'{self.flow_return_value}')
|
96
|
-
flow_events.on__flow__stop(self)
|
95
|
+
flow_events.on__flow__stop(self.flow_event_data())
|
97
96
|
return self
|
98
97
|
|
99
98
|
def captured_logs(self):
|
@@ -116,6 +115,11 @@ class Flow(Type_Safe):
|
|
116
115
|
def f__flow_name(self):
|
117
116
|
return self.cformat.blue(self.flow_name)
|
118
117
|
|
118
|
+
def flow_event_data(self):
|
119
|
+
kwargs = dict(flow_name = self.flow_name ,
|
120
|
+
#flow_id = self.flow_id , # todo: add support for actually sending the flow_id value (not the flow_run_id)
|
121
|
+
flow_run_id = self.flow_id )
|
122
|
+
return Flow_Run__Event_Data(**kwargs)
|
119
123
|
|
120
124
|
def log_captured_stdout(self, stdout):
|
121
125
|
for line in stdout.value().splitlines():
|
@@ -142,7 +146,7 @@ class Flow(Type_Safe):
|
|
142
146
|
message = message ,
|
143
147
|
flow_run_id = self.flow_id,
|
144
148
|
task_run_id = task_run_id )
|
145
|
-
flow_events.on__flow_run__message(
|
149
|
+
flow_events.on__flow_run__message(**kwargs)
|
146
150
|
if log_level == logging.DEBUG:
|
147
151
|
self.logger.debug(message)
|
148
152
|
elif log_level == logging.ERROR:
|
@@ -216,11 +220,13 @@ class Flow(Type_Safe):
|
|
216
220
|
self.log_info(f"flow_run_params: {flow_run_params}")
|
217
221
|
self.add_flow_artifact(description="Data received via FastAPI's request.json()", key='post-data', data=flow_run_params)
|
218
222
|
|
219
|
-
def setup(self):
|
223
|
+
def setup(self, target, *args, **kwargs):
|
220
224
|
with self as _:
|
221
225
|
_.cformat.auto_bold = True
|
222
|
-
_.
|
223
|
-
_.
|
226
|
+
_.set_flow_target (target, *args, **kwargs)
|
227
|
+
_.config_logger ()
|
228
|
+
_.setup_flow_run ()
|
229
|
+
_.set_flow_name ()
|
224
230
|
return self
|
225
231
|
|
226
232
|
def setup_flow_run(self):
|
@@ -1,46 +1,45 @@
|
|
1
|
-
from osbot_utils.
|
2
|
-
|
3
|
-
from osbot_utils.
|
4
|
-
|
5
|
-
from osbot_utils.
|
6
|
-
from osbot_utils.helpers.flows.models.Flow__Event import Flow__Event
|
7
|
-
from osbot_utils.helpers.flows.models.Flow__Event_Type import Flow__Event_Type
|
1
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Data import Flow_Run__Event_Data
|
2
|
+
from osbot_utils.utils.Str import ansi_to_text
|
3
|
+
from osbot_utils.base_classes.Type_Safe import Type_Safe
|
4
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event import Flow_Run__Event
|
5
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Type import Flow_Run__Event_Type
|
8
6
|
|
9
7
|
|
10
8
|
class Flow_Events(Type_Safe):
|
11
9
|
event_listeners : list
|
12
10
|
|
13
|
-
def on__flow__start(self,
|
14
|
-
flow_event =
|
11
|
+
def on__flow__start(self, event_data: Flow_Run__Event_Data):
|
12
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.FLOW_START, event_data=event_data)
|
15
13
|
self.raise_event(flow_event)
|
16
14
|
|
17
|
-
def on__flow__stop(self,
|
18
|
-
flow_event =
|
15
|
+
def on__flow__stop(self, event_data: Flow_Run__Event_Data): # todo: see of flow_ended or flow_completed are better names
|
16
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.FLOW_STOP , event_data=event_data)
|
19
17
|
self.raise_event(flow_event)
|
20
18
|
|
21
|
-
def on__flow_run__message(self,
|
22
|
-
event_data =
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
19
|
+
def on__flow_run__message(self, log_level, flow_run_id, task_run_id, message):
|
20
|
+
event_data = Flow_Run__Event_Data()
|
21
|
+
event_data.flow_run_id = flow_run_id
|
22
|
+
event_data.task_run_id = task_run_id
|
23
|
+
event_data.data = dict(message_data = dict(log_level = log_level ,
|
24
|
+
message = message ,
|
25
|
+
message_text = ansi_to_text(message) ))
|
26
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.FLOW_MESSAGE, event_data=event_data)
|
28
27
|
self.raise_event(flow_event)
|
29
28
|
|
30
|
-
def on__new_artifact(self,
|
31
|
-
flow_event =
|
29
|
+
def on__new_artifact(self, event_data: Flow_Run__Event_Data):
|
30
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.NEW_ARTIFACT, event_data=event_data)
|
32
31
|
self.raise_event(flow_event)
|
33
32
|
|
34
|
-
def on__new_result(self,
|
35
|
-
flow_event =
|
33
|
+
def on__new_result(self, event_data: Flow_Run__Event_Data):
|
34
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.NEW_RESULT, event_data=event_data)
|
36
35
|
self.raise_event(flow_event)
|
37
36
|
|
38
|
-
def on__task__start(self,
|
39
|
-
flow_event =
|
37
|
+
def on__task__start(self, event_data: Flow_Run__Event_Data):
|
38
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.TASK_START, event_data=event_data)
|
40
39
|
self.raise_event(flow_event)
|
41
40
|
|
42
|
-
def on__task__stop(self,
|
43
|
-
flow_event =
|
41
|
+
def on__task__stop(self, event_data: Flow_Run__Event_Data): # todo: see of flow_ended or flow_completed are better names
|
42
|
+
flow_event = Flow_Run__Event(event_type=Flow_Run__Event_Type.TASK_STOP , event_data=event_data)
|
44
43
|
self.raise_event(flow_event)
|
45
44
|
|
46
45
|
def raise_event(self, flow_event):
|
@@ -2,6 +2,7 @@ import asyncio
|
|
2
2
|
import inspect
|
3
3
|
import typing
|
4
4
|
|
5
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Data import Flow_Run__Event_Data
|
5
6
|
from osbot_utils.utils.Misc import random_id, lower
|
6
7
|
from osbot_utils.helpers.Dependency_Manager import Dependency_Manager
|
7
8
|
from osbot_utils.helpers.flows.Flow__Events import flow_events
|
@@ -57,12 +58,19 @@ class Task(Type_Safe):
|
|
57
58
|
if not self.task_id:
|
58
59
|
self.task_id = self.random_task_id()
|
59
60
|
|
60
|
-
flow_events.on__task__start(self)
|
61
|
+
flow_events.on__task__start(self.task_event_data())
|
61
62
|
|
62
63
|
self.task_flow.executed_tasks.append(self)
|
63
64
|
self.log_debug(f"Executing task '{f_blue(self.task_name)}'")
|
64
65
|
self.resolve_args_and_kwargs()
|
65
66
|
|
67
|
+
def task_event_data(self):
|
68
|
+
kwargs = dict(flow_name = self.task_flow.flow_name,
|
69
|
+
flow_run_id = self.task_flow.flow_id ,
|
70
|
+
task_name = self.task_name ,
|
71
|
+
task_run_id = self.task_id )
|
72
|
+
return Flow_Run__Event_Data(**kwargs)
|
73
|
+
|
66
74
|
def resolve_args_and_kwargs(self):
|
67
75
|
dependency_manager = Dependency_Manager()
|
68
76
|
dependency_manager.add_dependency('this_task', self )
|
@@ -97,7 +105,7 @@ class Task(Type_Safe):
|
|
97
105
|
|
98
106
|
self.print_task_finished_message()
|
99
107
|
|
100
|
-
flow_events.on__task__stop(self)
|
108
|
+
flow_events.on__task__stop(self.task_event_data())
|
101
109
|
return self.task_return_value
|
102
110
|
|
103
111
|
|
@@ -10,9 +10,7 @@ def flow(**flow_kwargs):
|
|
10
10
|
@wraps(function)
|
11
11
|
def wrapper(*args: Any, **kwargs: Any) -> Flow:
|
12
12
|
with Flow(**flow_kwargs) as _:
|
13
|
-
_.
|
14
|
-
_.setup()
|
15
|
-
_.create_flow()
|
13
|
+
_.setup(function, *args, **kwargs)
|
16
14
|
return _
|
17
15
|
return wrapper
|
18
16
|
return decorator
|
@@ -0,0 +1,15 @@
|
|
1
|
+
from osbot_utils.helpers.Random_Guid import Random_Guid
|
2
|
+
|
3
|
+
from osbot_utils.base_classes.Type_Safe import Type_Safe
|
4
|
+
from osbot_utils.helpers.Timestamp_Now import Timestamp_Now
|
5
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Data import Flow_Run__Event_Data
|
6
|
+
from osbot_utils.helpers.flows.models.Flow_Run__Event_Type import Flow_Run__Event_Type
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
class Flow_Run__Event(Type_Safe):
|
11
|
+
event_id : Random_Guid
|
12
|
+
event_type : Flow_Run__Event_Type
|
13
|
+
event_data : Flow_Run__Event_Data
|
14
|
+
timestamp : Timestamp_Now
|
15
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import logging
|
2
|
+
|
3
|
+
from osbot_utils.base_classes.Type_Safe import Type_Safe
|
4
|
+
|
5
|
+
|
6
|
+
class Flow_Run__Event_Data(Type_Safe):
|
7
|
+
data : dict
|
8
|
+
event_source: str
|
9
|
+
flow_id : str = None
|
10
|
+
flow_name : str = None
|
11
|
+
flow_run_id : str = None
|
12
|
+
log_level : int = logging.INFO
|
13
|
+
task_name : str = None
|
14
|
+
task_run_id : str = None
|
osbot_utils/utils/Json.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
import json
|
2
2
|
import os
|
3
3
|
|
4
|
-
from osbot_utils.utils.Misc
|
4
|
+
from osbot_utils.utils.Misc import str_lines, str_md5, str_sha256
|
5
5
|
from osbot_utils.utils.Files import file_create_gz, file_create, load_file_gz, file_contents, file_lines, file_lines_gz
|
6
|
-
from osbot_utils.utils.Zip
|
6
|
+
from osbot_utils.utils.Zip import str_to_gz, gz_to_str
|
7
7
|
|
8
8
|
|
9
9
|
def json_dumps(python_object, indent=4, pretty=True, sort_keys=False, default=str, raise_exception=False):
|
osbot_utils/utils/Misc.py
CHANGED
osbot_utils/utils/Objects.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# todo add tests
|
2
2
|
import inspect
|
3
|
+
import json
|
3
4
|
import pickle
|
4
5
|
import sys
|
5
6
|
import types
|
@@ -151,6 +152,9 @@ def obj_to_dict(target):
|
|
151
152
|
return {obj_to_dict(item) for item in target}
|
152
153
|
return target # Return non-object types as is
|
153
154
|
|
155
|
+
def str_to_obj(target):
|
156
|
+
return dict_to_obj(json.loads(target))
|
157
|
+
|
154
158
|
def enum_from_value(enum_type, value):
|
155
159
|
try:
|
156
160
|
return enum_type[value] # Attempt to convert the value to an Enum member by name
|
@@ -390,6 +394,8 @@ def value_type_matches_obj_annotation_for_attr(target, attr_name, value):
|
|
390
394
|
base_types = base_classes
|
391
395
|
bytes_to_obj = pickle_load_from_bytes
|
392
396
|
|
397
|
+
json_to_obj = str_to_obj
|
398
|
+
|
393
399
|
full_type_name = class_full_name
|
394
400
|
|
395
401
|
obj_list_set = obj_keys
|
osbot_utils/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
v1.
|
1
|
+
v1.61.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: osbot_utils
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.61.0
|
4
4
|
Summary: OWASP Security Bot - Utils
|
5
5
|
Home-page: https://github.com/owasp-sbot/OSBot-Utils
|
6
6
|
License: MIT
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
18
19
|
Project-URL: Repository, https://github.com/owasp-sbot/OSBot-Utils
|
19
20
|
Description-Content-Type: text/markdown
|
20
21
|
|
@@ -22,7 +23,7 @@ Description-Content-Type: text/markdown
|
|
22
23
|
|
23
24
|
Powerful Python util methods and classes that simplify common apis and tasks.
|
24
25
|
|
25
|
-

|
26
27
|
[](https://codecov.io/gh/owasp-sbot/OSBot-Utils)
|
27
28
|
|
28
29
|
|
@@ -67,6 +67,7 @@ osbot_utils/helpers/Print_Table.py,sha256=LEXbyqGg_6WSraI4cob4bNNSu18ddqvALp1zGK
|
|
67
67
|
osbot_utils/helpers/Python_Audit.py,sha256=shpZlluJwqJBAlad6xN01FkgC1TsQ48RLvR5ZjmrKa4,1539
|
68
68
|
osbot_utils/helpers/Random_Guid.py,sha256=_wlyM17SIr-FeYESwnVt4cfkEtRRf-dbYh_lTnrKVG0,379
|
69
69
|
osbot_utils/helpers/Random_Seed.py,sha256=14btja8LDN9cMGWaz4fCNcMRU_eyx49gas-_PQvHgy4,634
|
70
|
+
osbot_utils/helpers/Timestamp_Now.py,sha256=Vmdsm-pgvxkkQ_Qj_9Watr8rXXSvc-aBxWMPFGQx8Z0,371
|
70
71
|
osbot_utils/helpers/Type_Registry.py,sha256=Ajk3SyMSKDi2g9SJYUtTgg7PZkAgydaHcpbGuEN3S94,311
|
71
72
|
osbot_utils/helpers/Zip_Bytes.py,sha256=d5hYXNOJkOaYa7h2CJ0Y3ojEuGTOvCxPuSic2quwMY4,4236
|
72
73
|
osbot_utils/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -154,16 +155,17 @@ osbot_utils/helpers/cache_requests/Cache__Requests__Row.py,sha256=h-yc7NkpScbHww
|
|
154
155
|
osbot_utils/helpers/cache_requests/Cache__Requests__Table.py,sha256=RgxAYhm-FIrXXteQRtD91pOLq8JXhSzxb51Jb6MTUdY,391
|
155
156
|
osbot_utils/helpers/cache_requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
156
157
|
osbot_utils/helpers/cache_requests/flows/flow__Cache__Requests.py,sha256=xgx_oExxkcvRwQN1UCobimECIMUKGoIX5oGdCmp8Nyw,243
|
157
|
-
osbot_utils/helpers/flows/Flow.py,sha256=
|
158
|
-
osbot_utils/helpers/flows/Flow__Events.py,sha256=
|
159
|
-
osbot_utils/helpers/flows/Task.py,sha256=
|
158
|
+
osbot_utils/helpers/flows/Flow.py,sha256=2oUlvX5wyTZT1K5hkNn8owwCLb84nTUXelpRH1E0IPE,10812
|
159
|
+
osbot_utils/helpers/flows/Flow__Events.py,sha256=_BHXh9v1GfvTI7hGx7eJDkCGeo9VjqDoCTMDeL09Ujc,2843
|
160
|
+
osbot_utils/helpers/flows/Task.py,sha256=3PiU1GCWhnDcgYxYRldo0CWcCcnQDvWvU2cXPCmpSTc,5336
|
160
161
|
osbot_utils/helpers/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
162
|
osbot_utils/helpers/flows/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
-
osbot_utils/helpers/flows/decorators/flow.py,sha256=
|
163
|
+
osbot_utils/helpers/flows/decorators/flow.py,sha256=7wj5TtUO_ffbACnagZtZ6LfFgclmbQSfn2lKkMMrnJI,670
|
163
164
|
osbot_utils/helpers/flows/decorators/task.py,sha256=9bhQBPJU1dO-J4FAsFkmxqQMBNtay4FT_b1BdpHJ9sA,734
|
164
|
-
osbot_utils/helpers/flows/models/
|
165
|
-
osbot_utils/helpers/flows/models/
|
166
|
-
osbot_utils/helpers/flows/models/
|
165
|
+
osbot_utils/helpers/flows/models/Flow_Run__Config.py,sha256=3JSPSG3vjM7mdnI-3wgLCc7Nc_3Xjqxn34_A6yUp-4Q,386
|
166
|
+
osbot_utils/helpers/flows/models/Flow_Run__Event.py,sha256=-F_H_Tq119qa9tk8IoX5U36h_f8AE1VueL0olhjH24g,569
|
167
|
+
osbot_utils/helpers/flows/models/Flow_Run__Event_Data.py,sha256=FlL1MifonjzHnHYtiVTMeZWu2WxjCNU5-D9VrF18Ces,340
|
168
|
+
osbot_utils/helpers/flows/models/Flow_Run__Event_Type.py,sha256=-iHKNQ-Ar2UfiCraFYQNHdBQ9fNcTTRoh3kRpXRS_Gc,375
|
167
169
|
osbot_utils/helpers/flows/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
170
|
osbot_utils/helpers/html/Dict_To_Css.py,sha256=u6B4Mx7PXr-gDrTrs1hgknnvsZVK4Fic5LqedKjo-lk,1097
|
169
171
|
osbot_utils/helpers/html/Dict_To_Html.py,sha256=OlRSaDGOeseBNTxRB2ho5whqEacMXeAXWOfeVSEYqC4,3355
|
@@ -286,11 +288,11 @@ osbot_utils/utils/Files.py,sha256=7fdqbfFyo6Ow5Repi_dZAzHqGb0XYh6tDALYAy42pBY,22
|
|
286
288
|
osbot_utils/utils/Functions.py,sha256=0E6alPJ0fJpBiJgFOWooCOi265wSRyxxXAJ5CELBnso,3498
|
287
289
|
osbot_utils/utils/Http.py,sha256=vFvD-xLkkXLTJvmYGourMLoUOfkZx_KBSLmo1RX73jM,7043
|
288
290
|
osbot_utils/utils/Int.py,sha256=PmlUdU4lSwf4gJdmTVdqclulkEp7KPCVUDO6AcISMF4,116
|
289
|
-
osbot_utils/utils/Json.py,sha256=
|
291
|
+
osbot_utils/utils/Json.py,sha256=yIT2hUI23gYd24Uf3LCjqPNV67zS46rYZftcCM3jw-Q,6492
|
290
292
|
osbot_utils/utils/Json_Cache.py,sha256=mLPkkDZN-3ZVJiDvV1KBJXILtKkTZ4OepzOsDoBPhWg,2006
|
291
293
|
osbot_utils/utils/Lists.py,sha256=tPz5x5s3sRO97WZ_nsxREBPC5cwaHrhgaYBhsrffTT8,5599
|
292
|
-
osbot_utils/utils/Misc.py,sha256=
|
293
|
-
osbot_utils/utils/Objects.py,sha256=
|
294
|
+
osbot_utils/utils/Misc.py,sha256=Z362HW7nUiGd7mj0QKW7ifNR1opUYNlQM7YmEyz_qHw,16921
|
295
|
+
osbot_utils/utils/Objects.py,sha256=_BWr7KA8Xzzxu6fyxHSqDqDM1Pkyr5IZUFo_hMf7oTo,17612
|
294
296
|
osbot_utils/utils/Png.py,sha256=V1juGp6wkpPigMJ8HcxrPDIP4bSwu51oNkLI8YqP76Y,1172
|
295
297
|
osbot_utils/utils/Process.py,sha256=lr3CTiEkN3EiBx3ZmzYmTKlQoPdkgZBRjPulMxG-zdo,2357
|
296
298
|
osbot_utils/utils/Python_Logger.py,sha256=tx8N6wRKL3RDHboDRKZn8SirSJdSAE9cACyJkxrThZ8,12792
|
@@ -302,8 +304,8 @@ osbot_utils/utils/Toml.py,sha256=SD6IA4-mrtoBXcI0dIGKV9POMQNd6WYKvmDQq7GQ6ZQ,143
|
|
302
304
|
osbot_utils/utils/Version.py,sha256=Ww6ChwTxqp1QAcxOnztkTicShlcx6fbNsWX5xausHrg,422
|
303
305
|
osbot_utils/utils/Zip.py,sha256=G6Hk_hDcm9yvWzhTKzhT0R_6f0NBIAchHqMxGb3kfh4,14037
|
304
306
|
osbot_utils/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
|
-
osbot_utils/version,sha256=
|
306
|
-
osbot_utils-1.
|
307
|
-
osbot_utils-1.
|
308
|
-
osbot_utils-1.
|
309
|
-
osbot_utils-1.
|
307
|
+
osbot_utils/version,sha256=AxhppEeDw-7cq3HMr0l7OrPCdy5R5eZ7MF-27O2MVqs,8
|
308
|
+
osbot_utils-1.61.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
309
|
+
osbot_utils-1.61.0.dist-info/METADATA,sha256=yiavdHaHNU9h8VejBNAUqWYEl8itBbWeIfWhRIFngRU,1317
|
310
|
+
osbot_utils-1.61.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
311
|
+
osbot_utils-1.61.0.dist-info/RECORD,,
|
File without changes
|