UnderAutomation.Fanuc 2.2.0.0__py3-none-any.whl → 2.3.0.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.
- underautomation/fanuc/ftp/internal/ftp_client_base.py +1 -1
- underautomation/fanuc/ftp/list/errall_section_item.py +12 -9
- underautomation/fanuc/ftp/list/error_list.py +2 -0
- underautomation/fanuc/ftp/variables/variable_reader.py +1 -1
- underautomation/fanuc/lib/UnderAutomation.Fanuc.dll +0 -0
- underautomation/fanuc/lib/version.txt +1 -1
- underautomation/fanuc/telnet/internal/telnet_client_base.py +1 -1
- {underautomation_fanuc-2.2.0.0.dist-info → underautomation_fanuc-2.3.0.0.dist-info}/METADATA +1 -1
- {underautomation_fanuc-2.2.0.0.dist-info → underautomation_fanuc-2.3.0.0.dist-info}/RECORD +11 -11
- {underautomation_fanuc-2.2.0.0.dist-info → underautomation_fanuc-2.3.0.0.dist-info}/WHEEL +0 -0
- {underautomation_fanuc-2.2.0.0.dist-info → underautomation_fanuc-2.3.0.0.dist-info}/top_level.txt +0 -0
|
@@ -15,7 +15,7 @@ import os
|
|
|
15
15
|
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
16
16
|
from UnderAutomation.Fanuc.Ftp.Internal import FtpClientBase as ftp_client_base
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
렫 = typing.TypeVar('렫')
|
|
19
19
|
class FtpClientBase:
|
|
20
20
|
def __init__(self, _internal = 0):
|
|
21
21
|
if(_internal == 0):
|
|
@@ -13,17 +13,20 @@ class ErrallSectionItem:
|
|
|
13
13
|
def __repr__(self):
|
|
14
14
|
return self._instance.ToString()
|
|
15
15
|
@property
|
|
16
|
-
def is_reset(self) -> bool:
|
|
17
|
-
return self._instance.IsReset
|
|
18
|
-
@property
|
|
19
16
|
def id(self) -> int:
|
|
20
17
|
return self._instance.Id
|
|
21
|
-
@id.setter
|
|
22
|
-
def id(self, value: int):
|
|
23
|
-
self._instance.Id = value
|
|
24
18
|
@property
|
|
25
19
|
def text(self) -> str:
|
|
26
20
|
return self._instance.Text
|
|
27
|
-
@
|
|
28
|
-
def
|
|
29
|
-
self._instance.
|
|
21
|
+
@property
|
|
22
|
+
def error_code(self) -> str:
|
|
23
|
+
return self._instance.ErrorCode
|
|
24
|
+
@property
|
|
25
|
+
def message(self) -> str:
|
|
26
|
+
return self._instance.Message
|
|
27
|
+
@property
|
|
28
|
+
def occurring_time(self) -> typing.Any:
|
|
29
|
+
return self._instance.OccurringTime
|
|
30
|
+
@property
|
|
31
|
+
def is_reset(self) -> bool:
|
|
32
|
+
return self._instance.IsReset
|
|
@@ -12,6 +12,8 @@ class ErrorList(IFanucContent):
|
|
|
12
12
|
self._instance = error_list()
|
|
13
13
|
else:
|
|
14
14
|
self._instance = _internal
|
|
15
|
+
def filter_active_alarms(self) -> typing.List[ErrallSectionItem]:
|
|
16
|
+
return [ErrallSectionItem(x) for x in self._instance.FilterActiveAlarms()]
|
|
15
17
|
@property
|
|
16
18
|
def name(self) -> str:
|
|
17
19
|
return self._instance.Name
|
|
@@ -43,7 +43,7 @@ import os
|
|
|
43
43
|
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
44
44
|
from UnderAutomation.Fanuc.Ftp.Variables import VariableReader as variable_reader
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
렫 = typing.TypeVar('렫')
|
|
47
47
|
class VariableReader(FileReader1[GenericVariableFile]):
|
|
48
48
|
def __init__(self, _internal = 0):
|
|
49
49
|
if(_internal == 0):
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.3.0.0
|
|
@@ -28,7 +28,7 @@ import os
|
|
|
28
28
|
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
29
29
|
from UnderAutomation.Fanuc.Telnet.Internal import TelnetClientBase as telnet_client_base
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
렫 = typing.TypeVar('렫')
|
|
32
32
|
T = typing.TypeVar('T')
|
|
33
33
|
class TelnetClientBase:
|
|
34
34
|
def __init__(self, _internal = 0):
|
|
@@ -50,7 +50,7 @@ underautomation/fanuc/ftp/diagnosis/task_state.py,sha256=Von_15c2oGqcIJ0BaRWsEUZ
|
|
|
50
50
|
underautomation/fanuc/ftp/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
51
|
underautomation/fanuc/ftp/internal/file_reader.py,sha256=1D_jioMRQxD1jBkdB7_MCypY0YT2hbfpAcovm-qGNt8,541
|
|
52
52
|
underautomation/fanuc/ftp/internal/file_reader_1.py,sha256=Nt3Y0U55qdOoru28bB9-7_nFHWZY0eekjlT3wgUQCRE,819
|
|
53
|
-
underautomation/fanuc/ftp/internal/ftp_client_base.py,sha256=
|
|
53
|
+
underautomation/fanuc/ftp/internal/ftp_client_base.py,sha256=6pCeNtuXrrkfNGd6bS749Jm2_KaBzUvTJroeinKZbLg,2870
|
|
54
54
|
underautomation/fanuc/ftp/internal/ftp_client_internal.py,sha256=eAnu39uF10oa2-jlbLju-KD-zOC84amc44KQ8r2cOBA,504
|
|
55
55
|
underautomation/fanuc/ftp/internal/ftp_connect_parameters_base.py,sha256=2m1YYExIUHxU8Wdnz94FNKEe0Wx7f_mFWba7dtLMxQY,772
|
|
56
56
|
underautomation/fanuc/ftp/internal/ftp_direct_file_handling.py,sha256=2uHlKAEhFyOfiDPeg5nqTVODe56JSTYT624CnZWtm-g,2109
|
|
@@ -61,8 +61,8 @@ underautomation/fanuc/ftp/internal/i_file_reader_1.py,sha256=m7xWstBkQxdPPLEUnmD
|
|
|
61
61
|
underautomation/fanuc/ftp/internal/section_parser.py,sha256=qVnlhIth0glUBtXF9x1sVsrl-sF9KRehGS3VIUdjcKM,879
|
|
62
62
|
underautomation/fanuc/ftp/internal/section_parser_1.py,sha256=DjEe94r96pYVjeECZyQVTNKlHcSagYlM3Eu2LKLK3vA,601
|
|
63
63
|
underautomation/fanuc/ftp/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
underautomation/fanuc/ftp/list/errall_section_item.py,sha256=
|
|
65
|
-
underautomation/fanuc/ftp/list/error_list.py,sha256
|
|
64
|
+
underautomation/fanuc/ftp/list/errall_section_item.py,sha256=R-2XatxF0MIboEozk0rnMsyXIZZRMLlmXr3qQPiHHNs,895
|
|
65
|
+
underautomation/fanuc/ftp/list/error_list.py,sha256=-nzJv343W3akGItS473CISGHu8vTKNOwWxgi48GEvmU,880
|
|
66
66
|
underautomation/fanuc/ftp/list/error_list_reader.py,sha256=d6j_Jo5GqvQgVLJCa_FYxCh2ZrbBP69_A4LkgVdmyxo,708
|
|
67
67
|
underautomation/fanuc/ftp/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
underautomation/fanuc/ftp/variables/aavm_grp_variable_type.py,sha256=D3zX8TSGn8TzlJBUVKsdKBDPIaSyJObgGmgg9s_LQao,5634
|
|
@@ -500,7 +500,7 @@ underautomation/fanuc/ftp/variables/usrtol_grp_variable_type.py,sha256=zfjL3mVH-
|
|
|
500
500
|
underautomation/fanuc/ftp/variables/value_kind.py,sha256=HmSB17zib9D5qpjTMii_g3MdOLz-I_U4RLxBI2FX4rs,351
|
|
501
501
|
underautomation/fanuc/ftp/variables/variable_file.py,sha256=f91gGWx2p2t7WNZfsuDLDeM6j-Sh-382X4a7Q33ny9k,464
|
|
502
502
|
underautomation/fanuc/ftp/variables/variable_file_list.py,sha256=Qg500m4B47mgZrtwyzFrxNuXG-h0LzBeNUrR6EOE3ZE,954
|
|
503
|
-
underautomation/fanuc/ftp/variables/variable_reader.py,sha256=
|
|
503
|
+
underautomation/fanuc/ftp/variables/variable_reader.py,sha256=tI1E2xdm3AecIxtSIjIvwliYcKaCyH6w03IIMrDsn5A,8615
|
|
504
504
|
underautomation/fanuc/ftp/variables/variable_reader_1.py,sha256=bfFiCUJTCHeZEq6vUw6Eeu6nFGqmBj31peOqP8OXT8o,657
|
|
505
505
|
underautomation/fanuc/ftp/variables/vars_config_variable_type.py,sha256=OATg99zzp41WxPOrPbAYag8iN-ovFn4cPoSBqbMO7Y0,1087
|
|
506
506
|
underautomation/fanuc/ftp/variables/vcal_mv_variable_type.py,sha256=HfLDVvrT3nTUzjwSejWr55iNgYBKC617MoFd1ohav84,1221
|
|
@@ -541,8 +541,8 @@ underautomation/fanuc/ftp/variables/zp_cfg_variable_type.py,sha256=aDATyAHfQy47w
|
|
|
541
541
|
underautomation/fanuc/ftp/variables/zp_cylinder_variable_type.py,sha256=_o41u5FiufVSmY6ta-68nUOl66FlKTmOH88yHCLglxs,957
|
|
542
542
|
underautomation/fanuc/ftp/variables/zp_grp_variable_type.py,sha256=uTEwLOmD7aeqDEsUg8NzRz5QIAZFUs8jMD_-feATx2A,1481
|
|
543
543
|
underautomation/fanuc/ftp/variables/zp_sphere_variable_type.py,sha256=oG4JwAbGeKn2NGp0qItHU1FNBvDloIe1r1MDzGn6IXs,879
|
|
544
|
-
underautomation/fanuc/lib/UnderAutomation.Fanuc.dll,sha256=
|
|
545
|
-
underautomation/fanuc/lib/version.txt,sha256=
|
|
544
|
+
underautomation/fanuc/lib/UnderAutomation.Fanuc.dll,sha256=k2mf98EW-P9pN2lAy8Ny7uiHFLcc9iXm3V3peQLpeAU,1703936
|
|
545
|
+
underautomation/fanuc/lib/version.txt,sha256=7uUOV_vqAODq948KJrlNIbMv3zxZSE94fs0QSptiS2U,7
|
|
546
546
|
underautomation/fanuc/license/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
547
|
underautomation/fanuc/license/invalid_license_exception.py,sha256=5Gw6EBXyqE82SJxcjCYReZk9pKBJqJGJGBgdmtQJPC8,604
|
|
548
548
|
underautomation/fanuc/license/license_info.py,sha256=2ugy8P-DTs31xDkcuPhn6RtDx9ZIj2aFmtTBwC0I0Qs,1602
|
|
@@ -657,10 +657,10 @@ underautomation/fanuc/telnet/unsimulate_result.py,sha256=f8A6O3dPTsNGOhbQNUGaQHf
|
|
|
657
657
|
underautomation/fanuc/telnet/variable_result.py,sha256=RzDtbeoCRW1nIxQMzVha1-eQEbAYd98xE0OBzi5pze8,449
|
|
658
658
|
underautomation/fanuc/telnet/variables_result.py,sha256=GjDCA2q9fx6AEFEjy5sEp3GY_4ZPJEsLzzr9OjUBZBk,453
|
|
659
659
|
underautomation/fanuc/telnet/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
660
|
-
underautomation/fanuc/telnet/internal/telnet_client_base.py,sha256=
|
|
660
|
+
underautomation/fanuc/telnet/internal/telnet_client_base.py,sha256=JkRr5l1Qpdgbzrp8DGTNNknywtH7C4iVsg-1FFUJCj4,7276
|
|
661
661
|
underautomation/fanuc/telnet/internal/telnet_client_internal.py,sha256=JJ6vapUoPfroaRj4Dy4JcgHKMFGvTkHPvy8OtHLYTQA,531
|
|
662
662
|
underautomation/fanuc/telnet/internal/telnet_connect_parameters_base.py,sha256=l781dRqPnQOw2R1RsxgTT0J2Am6iw6WU5n6eDmrnwBk,665
|
|
663
|
-
underautomation_fanuc-2.
|
|
664
|
-
underautomation_fanuc-2.
|
|
665
|
-
underautomation_fanuc-2.
|
|
666
|
-
underautomation_fanuc-2.
|
|
663
|
+
underautomation_fanuc-2.3.0.0.dist-info/METADATA,sha256=cJcTbTmEH3FH8jQFYw48i5VBa0-e7Wa1lXGoSiTfOJg,6141
|
|
664
|
+
underautomation_fanuc-2.3.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
665
|
+
underautomation_fanuc-2.3.0.0.dist-info/top_level.txt,sha256=Ko5oLpVtiQ2okeu3dicHZqNT7g-Y4pHytT7zkT2EjG8,16
|
|
666
|
+
underautomation_fanuc-2.3.0.0.dist-info/RECORD,,
|
|
File without changes
|
{underautomation_fanuc-2.2.0.0.dist-info → underautomation_fanuc-2.3.0.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|