ajithapackage1 0.0.8__tar.gz → 0.0.23__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.
- {ajithapackage1-0.0.8/src/ajithapackage1.egg-info → ajithapackage1-0.0.23}/PKG-INFO +1 -1
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/setup.py +2 -2
- ajithapackage1-0.0.23/src/ajithapackage1/__init__.py +50 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1/_jsii/__init__.py +1 -1
- ajithapackage1-0.0.23/src/ajithapackage1/_jsii/ajithapackage1@0.0.23.jsii.tgz +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23/src/ajithapackage1.egg-info}/PKG-INFO +1 -1
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1.egg-info/SOURCES.txt +1 -1
- ajithapackage1-0.0.8/src/ajithapackage1/__init__.py +0 -128
- ajithapackage1-0.0.8/src/ajithapackage1/_jsii/ajithapackage1@0.0.8.jsii.tgz +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/LICENSE +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/MANIFEST.in +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/README.md +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/pyproject.toml +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/setup.cfg +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1/py.typed +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1.egg-info/dependency_links.txt +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1.egg-info/requires.txt +0 -0
- {ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1.egg-info/top_level.txt +0 -0
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "ajithapackage1",
|
8
|
-
"version": "0.0.
|
8
|
+
"version": "0.0.23",
|
9
9
|
"description": "ajithapackage1",
|
10
10
|
"license": "Apache-2.0",
|
11
11
|
"url": "https://github.com/ajestharl/genet-test-repo.git",
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"ajithapackage1._jsii": [
|
29
|
-
"ajithapackage1@0.0.
|
29
|
+
"ajithapackage1@0.0.23.jsii.tgz"
|
30
30
|
],
|
31
31
|
"ajithapackage1": [
|
32
32
|
"py.typed"
|
@@ -0,0 +1,50 @@
|
|
1
|
+
r'''
|
2
|
+
# replace this
|
3
|
+
'''
|
4
|
+
from pkgutil import extend_path
|
5
|
+
__path__ = extend_path(__path__, __name__)
|
6
|
+
|
7
|
+
import abc
|
8
|
+
import builtins
|
9
|
+
import datetime
|
10
|
+
import enum
|
11
|
+
import typing
|
12
|
+
|
13
|
+
import jsii
|
14
|
+
import publication
|
15
|
+
import typing_extensions
|
16
|
+
|
17
|
+
import typeguard
|
18
|
+
from importlib.metadata import version as _metadata_package_version
|
19
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
20
|
+
|
21
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
22
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
23
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
24
|
+
else:
|
25
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
26
|
+
pass
|
27
|
+
else:
|
28
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
29
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
30
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
31
|
+
else:
|
32
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
33
|
+
|
34
|
+
from ._jsii import *
|
35
|
+
|
36
|
+
|
37
|
+
class Hello(metaclass=jsii.JSIIMeta, jsii_type="ajithapackage1.Hello"):
|
38
|
+
def __init__(self) -> None:
|
39
|
+
jsii.create(self.__class__, self, [])
|
40
|
+
|
41
|
+
@jsii.member(jsii_name="sayHello")
|
42
|
+
def say_hello(self) -> builtins.str:
|
43
|
+
return typing.cast(builtins.str, jsii.invoke(self, "sayHello", []))
|
44
|
+
|
45
|
+
|
46
|
+
__all__ = [
|
47
|
+
"Hello",
|
48
|
+
]
|
49
|
+
|
50
|
+
publication.publish()
|
@@ -32,7 +32,7 @@ import aws_cdk._jsii
|
|
32
32
|
import constructs._jsii
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
|
-
"ajithapackage1", "0.0.
|
35
|
+
"ajithapackage1", "0.0.23", __name__[0:-6], "ajithapackage1@0.0.23.jsii.tgz"
|
36
36
|
)
|
37
37
|
|
38
38
|
__all__ = [
|
@@ -11,4 +11,4 @@ src/ajithapackage1.egg-info/dependency_links.txt
|
|
11
11
|
src/ajithapackage1.egg-info/requires.txt
|
12
12
|
src/ajithapackage1.egg-info/top_level.txt
|
13
13
|
src/ajithapackage1/_jsii/__init__.py
|
14
|
-
src/ajithapackage1/_jsii/ajithapackage1@0.0.
|
14
|
+
src/ajithapackage1/_jsii/ajithapackage1@0.0.23.jsii.tgz
|
@@ -1,128 +0,0 @@
|
|
1
|
-
r'''
|
2
|
-
# replace this
|
3
|
-
'''
|
4
|
-
from pkgutil import extend_path
|
5
|
-
__path__ = extend_path(__path__, __name__)
|
6
|
-
|
7
|
-
import abc
|
8
|
-
import builtins
|
9
|
-
import datetime
|
10
|
-
import enum
|
11
|
-
import typing
|
12
|
-
|
13
|
-
import jsii
|
14
|
-
import publication
|
15
|
-
import typing_extensions
|
16
|
-
|
17
|
-
import typeguard
|
18
|
-
from importlib.metadata import version as _metadata_package_version
|
19
|
-
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
20
|
-
|
21
|
-
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
22
|
-
if TYPEGUARD_MAJOR_VERSION <= 2:
|
23
|
-
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
24
|
-
else:
|
25
|
-
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
26
|
-
pass
|
27
|
-
else:
|
28
|
-
if TYPEGUARD_MAJOR_VERSION == 3:
|
29
|
-
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
30
|
-
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
31
|
-
else:
|
32
|
-
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
33
|
-
|
34
|
-
from ._jsii import *
|
35
|
-
|
36
|
-
|
37
|
-
class HelloWorld(metaclass=jsii.JSIIMeta, jsii_type="ajithapackage1.HelloWorld"):
|
38
|
-
def __init__(self, options: "IHelloOptions") -> None:
|
39
|
-
'''
|
40
|
-
:param options: -
|
41
|
-
'''
|
42
|
-
if __debug__:
|
43
|
-
type_hints = typing.get_type_hints(_typecheckingstub__212fa063b66ca519b8e31185e36384e4fa2fa5ede3e4cca962a73b0e9cefbeac)
|
44
|
-
check_type(argname="argument options", value=options, expected_type=type_hints["options"])
|
45
|
-
jsii.create(self.__class__, self, [options])
|
46
|
-
|
47
|
-
@jsii.member(jsii_name="generateInfo")
|
48
|
-
def generate_info(self) -> "IHelloInfo":
|
49
|
-
return typing.cast("IHelloInfo", jsii.invoke(self, "generateInfo", []))
|
50
|
-
|
51
|
-
@jsii.member(jsii_name="sayHello")
|
52
|
-
def say_hello(self) -> builtins.str:
|
53
|
-
return typing.cast(builtins.str, jsii.invoke(self, "sayHello", []))
|
54
|
-
|
55
|
-
|
56
|
-
@jsii.interface(jsii_type="ajithapackage1.IHelloInfo")
|
57
|
-
class IHelloInfo(typing_extensions.Protocol):
|
58
|
-
@builtins.property
|
59
|
-
@jsii.member(jsii_name="message")
|
60
|
-
def message(self) -> builtins.str:
|
61
|
-
...
|
62
|
-
|
63
|
-
@builtins.property
|
64
|
-
@jsii.member(jsii_name="timestamp")
|
65
|
-
def timestamp(self) -> builtins.str:
|
66
|
-
...
|
67
|
-
|
68
|
-
|
69
|
-
class _IHelloInfoProxy:
|
70
|
-
__jsii_type__: typing.ClassVar[str] = "ajithapackage1.IHelloInfo"
|
71
|
-
|
72
|
-
@builtins.property
|
73
|
-
@jsii.member(jsii_name="message")
|
74
|
-
def message(self) -> builtins.str:
|
75
|
-
return typing.cast(builtins.str, jsii.get(self, "message"))
|
76
|
-
|
77
|
-
@builtins.property
|
78
|
-
@jsii.member(jsii_name="timestamp")
|
79
|
-
def timestamp(self) -> builtins.str:
|
80
|
-
return typing.cast(builtins.str, jsii.get(self, "timestamp"))
|
81
|
-
|
82
|
-
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
83
|
-
typing.cast(typing.Any, IHelloInfo).__jsii_proxy_class__ = lambda : _IHelloInfoProxy
|
84
|
-
|
85
|
-
|
86
|
-
@jsii.interface(jsii_type="ajithapackage1.IHelloOptions")
|
87
|
-
class IHelloOptions(typing_extensions.Protocol):
|
88
|
-
@builtins.property
|
89
|
-
@jsii.member(jsii_name="name")
|
90
|
-
def name(self) -> builtins.str:
|
91
|
-
...
|
92
|
-
|
93
|
-
@builtins.property
|
94
|
-
@jsii.member(jsii_name="greeting")
|
95
|
-
def greeting(self) -> typing.Optional[builtins.str]:
|
96
|
-
...
|
97
|
-
|
98
|
-
|
99
|
-
class _IHelloOptionsProxy:
|
100
|
-
__jsii_type__: typing.ClassVar[str] = "ajithapackage1.IHelloOptions"
|
101
|
-
|
102
|
-
@builtins.property
|
103
|
-
@jsii.member(jsii_name="name")
|
104
|
-
def name(self) -> builtins.str:
|
105
|
-
return typing.cast(builtins.str, jsii.get(self, "name"))
|
106
|
-
|
107
|
-
@builtins.property
|
108
|
-
@jsii.member(jsii_name="greeting")
|
109
|
-
def greeting(self) -> typing.Optional[builtins.str]:
|
110
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "greeting"))
|
111
|
-
|
112
|
-
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
113
|
-
typing.cast(typing.Any, IHelloOptions).__jsii_proxy_class__ = lambda : _IHelloOptionsProxy
|
114
|
-
|
115
|
-
|
116
|
-
__all__ = [
|
117
|
-
"HelloWorld",
|
118
|
-
"IHelloInfo",
|
119
|
-
"IHelloOptions",
|
120
|
-
]
|
121
|
-
|
122
|
-
publication.publish()
|
123
|
-
|
124
|
-
def _typecheckingstub__212fa063b66ca519b8e31185e36384e4fa2fa5ede3e4cca962a73b0e9cefbeac(
|
125
|
-
options: IHelloOptions,
|
126
|
-
) -> None:
|
127
|
-
"""Type checking stubs"""
|
128
|
-
pass
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{ajithapackage1-0.0.8 → ajithapackage1-0.0.23}/src/ajithapackage1.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|