aws-lambda-powertools 3.10.1a4__py3-none-any.whl → 3.10.1a5__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.
- aws_lambda_powertools/event_handler/exceptions.py +33 -5
- aws_lambda_powertools/logging/buffer/functions.py +2 -1
- aws_lambda_powertools/logging/formatter.py +11 -6
- aws_lambda_powertools/logging/formatters/datadog.py +3 -1
- aws_lambda_powertools/logging/logger.py +3 -1
- aws_lambda_powertools/logging/utils.py +3 -1
- aws_lambda_powertools/metrics/base.py +3 -1
- aws_lambda_powertools/metrics/metrics.py +3 -1
- aws_lambda_powertools/shared/version.py +1 -1
- aws_lambda_powertools/tracing/base.py +2 -1
- aws_lambda_powertools/tracing/tracer.py +2 -1
- aws_lambda_powertools/utilities/batch/base.py +3 -1
- aws_lambda_powertools/utilities/batch/decorators.py +3 -1
- {aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/METADATA +1 -1
- {aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/RECORD +17 -17
- {aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/LICENSE +0 -0
- {aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/WHEEL +0 -0
@@ -2,7 +2,7 @@ from http import HTTPStatus
|
|
2
2
|
|
3
3
|
|
4
4
|
class ServiceError(Exception):
|
5
|
-
"""
|
5
|
+
"""Powertools class HTTP Service Error"""
|
6
6
|
|
7
7
|
def __init__(self, status_code: int, msg: str):
|
8
8
|
"""
|
@@ -18,28 +18,56 @@ class ServiceError(Exception):
|
|
18
18
|
|
19
19
|
|
20
20
|
class BadRequestError(ServiceError):
|
21
|
-
"""
|
21
|
+
"""Powertools class Bad Request Error (400)"""
|
22
22
|
|
23
23
|
def __init__(self, msg: str):
|
24
24
|
super().__init__(HTTPStatus.BAD_REQUEST, msg)
|
25
25
|
|
26
26
|
|
27
27
|
class UnauthorizedError(ServiceError):
|
28
|
-
"""
|
28
|
+
"""Powertools class Unauthorized Error (401)"""
|
29
29
|
|
30
30
|
def __init__(self, msg: str):
|
31
31
|
super().__init__(HTTPStatus.UNAUTHORIZED, msg)
|
32
32
|
|
33
33
|
|
34
|
+
class ForbiddenError(ServiceError):
|
35
|
+
"""Powertools class Forbidden Error (403)"""
|
36
|
+
|
37
|
+
def __init__(self, msg: str):
|
38
|
+
super().__init__(HTTPStatus.FORBIDDEN, msg)
|
39
|
+
|
40
|
+
|
34
41
|
class NotFoundError(ServiceError):
|
35
|
-
"""
|
42
|
+
"""Powertools class Not Found Error (404)"""
|
36
43
|
|
37
44
|
def __init__(self, msg: str = "Not found"):
|
38
45
|
super().__init__(HTTPStatus.NOT_FOUND, msg)
|
39
46
|
|
40
47
|
|
48
|
+
class RequestTimeoutError(ServiceError):
|
49
|
+
"""Powertools class Request Timeout Error (408)"""
|
50
|
+
|
51
|
+
def __init__(self, msg: str):
|
52
|
+
super().__init__(HTTPStatus.REQUEST_TIMEOUT, msg)
|
53
|
+
|
54
|
+
|
55
|
+
class RequestEntityTooLargeError(ServiceError):
|
56
|
+
"""Powertools class Request Entity Too Large Error (413)"""
|
57
|
+
|
58
|
+
def __init__(self, msg: str):
|
59
|
+
super().__init__(HTTPStatus.REQUEST_ENTITY_TOO_LARGE, msg)
|
60
|
+
|
61
|
+
|
41
62
|
class InternalServerError(ServiceError):
|
42
|
-
"""
|
63
|
+
"""Powertools class Internal Server Error (500)"""
|
43
64
|
|
44
65
|
def __init__(self, message: str):
|
45
66
|
super().__init__(HTTPStatus.INTERNAL_SERVER_ERROR, message)
|
67
|
+
|
68
|
+
|
69
|
+
class ServiceUnavailableError(ServiceError):
|
70
|
+
"""Powertools class Service Unavailable Error (503)"""
|
71
|
+
|
72
|
+
def __init__(self, msg: str):
|
73
|
+
super().__init__(HTTPStatus.SERVICE_UNAVAILABLE, msg)
|
@@ -2,10 +2,11 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
import sys
|
4
4
|
import time
|
5
|
-
from typing import TYPE_CHECKING, Any
|
5
|
+
from typing import TYPE_CHECKING, Any
|
6
6
|
|
7
7
|
if TYPE_CHECKING:
|
8
8
|
import logging
|
9
|
+
from collections.abc import Mapping
|
9
10
|
|
10
11
|
|
11
12
|
def _create_buffer_record(
|
@@ -11,12 +11,14 @@ from contextlib import contextmanager
|
|
11
11
|
from contextvars import ContextVar
|
12
12
|
from datetime import datetime, timezone
|
13
13
|
from functools import partial
|
14
|
-
from typing import TYPE_CHECKING, Any
|
14
|
+
from typing import TYPE_CHECKING, Any
|
15
15
|
|
16
16
|
from aws_lambda_powertools.shared import constants
|
17
17
|
from aws_lambda_powertools.shared.functions import powertools_dev_is_set
|
18
18
|
|
19
19
|
if TYPE_CHECKING:
|
20
|
+
from collections.abc import Callable, Generator, Iterable
|
21
|
+
|
20
22
|
from aws_lambda_powertools.logging.types import LogRecord, LogStackTrace
|
21
23
|
|
22
24
|
RESERVED_LOG_ATTRS = (
|
@@ -68,7 +70,7 @@ class BasePowertoolsFormatter(logging.Formatter, metaclass=ABCMeta):
|
|
68
70
|
yield
|
69
71
|
|
70
72
|
# These specific thread-safe methods are necessary to manage shared context in concurrent environments.
|
71
|
-
# They prevent race conditions and ensure data consistency across multiple threads.
|
73
|
+
# They prevent race conditions and ensure data consistency across multiple threads and logger.
|
72
74
|
def thread_safe_append_keys(self, **additional_keys) -> None:
|
73
75
|
raise NotImplementedError()
|
74
76
|
|
@@ -194,9 +196,10 @@ class LambdaPowertoolsFormatter(BasePowertoolsFormatter):
|
|
194
196
|
|
195
197
|
# exception and exception_name fields can be added as extra key
|
196
198
|
# in any log level, we try to extract and use them first
|
197
|
-
extracted_exception, extracted_exception_name = self._extract_log_exception(log_record=record)
|
199
|
+
extracted_exception, extracted_exception_name, exception_notes = self._extract_log_exception(log_record=record)
|
198
200
|
formatted_log["exception"] = formatted_log.get("exception", extracted_exception)
|
199
201
|
formatted_log["exception_name"] = formatted_log.get("exception_name", extracted_exception_name)
|
202
|
+
formatted_log["exception_notes"] = formatted_log.get("exception_notes", exception_notes)
|
200
203
|
if self.serialize_stacktrace:
|
201
204
|
# Generate the traceback from the traceback library
|
202
205
|
formatted_log["stack_trace"] = self._serialize_stacktrace(log_record=record)
|
@@ -380,7 +383,7 @@ class LambdaPowertoolsFormatter(BasePowertoolsFormatter):
|
|
380
383
|
|
381
384
|
return None
|
382
385
|
|
383
|
-
def _extract_log_exception(self, log_record: logging.LogRecord) -> tuple[str, str] | tuple[None, None]:
|
386
|
+
def _extract_log_exception(self, log_record: logging.LogRecord) -> tuple[str, str, list] | tuple[None, None, None]:
|
384
387
|
"""Format traceback information, if available
|
385
388
|
|
386
389
|
Parameters
|
@@ -393,10 +396,12 @@ class LambdaPowertoolsFormatter(BasePowertoolsFormatter):
|
|
393
396
|
log_record: tuple[str, str] | tuple[None, None]
|
394
397
|
Log record with constant traceback info and exception name
|
395
398
|
"""
|
399
|
+
|
396
400
|
if isinstance(log_record.exc_info, tuple) and hasattr(log_record.exc_info[0], "__name__"):
|
397
|
-
|
401
|
+
exception_notes = getattr(log_record.exc_info[1], "__notes__", None)
|
402
|
+
return self.formatException(log_record.exc_info), log_record.exc_info[0].__name__, exception_notes # type: ignore
|
398
403
|
|
399
|
-
return None, None
|
404
|
+
return None, None, None
|
400
405
|
|
401
406
|
def _extract_log_keys(self, log_record: logging.LogRecord) -> dict[str, Any]:
|
402
407
|
"""Extract and parse custom and reserved log keys
|
@@ -1,10 +1,12 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
|
-
from typing import TYPE_CHECKING, Any
|
3
|
+
from typing import TYPE_CHECKING, Any
|
4
4
|
|
5
5
|
from aws_lambda_powertools.logging.formatter import LambdaPowertoolsFormatter
|
6
6
|
|
7
7
|
if TYPE_CHECKING:
|
8
|
+
from collections.abc import Callable
|
9
|
+
|
8
10
|
from aws_lambda_powertools.logging.types import LogRecord
|
9
11
|
|
10
12
|
|
@@ -14,7 +14,7 @@ import random
|
|
14
14
|
import sys
|
15
15
|
import warnings
|
16
16
|
from contextlib import contextmanager
|
17
|
-
from typing import IO, TYPE_CHECKING, Any,
|
17
|
+
from typing import IO, TYPE_CHECKING, Any, TypeVar, cast, overload
|
18
18
|
|
19
19
|
from aws_lambda_powertools.logging.buffer.cache import LoggerBufferCache
|
20
20
|
from aws_lambda_powertools.logging.buffer.functions import _check_minimum_buffer_log_level, _create_buffer_record
|
@@ -45,6 +45,8 @@ from aws_lambda_powertools.utilities import jmespath_utils
|
|
45
45
|
from aws_lambda_powertools.warnings import PowertoolsUserWarning
|
46
46
|
|
47
47
|
if TYPE_CHECKING:
|
48
|
+
from collections.abc import Callable, Generator, Iterable, Mapping
|
49
|
+
|
48
50
|
from aws_lambda_powertools.logging.buffer.config import LoggerBufferConfig
|
49
51
|
from aws_lambda_powertools.shared.types import AnyCallableT
|
50
52
|
|
@@ -1,9 +1,11 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
import logging
|
4
|
-
from typing import TYPE_CHECKING
|
4
|
+
from typing import TYPE_CHECKING
|
5
5
|
|
6
6
|
if TYPE_CHECKING:
|
7
|
+
from collections.abc import Callable
|
8
|
+
|
7
9
|
from aws_lambda_powertools.logging.logger import Logger
|
8
10
|
|
9
11
|
PACKAGE_LOGGER = "aws_lambda_powertools"
|
@@ -15,7 +15,7 @@ import os
|
|
15
15
|
import warnings
|
16
16
|
from collections import defaultdict
|
17
17
|
from contextlib import contextmanager
|
18
|
-
from typing import TYPE_CHECKING, Any
|
18
|
+
from typing import TYPE_CHECKING, Any
|
19
19
|
|
20
20
|
from aws_lambda_powertools.metrics.exceptions import (
|
21
21
|
MetricResolutionError,
|
@@ -34,6 +34,8 @@ from aws_lambda_powertools.shared import constants
|
|
34
34
|
from aws_lambda_powertools.shared.functions import resolve_env_var_choice
|
35
35
|
|
36
36
|
if TYPE_CHECKING:
|
37
|
+
from collections.abc import Callable, Generator
|
38
|
+
|
37
39
|
from aws_lambda_powertools.metrics.types import MetricNameUnitResolution
|
38
40
|
|
39
41
|
logger = logging.getLogger(__name__)
|
@@ -1,11 +1,13 @@
|
|
1
1
|
# NOTE: keeps for compatibility
|
2
2
|
from __future__ import annotations
|
3
3
|
|
4
|
-
from typing import TYPE_CHECKING, Any
|
4
|
+
from typing import TYPE_CHECKING, Any
|
5
5
|
|
6
6
|
from aws_lambda_powertools.metrics.provider.cloudwatch_emf.cloudwatch import AmazonCloudWatchEMFProvider
|
7
7
|
|
8
8
|
if TYPE_CHECKING:
|
9
|
+
from collections.abc import Callable
|
10
|
+
|
9
11
|
from aws_lambda_powertools.metrics.base import MetricResolution, MetricUnit
|
10
12
|
from aws_lambda_powertools.metrics.provider.cloudwatch_emf.types import CloudWatchEMFOutput
|
11
13
|
from aws_lambda_powertools.shared.types import AnyCallableT
|
@@ -8,11 +8,12 @@ from __future__ import annotations
|
|
8
8
|
|
9
9
|
import abc
|
10
10
|
from contextlib import contextmanager
|
11
|
-
from typing import TYPE_CHECKING, Any
|
11
|
+
from typing import TYPE_CHECKING, Any
|
12
12
|
|
13
13
|
if TYPE_CHECKING:
|
14
14
|
import numbers
|
15
15
|
import traceback
|
16
|
+
from collections.abc import Generator, Sequence
|
16
17
|
|
17
18
|
|
18
19
|
class BaseSegment(abc.ABC):
|
@@ -6,7 +6,7 @@ import functools
|
|
6
6
|
import inspect
|
7
7
|
import logging
|
8
8
|
import os
|
9
|
-
from typing import TYPE_CHECKING, Any,
|
9
|
+
from typing import TYPE_CHECKING, Any, TypeVar, cast, overload
|
10
10
|
|
11
11
|
from aws_lambda_powertools.shared import constants
|
12
12
|
from aws_lambda_powertools.shared.functions import (
|
@@ -19,6 +19,7 @@ from aws_lambda_powertools.shared.types import AnyCallableT
|
|
19
19
|
|
20
20
|
if TYPE_CHECKING:
|
21
21
|
import numbers
|
22
|
+
from collections.abc import Callable, Sequence
|
22
23
|
|
23
24
|
from aws_lambda_powertools.tracing.base import BaseProvider, BaseSegment
|
24
25
|
|
@@ -14,7 +14,7 @@ import os
|
|
14
14
|
import sys
|
15
15
|
from abc import ABC, abstractmethod
|
16
16
|
from enum import Enum
|
17
|
-
from typing import TYPE_CHECKING, Any,
|
17
|
+
from typing import TYPE_CHECKING, Any, Tuple, Union, overload
|
18
18
|
|
19
19
|
from aws_lambda_powertools.shared import constants
|
20
20
|
from aws_lambda_powertools.utilities.batch.exceptions import (
|
@@ -31,6 +31,8 @@ from aws_lambda_powertools.utilities.data_classes.kinesis_stream_event import (
|
|
31
31
|
from aws_lambda_powertools.utilities.data_classes.sqs_event import SQSRecord
|
32
32
|
|
33
33
|
if TYPE_CHECKING:
|
34
|
+
from collections.abc import Callable
|
35
|
+
|
34
36
|
from aws_lambda_powertools.utilities.batch.types import (
|
35
37
|
PartialItemFailureResponse,
|
36
38
|
PartialItemFailures,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
import warnings
|
4
|
-
from typing import TYPE_CHECKING, Any
|
4
|
+
from typing import TYPE_CHECKING, Any
|
5
5
|
|
6
6
|
from typing_extensions import deprecated
|
7
7
|
|
@@ -16,6 +16,8 @@ from aws_lambda_powertools.utilities.batch.exceptions import UnexpectedBatchType
|
|
16
16
|
from aws_lambda_powertools.warnings import PowertoolsDeprecationWarning
|
17
17
|
|
18
18
|
if TYPE_CHECKING:
|
19
|
+
from collections.abc import Awaitable, Callable
|
20
|
+
|
19
21
|
from aws_lambda_powertools.utilities.batch.types import PartialItemFailureResponse
|
20
22
|
from aws_lambda_powertools.utilities.typing import LambdaContext
|
21
23
|
|
{aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: aws_lambda_powertools
|
3
|
-
Version: 3.10.
|
3
|
+
Version: 3.10.1a5
|
4
4
|
Summary: Powertools for AWS Lambda (Python) is a developer toolkit to implement Serverless best practices and increase developer velocity.
|
5
5
|
License: MIT
|
6
6
|
Keywords: aws_lambda_powertools,aws,tracing,logging,lambda,powertools,feature_flags,idempotency,middleware
|
{aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/RECORD
RENAMED
@@ -4,7 +4,7 @@ aws_lambda_powertools/event_handler/api_gateway.py,sha256=tV61EQ-Jd0Dzgaoy-JSW8m
|
|
4
4
|
aws_lambda_powertools/event_handler/appsync.py,sha256=mnuSkA9NhszX9naIvCveI5ivnJO5vbY7FPBIVWvg3S8,19209
|
5
5
|
aws_lambda_powertools/event_handler/bedrock_agent.py,sha256=oehV8h8cvIMUxbHah-NZNqzFtpvrgUGwH20aisfz9OY,14445
|
6
6
|
aws_lambda_powertools/event_handler/content_types.py,sha256=0MKsKNu-SSrxbULVKnUjwgK-lVXhVD7BBjZ4Js0kEsI,163
|
7
|
-
aws_lambda_powertools/event_handler/exceptions.py,sha256=
|
7
|
+
aws_lambda_powertools/event_handler/exceptions.py,sha256=JgNxrdKTLBqd84Lhqb9NlXX7g54K8Xx2u9LJtpnOkdE,1919
|
8
8
|
aws_lambda_powertools/event_handler/graphql_appsync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
aws_lambda_powertools/event_handler/graphql_appsync/_registry.py,sha256=dR9G3xd3szJYsl7f29Bfih7t5E0EpmyxrdrNRDoBUHI,2514
|
10
10
|
aws_lambda_powertools/event_handler/graphql_appsync/base.py,sha256=jlyg-zUs5bosEroO1m9oewYXc4XEst6b6vrkSPKRJOs,5357
|
@@ -40,24 +40,24 @@ aws_lambda_powertools/logging/__init__.py,sha256=G5MTkVqaQvpfa7k3fGkj4QN0KU6nFfP
|
|
40
40
|
aws_lambda_powertools/logging/buffer/__init__.py,sha256=2sdmJToRBp6QJI2VQuvgjuxsJkTMd4dL3TYp6dASiOQ,109
|
41
41
|
aws_lambda_powertools/logging/buffer/cache.py,sha256=rh8XjDsfGEvXN8eRXHk8nAiN06rZEK1bcIZVuLshoHI,6058
|
42
42
|
aws_lambda_powertools/logging/buffer/config.py,sha256=tKOlgGhkAY214Fskn6u-Xm9pdTTbo3XJSwSoSJfoIW4,2383
|
43
|
-
aws_lambda_powertools/logging/buffer/functions.py,sha256=
|
43
|
+
aws_lambda_powertools/logging/buffer/functions.py,sha256=fa4C8kN603YMyKHFsb6eAHHoKyywEP8ukDfHBtdu8Ps,3980
|
44
44
|
aws_lambda_powertools/logging/constants.py,sha256=P0XgbCmG4NiP96kx0qxe6QUC3ShN12doSIXTkobX7C4,309
|
45
45
|
aws_lambda_powertools/logging/correlation_paths.py,sha256=uHHrl03aWzpOsrGHZ-9E6PNoMFyKjv3APNMMkI1EN_c,411
|
46
46
|
aws_lambda_powertools/logging/exceptions.py,sha256=Fe_jk8O9vgUSUHxxOkz6Ev521aXsgPkMgA9Hb1nBn6g,232
|
47
47
|
aws_lambda_powertools/logging/filters.py,sha256=icet1o3-QSSvrmj2udL4ZYT0msf5b3rXj5l7p6dAxAs,523
|
48
|
-
aws_lambda_powertools/logging/formatter.py,sha256=
|
48
|
+
aws_lambda_powertools/logging/formatter.py,sha256=rVNzfEP34KCUUUfvb7dRhmHasPmFl-MS8V-u7KXGFto,19346
|
49
49
|
aws_lambda_powertools/logging/formatters/__init__.py,sha256=OqddpJcWMqRYhx5SFy-SPqtt72tkRZbfpEi_oCC47eI,301
|
50
|
-
aws_lambda_powertools/logging/formatters/datadog.py,sha256=
|
50
|
+
aws_lambda_powertools/logging/formatters/datadog.py,sha256=ReH9e4SDxfvHCLN_y5Avjy6RFok8eKXs8v-4Dp51rT4,3201
|
51
51
|
aws_lambda_powertools/logging/lambda_context.py,sha256=VHst_6hxMpXgScoxNwaC61UXPTIdd3AEBHTPzb4esPc,1736
|
52
|
-
aws_lambda_powertools/logging/logger.py,sha256=
|
52
|
+
aws_lambda_powertools/logging/logger.py,sha256=91nuiS_Ig94oQni7QgyEhyv_m-zAuPNrNXCBvleEAjg,49042
|
53
53
|
aws_lambda_powertools/logging/types.py,sha256=Zc95nGdZ2sJUEPdwR0uoArT_F-JSKfpS_LokdCVO0nQ,1263
|
54
|
-
aws_lambda_powertools/logging/utils.py,sha256=
|
54
|
+
aws_lambda_powertools/logging/utils.py,sha256=YpYre4EBGxjZi7ZE0o8Cfdq3iFP_UQacFrOgfpToRVo,4101
|
55
55
|
aws_lambda_powertools/metrics/__init__.py,sha256=B5FpJS_VR7zivm2ylvUF8RHBthKz4aDk0VA5GpDn3Tk,592
|
56
|
-
aws_lambda_powertools/metrics/base.py,sha256=
|
56
|
+
aws_lambda_powertools/metrics/base.py,sha256=Vx9e7GIgnT100-lWkS5ocacDxOjX6NJrajfIjtKoxP0,23806
|
57
57
|
aws_lambda_powertools/metrics/exceptions.py,sha256=HX9k4L4RXI9Ol8kVr5U9FYmUsrN_3v2tugAmzNVp0ng,418
|
58
58
|
aws_lambda_powertools/metrics/functions.py,sha256=Njw-gKtAt_YpKw5ltQMcKFbGvJBFbs3J60t3C0oczB4,6190
|
59
59
|
aws_lambda_powertools/metrics/metric.py,sha256=utHoGjKlx-e1zhgq51ChXRGx3MNSNv3qwanWhlksY0s,165
|
60
|
-
aws_lambda_powertools/metrics/metrics.py,sha256=
|
60
|
+
aws_lambda_powertools/metrics/metrics.py,sha256=CDjQjxY2BE3YDVZtvWuux9NcxPWjl5ly0ofHLFdFxSg,8278
|
61
61
|
aws_lambda_powertools/metrics/provider/__init__.py,sha256=7Cg6Rwzy6pYW6LjeWGEl0opDaKleBSGrMPfGNXCH1i4,104
|
62
62
|
aws_lambda_powertools/metrics/provider/base.py,sha256=w1JBW2uYezxdYv3BbersCpzS4-GEfm9G8xk4opS1C-o,6879
|
63
63
|
aws_lambda_powertools/metrics/provider/cloudwatch_emf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -88,15 +88,15 @@ aws_lambda_powertools/shared/json_encoder.py,sha256=JQeWNu-4M7_xI_hqYExrxsb3OcEH
|
|
88
88
|
aws_lambda_powertools/shared/lazy_import.py,sha256=TbXQm2bcwXdZrYdBaJJXIswyLlumM85RJ_A_0w-h-GU,2019
|
89
89
|
aws_lambda_powertools/shared/types.py,sha256=APkI38HbiTpSF19NSNii8Ydx73vmVUVotgEQ9jHruEI,124
|
90
90
|
aws_lambda_powertools/shared/user_agent.py,sha256=DrCMFQuT4a4iIrpcWpAIjY37EFqR9-QxlxDGD-Nn9Gg,7081
|
91
|
-
aws_lambda_powertools/shared/version.py,sha256=
|
91
|
+
aws_lambda_powertools/shared/version.py,sha256=_bGD-WpodRbAZdOe9rIXvu4tC5sRpqwOBowgqR9JE-c,85
|
92
92
|
aws_lambda_powertools/tracing/__init__.py,sha256=f4bMThOPBPWTPVcYqcAIErAJPerMsf3H_Z4gCXCsK9I,141
|
93
|
-
aws_lambda_powertools/tracing/base.py,sha256=
|
93
|
+
aws_lambda_powertools/tracing/base.py,sha256=WSO986XGBOe9K0F2SnG6ustJokIrtO0m0mcL8N7mfno,4544
|
94
94
|
aws_lambda_powertools/tracing/extensions.py,sha256=APOfXOq-hRBKaK5WyfIyrd_6M1_9SWJZ3zxLA9jDZzU,492
|
95
|
-
aws_lambda_powertools/tracing/tracer.py,sha256=
|
95
|
+
aws_lambda_powertools/tracing/tracer.py,sha256=WEZMAL3T-Y5CfBbtXpE102sYE8uzJsjPapwn67097K0,32488
|
96
96
|
aws_lambda_powertools/utilities/__init__.py,sha256=BhnoYxIaDboi8oCsEMAizR2Bp-EaJJ-OcdMa9q07thc,39
|
97
97
|
aws_lambda_powertools/utilities/batch/__init__.py,sha256=mjFmfhJwot_3miZrstDcMKH7LzM_0aD35z-581HgZfY,1073
|
98
|
-
aws_lambda_powertools/utilities/batch/base.py,sha256=
|
99
|
-
aws_lambda_powertools/utilities/batch/decorators.py,sha256=
|
98
|
+
aws_lambda_powertools/utilities/batch/base.py,sha256=Y9CQ9Y6pERKlQYqmAndg28HqLtxGukaQBqMcMH2D52w,25324
|
99
|
+
aws_lambda_powertools/utilities/batch/decorators.py,sha256=HK0DzPd9UWoyvIcH7feFYM3oqXzXlCkWmHyxkDTJR4U,9397
|
100
100
|
aws_lambda_powertools/utilities/batch/exceptions.py,sha256=ZbWgItDimiSXmrDlejIpGc-4mez8XKgl3MB5bAPlrCo,1765
|
101
101
|
aws_lambda_powertools/utilities/batch/sqs_fifo_partial_processor.py,sha256=MPE87ZithqQOcwzoZdYReOajc4mrbiKOsIXcXicznZE,4236
|
102
102
|
aws_lambda_powertools/utilities/batch/types.py,sha256=XgUSbOIfzY4d2z3cFntQHAe6hcmxt6fbvSpa2KaMLeU,1112
|
@@ -258,7 +258,7 @@ aws_lambda_powertools/utilities/validation/envelopes.py,sha256=YD5HOFx6IClQgii0n
|
|
258
258
|
aws_lambda_powertools/utilities/validation/exceptions.py,sha256=PKy_19zQMBJGCMMFl-sMkcm-cc0v3zZBn_bhGE4wKNo,2084
|
259
259
|
aws_lambda_powertools/utilities/validation/validator.py,sha256=x_1qpuKJBuWpgNU-zCD3Di-vXrZfyUu7oA5RmjZjr84,10034
|
260
260
|
aws_lambda_powertools/warnings/__init__.py,sha256=vqDVeZz8wGtD8WGYNSkQE7AHwqtIrPGRxuoJR_BBnSs,1193
|
261
|
-
aws_lambda_powertools-3.10.
|
262
|
-
aws_lambda_powertools-3.10.
|
263
|
-
aws_lambda_powertools-3.10.
|
264
|
-
aws_lambda_powertools-3.10.
|
261
|
+
aws_lambda_powertools-3.10.1a5.dist-info/LICENSE,sha256=vMHS2eBgmwPUIMPb7LQ4p7ib_FPVQXarVjAasflrTwo,951
|
262
|
+
aws_lambda_powertools-3.10.1a5.dist-info/METADATA,sha256=SF9EuBFvLAG7SP-aY3yF5BDMLi6jM1Ege6GRRa2c44Y,11187
|
263
|
+
aws_lambda_powertools-3.10.1a5.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
264
|
+
aws_lambda_powertools-3.10.1a5.dist-info/RECORD,,
|
{aws_lambda_powertools-3.10.1a4.dist-info → aws_lambda_powertools-3.10.1a5.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|