PyAutomationIO 0.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.
Files changed (138) hide show
  1. automation/__init__.py +46 -0
  2. automation/alarms/__init__.py +563 -0
  3. automation/alarms/states.py +192 -0
  4. automation/alarms/trigger.py +64 -0
  5. automation/buffer.py +132 -0
  6. automation/core.py +1775 -0
  7. automation/dbmodels/__init__.py +23 -0
  8. automation/dbmodels/alarms.py +524 -0
  9. automation/dbmodels/core.py +86 -0
  10. automation/dbmodels/events.py +153 -0
  11. automation/dbmodels/logs.py +155 -0
  12. automation/dbmodels/machines.py +181 -0
  13. automation/dbmodels/opcua.py +81 -0
  14. automation/dbmodels/opcua_server.py +174 -0
  15. automation/dbmodels/tags.py +921 -0
  16. automation/dbmodels/users.py +259 -0
  17. automation/extensions/__init__.py +15 -0
  18. automation/extensions/api.py +149 -0
  19. automation/extensions/cors.py +18 -0
  20. automation/filter/__init__.py +19 -0
  21. automation/iad/__init__.py +3 -0
  22. automation/iad/frozen_data.py +54 -0
  23. automation/iad/out_of_range.py +51 -0
  24. automation/iad/outliers.py +51 -0
  25. automation/logger/__init__.py +0 -0
  26. automation/logger/alarms.py +426 -0
  27. automation/logger/core.py +265 -0
  28. automation/logger/datalogger.py +646 -0
  29. automation/logger/events.py +194 -0
  30. automation/logger/logdict.py +53 -0
  31. automation/logger/logs.py +203 -0
  32. automation/logger/machines.py +248 -0
  33. automation/logger/opcua_server.py +130 -0
  34. automation/logger/users.py +96 -0
  35. automation/managers/__init__.py +4 -0
  36. automation/managers/alarms.py +455 -0
  37. automation/managers/db.py +328 -0
  38. automation/managers/opcua_client.py +186 -0
  39. automation/managers/state_machine.py +183 -0
  40. automation/models.py +174 -0
  41. automation/modules/__init__.py +14 -0
  42. automation/modules/alarms/__init__.py +0 -0
  43. automation/modules/alarms/resources/__init__.py +10 -0
  44. automation/modules/alarms/resources/alarms.py +280 -0
  45. automation/modules/alarms/resources/summary.py +79 -0
  46. automation/modules/events/__init__.py +0 -0
  47. automation/modules/events/resources/__init__.py +10 -0
  48. automation/modules/events/resources/events.py +83 -0
  49. automation/modules/events/resources/logs.py +109 -0
  50. automation/modules/tags/__init__.py +0 -0
  51. automation/modules/tags/resources/__init__.py +8 -0
  52. automation/modules/tags/resources/tags.py +201 -0
  53. automation/modules/users/__init__.py +2 -0
  54. automation/modules/users/resources/__init__.py +10 -0
  55. automation/modules/users/resources/models/__init__.py +2 -0
  56. automation/modules/users/resources/models/roles.py +5 -0
  57. automation/modules/users/resources/models/users.py +14 -0
  58. automation/modules/users/resources/roles.py +38 -0
  59. automation/modules/users/resources/users.py +113 -0
  60. automation/modules/users/roles.py +121 -0
  61. automation/modules/users/users.py +335 -0
  62. automation/opcua/__init__.py +1 -0
  63. automation/opcua/models.py +541 -0
  64. automation/opcua/subscription.py +259 -0
  65. automation/pages/__init__.py +0 -0
  66. automation/pages/alarms.py +34 -0
  67. automation/pages/alarms_history.py +21 -0
  68. automation/pages/assets/styles.css +7 -0
  69. automation/pages/callbacks/__init__.py +28 -0
  70. automation/pages/callbacks/alarms.py +218 -0
  71. automation/pages/callbacks/alarms_summary.py +20 -0
  72. automation/pages/callbacks/db.py +222 -0
  73. automation/pages/callbacks/filter.py +238 -0
  74. automation/pages/callbacks/machines.py +29 -0
  75. automation/pages/callbacks/machines_detailed.py +581 -0
  76. automation/pages/callbacks/opcua.py +266 -0
  77. automation/pages/callbacks/opcua_server.py +244 -0
  78. automation/pages/callbacks/tags.py +495 -0
  79. automation/pages/callbacks/trends.py +119 -0
  80. automation/pages/communications.py +129 -0
  81. automation/pages/components/__init__.py +123 -0
  82. automation/pages/components/alarms.py +151 -0
  83. automation/pages/components/alarms_summary.py +45 -0
  84. automation/pages/components/database.py +128 -0
  85. automation/pages/components/gaussian_filter.py +69 -0
  86. automation/pages/components/machines.py +396 -0
  87. automation/pages/components/opcua.py +384 -0
  88. automation/pages/components/opcua_server.py +53 -0
  89. automation/pages/components/tags.py +253 -0
  90. automation/pages/components/trends.py +66 -0
  91. automation/pages/database.py +26 -0
  92. automation/pages/filter.py +55 -0
  93. automation/pages/machines.py +20 -0
  94. automation/pages/machines_detailed.py +41 -0
  95. automation/pages/main.py +63 -0
  96. automation/pages/opcua_server.py +28 -0
  97. automation/pages/tags.py +40 -0
  98. automation/pages/trends.py +35 -0
  99. automation/singleton.py +30 -0
  100. automation/state_machine.py +1672 -0
  101. automation/tags/__init__.py +2 -0
  102. automation/tags/cvt.py +1198 -0
  103. automation/tags/filter.py +55 -0
  104. automation/tags/tag.py +418 -0
  105. automation/tests/__init__.py +10 -0
  106. automation/tests/test_alarms.py +110 -0
  107. automation/tests/test_core.py +257 -0
  108. automation/tests/test_unit.py +21 -0
  109. automation/tests/test_user.py +155 -0
  110. automation/utils/__init__.py +164 -0
  111. automation/utils/decorators.py +222 -0
  112. automation/utils/npw.py +294 -0
  113. automation/utils/observer.py +21 -0
  114. automation/utils/units.py +118 -0
  115. automation/variables/__init__.py +55 -0
  116. automation/variables/adimentional.py +30 -0
  117. automation/variables/current.py +71 -0
  118. automation/variables/density.py +115 -0
  119. automation/variables/eng_time.py +68 -0
  120. automation/variables/force.py +90 -0
  121. automation/variables/length.py +104 -0
  122. automation/variables/mass.py +80 -0
  123. automation/variables/mass_flow.py +101 -0
  124. automation/variables/percentage.py +30 -0
  125. automation/variables/power.py +113 -0
  126. automation/variables/pressure.py +93 -0
  127. automation/variables/temperature.py +168 -0
  128. automation/variables/volume.py +70 -0
  129. automation/variables/volumetric_flow.py +100 -0
  130. automation/workers/__init__.py +2 -0
  131. automation/workers/logger.py +164 -0
  132. automation/workers/state_machine.py +207 -0
  133. automation/workers/worker.py +36 -0
  134. pyautomationio-0.0.0.dist-info/METADATA +198 -0
  135. pyautomationio-0.0.0.dist-info/RECORD +138 -0
  136. pyautomationio-0.0.0.dist-info/WHEEL +5 -0
  137. pyautomationio-0.0.0.dist-info/licenses/LICENSE +21 -0
  138. pyautomationio-0.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,138 @@
