cloudsnorkel.cdk-turbo-layers 0.2.4__py3-none-any.whl → 0.2.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.
- cloudsnorkel/cdk_turbo_layers/__init__.py +20 -2
- cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py +21 -3
- cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.5.jsii.tgz +0 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info → cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info}/METADATA +6 -6
- cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/RECORD +9 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info → cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info}/WHEEL +1 -1
- cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.4.jsii.tgz +0 -0
- cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/RECORD +0 -9
- {cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info → cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info}/LICENSE +0 -0
- {cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info → cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
'''
|
|
1
|
+
r'''
|
|
2
2
|
# Turbo Layers for CDK
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@cloudsnorkel/cdk-turbo-layers)
|
|
@@ -176,6 +176,9 @@ All these examples are for Python, but the same API is available for Node.js, Ru
|
|
|
176
176
|
* [lovage](https://github.com/CloudSnorkel/lovage): standalone Python framework that uses the same trick to deploy decorated functions to AWS
|
|
177
177
|
* [serverless-pydeps](https://github.com/CloudSnorkel/serverless-pydeps): plugin for [Serverless Framework](https://www.serverless.com/) that speeds up deployment
|
|
178
178
|
'''
|
|
179
|
+
from pkgutil import extend_path
|
|
180
|
+
__path__ = extend_path(__path__, __name__)
|
|
181
|
+
|
|
179
182
|
import abc
|
|
180
183
|
import builtins
|
|
181
184
|
import datetime
|
|
@@ -186,7 +189,22 @@ import jsii
|
|
|
186
189
|
import publication
|
|
187
190
|
import typing_extensions
|
|
188
191
|
|
|
189
|
-
|
|
192
|
+
import typeguard
|
|
193
|
+
from importlib.metadata import version as _metadata_package_version
|
|
194
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
|
195
|
+
|
|
196
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
|
197
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
|
198
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
|
199
|
+
else:
|
|
200
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
|
201
|
+
pass
|
|
202
|
+
else:
|
|
203
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
|
204
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
|
205
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
|
206
|
+
else:
|
|
207
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
190
208
|
|
|
191
209
|
from ._jsii import *
|
|
192
210
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
from pkgutil import extend_path
|
|
2
|
+
__path__ = extend_path(__path__, __name__)
|
|
3
|
+
|
|
1
4
|
import abc
|
|
2
5
|
import builtins
|
|
3
6
|
import datetime
|
|
@@ -8,16 +11,31 @@ import jsii
|
|
|
8
11
|
import publication
|
|
9
12
|
import typing_extensions
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
import typeguard
|
|
15
|
+
from importlib.metadata import version as _metadata_package_version
|
|
16
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
|
17
|
+
|
|
18
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
|
19
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
|
20
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
|
21
|
+
else:
|
|
22
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
|
23
|
+
pass
|
|
24
|
+
else:
|
|
25
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
|
26
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
|
27
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
|
28
|
+
else:
|
|
29
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
12
30
|
|
|
13
31
|
import aws_cdk._jsii
|
|
14
32
|
import constructs._jsii
|
|
15
33
|
|
|
16
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
17
35
|
"@cloudsnorkel/cdk-turbo-layers",
|
|
18
|
-
"0.2.
|
|
36
|
+
"0.2.5",
|
|
19
37
|
__name__[0:-6],
|
|
20
|
-
"cdk-turbo-layers@0.2.
|
|
38
|
+
"cdk-turbo-layers@0.2.5.jsii.tgz",
|
|
21
39
|
)
|
|
22
40
|
|
|
23
41
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-turbo-layers
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Speed-up Lambda function deployment with dependency layers built in AWS
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-turbo-layers.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -20,11 +20,11 @@ Classifier: License :: OSI Approved
|
|
|
20
20
|
Requires-Python: ~=3.8
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: aws-cdk-lib
|
|
24
|
-
Requires-Dist: constructs
|
|
25
|
-
Requires-Dist: jsii
|
|
26
|
-
Requires-Dist: publication
|
|
27
|
-
Requires-Dist: typeguard
|
|
23
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.87.0
|
|
24
|
+
Requires-Dist: constructs<11.0.0,>=10.0.5
|
|
25
|
+
Requires-Dist: jsii<2.0.0,>=1.103.1
|
|
26
|
+
Requires-Dist: publication>=0.0.3
|
|
27
|
+
Requires-Dist: typeguard<5.0.0,>=2.13.3
|
|
28
28
|
|
|
29
29
|
# Turbo Layers for CDK
|
|
30
30
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
cloudsnorkel/cdk_turbo_layers/__init__.py,sha256=Cmyoa4ODFDNQZZSGG49QgcF0s3t5W1LfB1TOilSdcII,57910
|
|
2
|
+
cloudsnorkel/cdk_turbo_layers/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py,sha256=aG2Rb0rCylO9vHKrFeqFAXQYm8T7W9Vnl30M2lS_IJc,1470
|
|
4
|
+
cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.5.jsii.tgz,sha256=pSbTj1EJ-pDHzE4Hz7PbgTB3pJIDzw7nN58nu6gNUM0,333044
|
|
5
|
+
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
+
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/METADATA,sha256=kBdeWfq1G_5xmGzh4z5f3NYDj4iCtx0wToMkHXpnxLo,9699
|
|
7
|
+
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
8
|
+
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
+
cloudsnorkel.cdk_turbo_layers-0.2.5.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
cloudsnorkel/cdk_turbo_layers/__init__.py,sha256=JZVvuz5qSTJqRoLsLaKd10OkC296AjSrNZJ3C7s0-v0,56865
|
|
2
|
-
cloudsnorkel/cdk_turbo_layers/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
cloudsnorkel/cdk_turbo_layers/_jsii/__init__.py,sha256=RPDfjyncpgsPXlgezM1obPQI-SXEaghSLw0JhSMvF1s,426
|
|
4
|
-
cloudsnorkel/cdk_turbo_layers/_jsii/cdk-turbo-layers@0.2.4.jsii.tgz,sha256=RHYeGN3-bwdiNHGQtEdsrV9XE2Z0Zp5Xg3umyM-j61Q,329465
|
|
5
|
-
cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
-
cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/METADATA,sha256=5pDRYFD9nzTn8OI52JCYHcKQOuivky0FBNSAlwTDLNc,9696
|
|
7
|
-
cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
8
|
-
cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
-
cloudsnorkel.cdk_turbo_layers-0.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|