fdc-shared-kernel 0.0.52__tar.gz → 0.0.53__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.
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/PKG-INFO +1 -1
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/PKG-INFO +1 -1
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/pyproject.toml +1 -1
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/event_executor/event_executor.py +8 -8
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/utils/event_messages.py +15 -15
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/README.md +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/README_pypi.md +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/SOURCES.txt +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/dependency_links.txt +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/requires.txt +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/top_level.txt +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/requirements.txt +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/setup.cfg +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/async_task_executor/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/async_task_executor/async_task_executor.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/auth/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/auth/jwt_helper.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/auth/token_handler.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/config/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/database/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/enums/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/enums/async_task_status.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/event_executor/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/configuration_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/custom_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/data_validation_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/http_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/infrastructure_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/operational_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/security_exceptions.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/http/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/http/httpx_http_client.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/http/request_http_client.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/interfaces/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/interfaces/databus.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/interfaces/http.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/interfaces/keyvault.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/logger/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/aws_databus.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/http_databus.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/nats_databus.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/nats_publisher.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/nats_test.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/utils/aws_utility.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/metrics/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/metrics/status_tracker.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/models/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/registries/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/registries/service_event_registry.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/security/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/security/key_vault/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/security/key_vault/aws_secret_manager.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/security/key_vault/azure_keyvault.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/status_tracker/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/status_tracker/status_tracker.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/config/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/config/test_config.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/logger/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/logger/test_logger.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/messaging/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/messaging/test_aws_databus.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/messaging/test_event_executor.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/messaging/test_nats_interface.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/utils/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/utils/test_data_validators.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/utils/test_date_format_utils.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/utils/test_string_utils.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/__init__.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/data_validators_utils.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/date_format_utils.py +0 -0
- {fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/string_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fdc_shared_kernel
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.53
|
|
4
4
|
Summary: Shared library for microservice
|
|
5
5
|
Author-email: Shikhil S <shikhil.s@dbizsolution.com>, Ahammed Akdham N <ahammedakdham.n@dbizsolution.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fdc_shared_kernel
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.53
|
|
4
4
|
Summary: Shared library for microservice
|
|
5
5
|
Author-email: Shikhil S <shikhil.s@dbizsolution.com>, Ahammed Akdham N <ahammedakdham.n@dbizsolution.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/event_executor/event_executor.py
RENAMED
|
@@ -53,15 +53,15 @@ class EventExecutor:
|
|
|
53
53
|
bool: True if processing succeeded, False otherwise
|
|
54
54
|
"""
|
|
55
55
|
try:
|
|
56
|
-
task: dict = self.status_tracker.get_task(
|
|
56
|
+
task: dict = self.status_tracker.get_task(task=event_msg.event_name, task_id=event_msg.job_id)
|
|
57
57
|
|
|
58
58
|
if task is None:
|
|
59
59
|
self.status_tracker.create_task(
|
|
60
60
|
trace_id=event_msg.trace_id,
|
|
61
61
|
span_id=event_msg.span_id,
|
|
62
|
-
entity_id=event_msg.payload.get("entity_id"),
|
|
63
62
|
task=event_msg.event_name,
|
|
64
|
-
status=TaskStatus.PROCESSING.value
|
|
63
|
+
status=TaskStatus.PROCESSING.value,
|
|
64
|
+
task_id=event_msg.job_id
|
|
65
65
|
)
|
|
66
66
|
|
|
67
67
|
# NOTE: From where are we going to set the tracking payload for an event
|
|
@@ -89,9 +89,9 @@ class EventExecutor:
|
|
|
89
89
|
self.status_tracker.mark_task_as_failure(
|
|
90
90
|
span_id=event_msg.span_id,
|
|
91
91
|
trace_id=event_msg.trace_id,
|
|
92
|
-
entity_id=event_msg.payload.get("entity_id"),
|
|
93
92
|
task=event_msg.event_name,
|
|
94
|
-
failure_reason=str(e)
|
|
93
|
+
failure_reason=str(e),
|
|
94
|
+
task_id=event_msg.job_id
|
|
95
95
|
)
|
|
96
96
|
|
|
97
97
|
# NOTE: dead letter queue is yet to be implemented
|
|
@@ -112,19 +112,19 @@ class EventExecutor:
|
|
|
112
112
|
"""
|
|
113
113
|
Wrapper around message processing to handle cleanup and status updates.
|
|
114
114
|
"""
|
|
115
|
-
event_msg = AWSReceiveEventMessage(message)
|
|
116
115
|
success = False
|
|
117
116
|
|
|
118
117
|
try:
|
|
118
|
+
event_msg = AWSReceiveEventMessage(message)
|
|
119
119
|
success = self._process_message(event_msg, callback)
|
|
120
120
|
finally:
|
|
121
121
|
if success:
|
|
122
122
|
self.status_tracker.update_task(
|
|
123
123
|
span_id=event_msg.span_id,
|
|
124
124
|
trace_id=event_msg.trace_id,
|
|
125
|
-
entity_id=event_msg.payload.get("entity_id"),
|
|
126
125
|
task=event_msg.event_name,
|
|
127
|
-
status=TaskStatus.COMPLETED.value
|
|
126
|
+
status=TaskStatus.COMPLETED.value,
|
|
127
|
+
task_id=event_msg.job_id
|
|
128
128
|
)
|
|
129
129
|
self.databus.delete_message(event_msg)
|
|
130
130
|
|
|
@@ -15,7 +15,7 @@ class PublishEventMessage:
|
|
|
15
15
|
event_dict (Dict[str, Any]): Dictionary containing complete event data including:
|
|
16
16
|
- event_name: Name of the event being published
|
|
17
17
|
- payload: Event payload containing event-specific data
|
|
18
|
-
-
|
|
18
|
+
- event_meta: Dictionary containing trace_id and span_id
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
21
|
def __init__(self, event_dict: Dict[str, Any]):
|
|
@@ -25,8 +25,8 @@ class PublishEventMessage:
|
|
|
25
25
|
event_dict: Dictionary containing event data in the format:
|
|
26
26
|
{
|
|
27
27
|
"event_name": str,
|
|
28
|
-
"
|
|
29
|
-
"
|
|
28
|
+
"event_payload": dict,
|
|
29
|
+
"event_meta": {
|
|
30
30
|
"trace_id": str,
|
|
31
31
|
"span_id": str
|
|
32
32
|
}
|
|
@@ -38,15 +38,15 @@ class PublishEventMessage:
|
|
|
38
38
|
def _validate_and_set_trace_ids(self):
|
|
39
39
|
"""Validates and sets trace_id and span_id in the event dictionary.
|
|
40
40
|
|
|
41
|
-
If
|
|
41
|
+
If event_meta section doesn't exist, creates it.
|
|
42
42
|
If trace_id or span_id don't exist, generates them using UUID4.
|
|
43
43
|
"""
|
|
44
|
-
# ensure
|
|
45
|
-
if "
|
|
44
|
+
# ensure event_meta dictionary exists
|
|
45
|
+
if "event_meta" not in self.event_dict or not self.event_dict["event_meta"]["trace_id"]:
|
|
46
46
|
raise Exception("Message metdata or trace_id not found.")
|
|
47
47
|
|
|
48
48
|
# always generate a new job_id
|
|
49
|
-
self.event_dict["
|
|
49
|
+
self.event_dict["event_meta"]["job_id"] = str(uuid.uuid4())
|
|
50
50
|
|
|
51
51
|
def to_dict(self) -> dict:
|
|
52
52
|
"""Convert the event to a dictionary format"""
|
|
@@ -66,26 +66,26 @@ class ReceiveEventMessage:
|
|
|
66
66
|
Attributes:
|
|
67
67
|
raw_message (dict): The original raw message received
|
|
68
68
|
event_name (str): Name of the received event
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
event_payload (dict): Event payload containing event-specific data
|
|
70
|
+
event_meta (dict): Metadata including trace_id and span_id
|
|
71
71
|
trace_id (str): Unique identifier for tracing a request across services
|
|
72
72
|
span_id (str): Unique identifier for this specific operation within the trace
|
|
73
73
|
"""
|
|
74
74
|
def __init__(self, raw_message: dict):
|
|
75
75
|
self.raw_message = raw_message
|
|
76
|
-
|
|
77
76
|
self.event_name = raw_message.get("event_name")
|
|
78
77
|
|
|
79
78
|
# event payload will contain entity_id, connector_id and other info
|
|
80
79
|
# needed for specific events
|
|
81
|
-
self.payload: dict = raw_message.get("
|
|
82
|
-
self.
|
|
80
|
+
self.payload: dict = raw_message.get("event_payload", {})
|
|
81
|
+
self.event_meta: dict = raw_message.get("event_meta", {})
|
|
83
82
|
|
|
84
|
-
self.trace_id = self.
|
|
85
|
-
self.job_id = self.
|
|
83
|
+
self.trace_id = self.event_meta.get("trace_id")
|
|
84
|
+
self.job_id = self.event_meta.get("job_id")
|
|
86
85
|
|
|
87
86
|
# create span id when we recieve a message
|
|
88
|
-
self.
|
|
87
|
+
self.event_meta["span_id"] = str(uuid.uuid4())
|
|
88
|
+
self.span_id = self.event_meta["span_id"]
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
class NATSReceiveEventMessage(ReceiveEventMessage):
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/requires.txt
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/fdc_shared_kernel.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/async_task_executor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/enums/async_task_status.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/event_executor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/custom_exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/exceptions/http_exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/http/httpx_http_client.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/http/request_http_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/aws_databus.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/http_databus.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/nats_databus.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/nats_publisher.py
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/messaging/utils/aws_utility.py
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/metrics/status_tracker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/security/key_vault/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/status_tracker/__init__.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/status_tracker/status_tracker.py
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/config/__init__.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/config/test_config.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/logger/__init__.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/logger/test_logger.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/messaging/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/tests/utils/test_string_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/data_validators_utils.py
RENAMED
|
File without changes
|
{fdc_shared_kernel-0.0.52 → fdc_shared_kernel-0.0.53}/shared_kernel/utils/date_format_utils.py
RENAMED
|
File without changes
|
|
File without changes
|