1
+ automation/__init__.py,sha256=D7cMv6_3UzFJcqrPPvKCIhNUb4zstMDNHPlzDbsP15I,1277
2
+ automation/buffer.py,sha256=xamk5DMSFCB1zdReM0L89Du70shSjMxeuUN5zVGF2RI,2913
3
+ automation/core.py,sha256=hl1lXQnR3UbqTU7W7FcXGgRFiZjVFf8-1CDZhGUI3ao,54727
4
+ automation/models.py,sha256=rq3j6hpnjb_YnbrGll9L5unokKsgx-Ct_j9R4MvWYhA,4575
5
+ automation/singleton.py,sha256=5nWzSpeAaqOk6j2KBfnFAgMzpM5Tq58KmtY9Z-Nk_7E,920
6
+ automation/state_machine.py,sha256=jCoWmxWNnRXbA_2915N2E2eBEsG6rADHPmmL512ON2U,54982
7
+ automation/alarms/__init__.py,sha256=3XkeXG20SilE5qNZa8CBqSslzkFh6rVG6vv5ai0VWbo,17771
8
+ automation/alarms/states.py,sha256=lM1RnOEk27_vLpy613dLOH6Xy4pKpmwIs8ztECLJwoE,5101
9
+ automation/alarms/trigger.py,sha256=5plvOIFYSJ1MavegLDB0xy562YFb3K7FQ8xmLWJ212A,1041
10
+ automation/dbmodels/__init__.py,sha256=4CVb3VrzWzATTp-N3RTfYerG_EDzXiirBpdLjMQmF8U,440
11
+ automation/dbmodels/alarms.py,sha256=i_vPdWDHEHxKBiGHSKXgJ46lsFIOwiMR2SsgZO03GBI,13594
12
+ automation/dbmodels/core.py,sha256=YSSHW1SdYRqspbAprX9uehu4QJMQ2PvqMMUAjF7lxNo,2106
13
+ automation/dbmodels/events.py,sha256=95NRcAAVIyPRbwKZdlRMFJ12YGZBXFL5mf8gVt381Dc,4732
14
+ automation/dbmodels/logs.py,sha256=sc1tRUl280ppEGrx8Z4SNuV-V7PtBft_1xhso9iRIdY,5139
15
+ automation/dbmodels/machines.py,sha256=isBR5PiaXt7I9RjbyNJbtB6gvtTHRk-WvWUSvNDXv7A,4653
16
+ automation/dbmodels/opcua.py,sha256=RiEh-TlcX7g3F1dgU8ijwVjnuPVhcpRbSN6oWH0KaDs,2082
17
+ automation/dbmodels/opcua_server.py,sha256=7QcwoHrkiimr4ByUpbIe9fWZQNli3iMJNuPRv5WHMYE,4218
18
+ automation/dbmodels/tags.py,sha256=j7-FhvjOtmtXALbxYmy_Mo8FyciwmY6BKzlDj_Hzdgc,25447
19
+ automation/dbmodels/users.py,sha256=uom0ROX0NO2n1DA75zHWfjUVHT04FdaXe9HLk8--57s,7111
20
+ automation/extensions/__init__.py,sha256=Cq01FKOanctRFClK0Xqk72BBVNBTJEizjQDrqYP7wMI,258
21
+ automation/extensions/api.py,sha256=qgW7Z4HKxiZesRHJ-5yAzjUfVS4MBT72OPPo8VnDeFc,3640
22
+ automation/extensions/cors.py,sha256=aoSdowCafRixpEQghNc5tvdvISKUIDDv5DO5vXOCeAA,313
23
+ automation/filter/__init__.py,sha256=Y6lWV_zRI-QP5azkq7tvBU_5kpGQH-Shoj3ofPhsxZw,466
24
+ automation/iad/__init__.py,sha256=qttRulXmjSB6DFrA-RpNczITSfsPkyN6RXCTreM38es,117
25
+ automation/iad/frozen_data.py,sha256=w9g6UmcaDgvi9u3-HL2BW1_JriiuGU-i7esAz5RPoQo,1402
26
+ automation/iad/out_of_range.py,sha256=mAALJIJECUHMlggw2qpuOgZFByK5IaVaSSif3ac35Uo,1411
27
+ automation/iad/outliers.py,sha256=bZcjR2R-eAh45pibtg0tOC7vTjDRfF98_YUWOYxZVhU,1388
28
+ automation/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ automation/logger/alarms.py,sha256=8m2Xq7Ed_Gh8zNJkMcSxwzGQbXyTNIX97cxB989l72Y,11295
30
+ automation/logger/core.py,sha256=BU6kD6FFkX_R29UmssthLMhHd9yZi0RZGfb6xLIKl_c,5964
31
+ automation/logger/datalogger.py,sha256=0mco_729olfadOOtaavH4Kb9qyhrN0MndfxbF9FyPRo,21245
32
+ automation/logger/events.py,sha256=wkoLiJSm7bavDLkTvKNw3XT5cUx-p6tyItHOJbJj0Rs,5133
33
+ automation/logger/logdict.py,sha256=pNOpsJGoSsSvJa4EcZVR8AqCt4Op9Jr9zLsrgTkZWwQ,866
34
+ automation/logger/logs.py,sha256=OUyXFX1OZNSxKvWFooP8aZAj8qav1c40PP5fLYxuXUs,5285
35
+ automation/logger/machines.py,sha256=pcurHYgs-2wWIhpeulPC3lSjzyalLL5yO5RYxdRV4O0,7378
36
+ automation/logger/opcua_server.py,sha256=YXWBMGWb2LBhPG9B1qSMgxZUyqnVl2WqPKZ3VxX-Mwc,2943
37
+ automation/logger/users.py,sha256=5dm7vN_WsK2HVOCd6yEPDBHynk1scwk2N5lH3rWIGfI,2278
38
+ automation/managers/__init__.py,sha256=j0yP1n3tUAVvgH4XpHTE6Ub1kidd2CE0F4hugW4aMDY,150
39
+ automation/managers/alarms.py,sha256=OZCYuBI7XTyW9Nf-DpZ3qVMgBOW5CpD7Ye58NVINtO4,12102
40
+ automation/managers/db.py,sha256=4bdCicgvvhTk75xb2UzuvQRKc7iNOHtZ-2n-Rjog-o4,8943
41
+ automation/managers/opcua_client.py,sha256=R55GM6cqKtP45ajYm-OgBQg17S1pcapj1kMhqqxgVqk,5737
42
+ automation/managers/state_machine.py,sha256=_FDs2MPa0BrCnniOPz2P0gbrg-LCWwkc_scRPLAz-94,4441
43
+ automation/modules/__init__.py,sha256=h82ykQ1LELgSy7qsLsO8vUB4IEcT-LzyVyu3GTomtXg,407
44
+ automation/modules/alarms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ automation/modules/alarms/resources/__init__.py,sha256=NdXF1FphK-loRL8LE_bn2yn-fE_KLtgJ9HvrSlGhxNo,243
46
+ automation/modules/alarms/resources/alarms.py,sha256=SbrXVWgRCBP9eWjQF9_GkUKjt38KIIQeMTOWlW45Owg,9271
47
+ automation/modules/alarms/resources/summary.py,sha256=chF4QhhiBG1fwGYfkxNNotWo_77e1WjFSe0duuX56T0,2799
48
+ automation/modules/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ automation/modules/events/resources/__init__.py,sha256=gmGoYHppvDDVa_6qAZqB4g7oNzLZ34xy3GPNzqyGM2U,224
50
+ automation/modules/events/resources/events.py,sha256=PckNVchuD50TNFxRT2HQjGk8QU8HQecmK_P3zUr-Q08,2914
51
+ automation/modules/events/resources/logs.py,sha256=L30ilY-ZjMvtyIX6a_kxSmLkhjJo449D8XBvtk-nDh4,3762
52
+ automation/modules/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ automation/modules/tags/resources/__init__.py,sha256=ZQWyCQWf8_1aQy1YDjZxtrvK1LWSBl3QL0jY29HT4oM,135
54
+ automation/modules/tags/resources/tags.py,sha256=G97kw7biSKNtk-iSMA9dj8MksDy6UQq7DbLSaGYkA4s,7088
55
+ automation/modules/users/__init__.py,sha256=OAJ5EQfXOhmEGc7oNqsmOyZr-FxlrWgnX53QCrbT8aI,55
56
+ automation/modules/users/roles.py,sha256=NaKz38A5bsU-XDVPpmgSRy2j9tBU_TqtrN0Py6O2e-A,2649
57
+ automation/modules/users/users.py,sha256=GqHfDsO8I2tB7lr7eumBQQxDf77li6OEOjbYjaup1pk,8485
58
+ automation/modules/users/resources/__init__.py,sha256=zD6TSjlOUCaIahz44aciLBv0YTtt0jV2W2y8vv2H0ak,230
59
+ automation/modules/users/resources/roles.py,sha256=iiXkfPJGZVMgBZkPYJUB5CLBla2gKuyKh2Y081-QX1c,984
60
+ automation/modules/users/resources/users.py,sha256=2QWs1KsTe8nkluqxyZJaY5n20bYqhgIUr6rtaMukOjs,3003
61
+ automation/modules/users/resources/models/__init__.py,sha256=7GxhRPaBqS_NpRCwfLnxJLq7eIgw29ZcpKeCZj3KeJ4,84
62
+ automation/modules/users/resources/models/roles.py,sha256=UYV4aGnkQNOmPh_QaTguSNGYMwgkSEGEulHIUucuAkI,293
63
+ automation/modules/users/resources/models/users.py,sha256=Cf7Nm3c0rOtuLaGGteGTb7os6gVeEQkk2yk0DBlxo3w,895
64
+ automation/opcua/__init__.py,sha256=uduDUqPGN1ns9czNapdF_NCwncYK42CoBXauq7sZ-BM,26
65
+ automation/opcua/models.py,sha256=--wX5VpHEugCsNIAQyF1KwaIBFbDpgGgsSm-cEq03Yk,19201
66
+ automation/opcua/subscription.py,sha256=lv2qzVZbkaxQ0K3mnMUVWnd1VR6Ed8MPPN3eNdBdU2E,9210
67
+ automation/pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ automation/pages/alarms.py,sha256=MyG36290QVfyrAQ9dMduZfeC3LfSZ0HCPxXcUBo4EsQ,1035
69
+ automation/pages/alarms_history.py,sha256=sby7m-vPepHXtRehU_dDCaUREzvmhoXKy3yj1_Vxh8g,658
70
+ automation/pages/communications.py,sha256=5r_LNlkfMKv5JIZe2I-Tmrhlzo3NAWlyJo6c6C-ZvpM,5738
71
+ automation/pages/database.py,sha256=uRyvzbSFlNgK2Xb0b7CeODaRCxy7TuJoyMk5p1FtKRc,735
72
+ automation/pages/filter.py,sha256=QDS4EIvdcKk9_nxgjQXMpXFKYSzeBoNQw5oUJftE6hA,1888
73
+ automation/pages/machines.py,sha256=gceWdVEIeupEmvFc38yzVm-DUqr4jkrcgPTS3Fs_7Po,554
74
+ automation/pages/machines_detailed.py,sha256=Ku-CvjyuJhw8_zh3-KNO7oUvpmZVZT3emeBZKqeAXPs,1451
75
+ automation/pages/main.py,sha256=CBerfnDZiQCgio-fem91-CYh7C8qQ78lVk10bUrszG0,2017
76
+ automation/pages/opcua_server.py,sha256=1Fe3Zwvcygt0XuEyj0S2CMIBWOwYF7tMe31cBH7EJIc,879
77
+ automation/pages/tags.py,sha256=3tdF8VZfv2wf_oej9wQOD_BB1E4RRJo_M5MQ_U31PFY,1184
78
+ automation/pages/trends.py,sha256=UVBj-NAcGZUmXiXiksEcG-9VbMzesfahJrWLowTf-HM,1081
79
+ automation/pages/assets/styles.css,sha256=3ioMpb3mypaLhcPPLRfPw9m_tAn7MLr_8gOgXpzMqLs,126
80
+ automation/pages/callbacks/__init__.py,sha256=b3Yaen3EJvra9CW6eUSDeDePHPrsWkM7GSWtf8h3AI0,1069
81
+ automation/pages/callbacks/alarms.py,sha256=vs3O3zb4RouEd-ngiqpFqsnW7HisHqlHG2yf6An0jG4,7761
82
+ automation/pages/callbacks/alarms_summary.py,sha256=NqgV3PRP7JgpfTvQoe39Teuoh5aYg-tH-rkWC1DB2d0,464
83
+ automation/pages/callbacks/db.py,sha256=xterewxZSteN2fd5aQdieB02A1PUYrrsr_q5COGIMSQ,8941
84
+ automation/pages/callbacks/filter.py,sha256=x_lYXuhWN5mvLcKpyAjaURyN8LBbAF-bIgx6p6heWA0,7655
85
+ automation/pages/callbacks/machines.py,sha256=6wEjGzid7f9tZOII2S8HF_8bvtyiEKgGI6s2fWEFZUg,738
86
+ automation/pages/callbacks/machines_detailed.py,sha256=aieXzhxgEB64DK-qcNnhx9HdcLuJGHxMKt5-WEdqaSY,22834
87
+ automation/pages/callbacks/opcua.py,sha256=pwN3wFnFA-Wfoi4rMfxhiiERbKBBIgjAZFu7bBDQArs,9276
88
+ automation/pages/callbacks/opcua_server.py,sha256=EZfb16N1BIoInOucQAGDaqdm-32MchVLl8Gg_yc1aBc,11718
89
+ automation/pages/callbacks/tags.py,sha256=aE60Kc4h_EeXnX1Ymr8S-A0HXr-FKkIywYGMqwLD3ww,17551
90
+ automation/pages/callbacks/trends.py,sha256=fg5ar-gfEIEHCzpbVkThzpdiDr7NkUHmfiTGWGhk_aU,3787
91
+ automation/pages/components/__init__.py,sha256=fMBmr6YzB4gGXNl7pqzojWupbSzhpBJ8od-yyvvHqdU,4626
92
+ automation/pages/components/alarms.py,sha256=tlQbkXO9yskBWaypIQlm9m1z6GdnCKDNOu4BIkHvKDk,7288
93
+ automation/pages/components/alarms_summary.py,sha256=Q6Fic_3EZdrGw_f0uykF2b5oWoW6UKznLDTFFaYnAzI,1821
94
+ automation/pages/components/database.py,sha256=29IH7kTWfePgkfuuPCMhCjlKEdZYHCESXQgD8GiMizI,6472
95
+ automation/pages/components/gaussian_filter.py,sha256=sciAJiWjBkL2qWhNl4saEtPMfFdCPv595MPu6a8EEEk,2117
96
+ automation/pages/components/machines.py,sha256=x9dbpj8DvjeLJwLv6fHwNPvypSl9BF9Z5Mdj1pq-HIY,17355
97
+ automation/pages/components/opcua.py,sha256=ji3fibY2bG7GS2kgshIHaERPO55vhQKm_wgUOddtJUE,17601
98
+ automation/pages/components/opcua_server.py,sha256=3HAzEXG7sAoW1gq4WfQ8HeLNbQZagsQbOI8OYQx3E6U,2078
99
+ automation/pages/components/tags.py,sha256=l6AOtb_1R_JRF_87xPMn7D72A_Kbempgd4o5lFn81Mk,14726
100
+ automation/pages/components/trends.py,sha256=CzboJAQy_aZLdeXCGHgfxp4wwSp2tWJoYG3QEEFr7Fs,1761
101
+ automation/tags/__init__.py,sha256=2TSu-n-lXL1zKDwvaJNl7as4e1OV71BrbDALY62JWMc,65
102
+ automation/tags/cvt.py,sha256=84nuDKYf1wWke5XfR0fexCiFqbFTsIYm4ptT5AA5xFM,29986
103
+ automation/tags/filter.py,sha256=TH30wD6864IQrsy7DBhu_jaMZ8v44ZewsTjYOxJCBbg,1775
104
+ automation/tags/tag.py,sha256=eEI2OX5zNKui4TFvvnAzxhl_CayxDuDF8tkpqIIuY-M,12409
105
+ automation/tests/__init__.py,sha256=zNPT3l3u-X_F5Z3il3R5BzPPGo7nt11cBNvgPpC_c4w,498
106
+ automation/tests/test_alarms.py,sha256=EfINsr32pZ6iC8zk-_Lb5XYR9sOo9yWzkuPn1VI_JZ0,2956
107
+ automation/tests/test_core.py,sha256=dBDOaBgCD56wmyPwm4dOhftUupzWjHMzx3nnVZJAbFs,8601
108
+ automation/tests/test_unit.py,sha256=BMsjYLy_LFglReCEyWomXJvdDnXdGyoa-WIyNZmJuFg,507
109
+ automation/tests/test_user.py,sha256=p_TGIvdRvFR8MU7_NpKNPNOXy1XTsci-CYeS5cRjgLA,5664
110
+ automation/utils/__init__.py,sha256=cPFSmPbrRcVBTAd7Zkhd9VPRgCITVjmSnmKWBgZJAOM,4857
111
+ automation/utils/decorators.py,sha256=EqI-OJ9eqRdTNY8F5ScFhA2b9MKAs1I0U_-kAAIRcjk,7019
112
+ automation/utils/npw.py,sha256=9kcur64nbAKBSzvvv27mD2IHikCc1t-6-oUEZiEKZ-I,10646
113
+ automation/utils/observer.py,sha256=aMz9KvKaNVHRJMQwbRvf-L2O2woGPNX-0FkBRFWtUaM,434
114
+ automation/utils/units.py,sha256=g9paDUKq5qxB9aVEny0KVsynkyq8rWsgHXmh3TnqnWI,3866
115
+ automation/variables/__init__.py,sha256=8xjPFSMOZYJ4_srvxP2as91slBQ-6bcfd7xoEONALX4,2345
116
+ automation/variables/adimentional.py,sha256=cJhA7C0oP8FSa5gntKwwOR9foQidkdeRjcG1AsD3rCQ,776
117
+ automation/variables/current.py,sha256=_8grCPBUD9OaEx_8JS9ak4kneu5eVELFmBqlvr9LiB4,2074
118
+ automation/variables/density.py,sha256=tFZxeSHhMU1IdoVuPZSG8iHOztDkJYdQNop1LiW5fNo,3623
119
+ automation/variables/eng_time.py,sha256=z5i6_PwuyUl586idCz_V5QffZm0u-AG7yzmQi-ObTeI,1810
120
+ automation/variables/force.py,sha256=E1iOAfXniTBa4nAFspy9A3I7EAK8GnmMY8nCDJcJh4o,2399
121
+ automation/variables/length.py,sha256=WVM6KIx6JLzpT3SQAf6WCVuUu05F2d-fTNetYEZClKA,2632
122
+ automation/variables/mass.py,sha256=N9snfevKad4WYEWyKNoSjpHtt5TuwuFvm-FZDex6RfY,2118
123
+ automation/variables/mass_flow.py,sha256=SnXqUzOj8JlYkkifc30aLOPXfSV5-C-_2T9zaJ835C4,3246
124
+ automation/variables/percentage.py,sha256=5w0l6VKst9pTE_JjaNoME3rcRsz9TcHCB0RUd0JlWUU,760
125
+ automation/variables/power.py,sha256=nFtJC6PEfOfsh9hpT0eVXjwuS9xOsQq-h7AlTMkqSIE,3197
126
+ automation/variables/pressure.py,sha256=U_2pSgVcww8pJXEt3OVmFgmOKxuAlRdz5K02GQXe04M,2613
127
+ automation/variables/temperature.py,sha256=7RNNVUOMkgZPJGpXGRhvdwPqF0lwF7clI40Kv4uiNNo,5381
128
+ automation/variables/volume.py,sha256=-7SIu-hdi9Q4y3VsGOwmtPt1PGawvJrgPH-iTKr_ank,1940
129
+ automation/variables/volumetric_flow.py,sha256=inebaNJ3zTwLUwOB7tEbtCkL3ZilwUHu09uIUH-uH3M,3430
130
+ automation/workers/__init__.py,sha256=jWQ5ceWlDdEovq-C2UKSl3xRY89m_B2F03WwrgEHHl0,104
131
+ automation/workers/logger.py,sha256=hfZNre41jsePajrCQd1oVlbYpeqQAmQZNEdDhTe9fGE,5297
132
+ automation/workers/state_machine.py,sha256=Xe2qm7uibF7Toy7gh33aqxFU62nbrIAgtcmK43fefj4,4974
133
+ automation/workers/worker.py,sha256=LAb5X_50VkzwC6nmz3EqeJgkIQcNTfnGZg83b3kx_sc,684
134
+ pyautomationio-0.0.0.dist-info/licenses/LICENSE,sha256=dyKH9NV2dMPfZDjC3_G7nnvwDyn4tY2-u4Flv6nlvm0,1064
135
+ pyautomationio-0.0.0.dist-info/METADATA,sha256=on3KM17PkPK7yY83ElllSLfwj-0Wcu7g2geZDSIRkUs,4739
136
+ pyautomationio-0.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
137
+ pyautomationio-0.0.0.dist-info/top_level.txt,sha256=6FPw8tX4RykuC6Wq7ti_JjKbNFsg6OSMwQB35ne8Ug0,11
138
+ pyautomationio-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 know-ai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ automation