bac-py 1.5.0__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.
Files changed (315) hide show
  1. bac_py-1.5.0/.gitignore +290 -0
  2. bac_py-1.5.0/CHANGELOG.md +1224 -0
  3. bac_py-1.5.0/CODE_OF_CONDUCT.md +90 -0
  4. bac_py-1.5.0/CONTRIBUTING.md +95 -0
  5. bac_py-1.5.0/LICENSE +21 -0
  6. bac_py-1.5.0/PKG-INFO +453 -0
  7. bac_py-1.5.0/README.md +423 -0
  8. bac_py-1.5.0/SECURITY.md +37 -0
  9. bac_py-1.5.0/examples/advanced_discovery.py +66 -0
  10. bac_py-1.5.0/examples/alarm_management.py +85 -0
  11. bac_py-1.5.0/examples/audit_log.py +58 -0
  12. bac_py-1.5.0/examples/backup_restore.py +37 -0
  13. bac_py-1.5.0/examples/cov_property.py +60 -0
  14. bac_py-1.5.0/examples/device_control.py +64 -0
  15. bac_py-1.5.0/examples/discover_devices.py +41 -0
  16. bac_py-1.5.0/examples/extended_discovery.py +52 -0
  17. bac_py-1.5.0/examples/foreign_device.py +48 -0
  18. bac_py-1.5.0/examples/interactive_cli.py +329 -0
  19. bac_py-1.5.0/examples/ip_to_sc_router.py +165 -0
  20. bac_py-1.5.0/examples/ipv6_client_server.py +47 -0
  21. bac_py-1.5.0/examples/monitor_cov.py +56 -0
  22. bac_py-1.5.0/examples/object_management.py +52 -0
  23. bac_py-1.5.0/examples/read_multiple.py +36 -0
  24. bac_py-1.5.0/examples/read_value.py +34 -0
  25. bac_py-1.5.0/examples/router_discovery.py +40 -0
  26. bac_py-1.5.0/examples/sc_generate_certs.py +322 -0
  27. bac_py-1.5.0/examples/secure_connect.py +158 -0
  28. bac_py-1.5.0/examples/secure_connect_hub.py +202 -0
  29. bac_py-1.5.0/examples/text_message.py +44 -0
  30. bac_py-1.5.0/examples/write_multiple.py +49 -0
  31. bac_py-1.5.0/examples/write_value.py +40 -0
  32. bac_py-1.5.0/pyproject.toml +109 -0
  33. bac_py-1.5.0/src/bac_py/__init__.py +67 -0
  34. bac_py-1.5.0/src/bac_py/app/__init__.py +13 -0
  35. bac_py-1.5.0/src/bac_py/app/_object_type_sets.py +38 -0
  36. bac_py-1.5.0/src/bac_py/app/application.py +1225 -0
  37. bac_py-1.5.0/src/bac_py/app/audit.py +200 -0
  38. bac_py-1.5.0/src/bac_py/app/client.py +2930 -0
  39. bac_py-1.5.0/src/bac_py/app/cov.py +831 -0
  40. bac_py-1.5.0/src/bac_py/app/event_engine.py +1484 -0
  41. bac_py-1.5.0/src/bac_py/app/schedule_engine.py +275 -0
  42. bac_py-1.5.0/src/bac_py/app/server.py +2183 -0
  43. bac_py-1.5.0/src/bac_py/app/trendlog_engine.py +312 -0
  44. bac_py-1.5.0/src/bac_py/app/tsm.py +948 -0
  45. bac_py-1.5.0/src/bac_py/client.py +1402 -0
  46. bac_py-1.5.0/src/bac_py/conformance/__init__.py +1 -0
  47. bac_py-1.5.0/src/bac_py/conformance/bibb.py +366 -0
  48. bac_py-1.5.0/src/bac_py/conformance/pics.py +184 -0
  49. bac_py-1.5.0/src/bac_py/encoding/__init__.py +3 -0
  50. bac_py-1.5.0/src/bac_py/encoding/apdu.py +772 -0
  51. bac_py-1.5.0/src/bac_py/encoding/primitives.py +1212 -0
  52. bac_py-1.5.0/src/bac_py/encoding/tags.py +325 -0
  53. bac_py-1.5.0/src/bac_py/encoding/time_series.py +243 -0
  54. bac_py-1.5.0/src/bac_py/network/__init__.py +50 -0
  55. bac_py-1.5.0/src/bac_py/network/address.py +445 -0
  56. bac_py-1.5.0/src/bac_py/network/layer.py +527 -0
  57. bac_py-1.5.0/src/bac_py/network/messages.py +424 -0
  58. bac_py-1.5.0/src/bac_py/network/npdu.py +513 -0
  59. bac_py-1.5.0/src/bac_py/network/router.py +1472 -0
  60. bac_py-1.5.0/src/bac_py/objects/__init__.py +47 -0
  61. bac_py-1.5.0/src/bac_py/objects/access_control.py +650 -0
  62. bac_py-1.5.0/src/bac_py/objects/accumulator.py +137 -0
  63. bac_py-1.5.0/src/bac_py/objects/alert_enrollment.py +62 -0
  64. bac_py-1.5.0/src/bac_py/objects/analog.py +265 -0
  65. bac_py-1.5.0/src/bac_py/objects/audit_log.py +153 -0
  66. bac_py-1.5.0/src/bac_py/objects/audit_reporter.py +85 -0
  67. bac_py-1.5.0/src/bac_py/objects/averaging.py +120 -0
  68. bac_py-1.5.0/src/bac_py/objects/base.py +971 -0
  69. bac_py-1.5.0/src/bac_py/objects/binary.py +352 -0
  70. bac_py-1.5.0/src/bac_py/objects/calendar.py +238 -0
  71. bac_py-1.5.0/src/bac_py/objects/channel.py +99 -0
  72. bac_py-1.5.0/src/bac_py/objects/command.py +72 -0
  73. bac_py-1.5.0/src/bac_py/objects/device.py +265 -0
  74. bac_py-1.5.0/src/bac_py/objects/event_enrollment.py +117 -0
  75. bac_py-1.5.0/src/bac_py/objects/event_log.py +126 -0
  76. bac_py-1.5.0/src/bac_py/objects/file.py +210 -0
  77. bac_py-1.5.0/src/bac_py/objects/global_group.py +82 -0
  78. bac_py-1.5.0/src/bac_py/objects/group.py +49 -0
  79. bac_py-1.5.0/src/bac_py/objects/life_safety.py +263 -0
  80. bac_py-1.5.0/src/bac_py/objects/lighting.py +241 -0
  81. bac_py-1.5.0/src/bac_py/objects/load_control.py +117 -0
  82. bac_py-1.5.0/src/bac_py/objects/loop.py +220 -0
  83. bac_py-1.5.0/src/bac_py/objects/multistate.py +237 -0
  84. bac_py-1.5.0/src/bac_py/objects/network_port.py +265 -0
  85. bac_py-1.5.0/src/bac_py/objects/notification.py +68 -0
  86. bac_py-1.5.0/src/bac_py/objects/notification_forwarder.py +63 -0
  87. bac_py-1.5.0/src/bac_py/objects/program.py +79 -0
  88. bac_py-1.5.0/src/bac_py/objects/pulse_converter.py +129 -0
  89. bac_py-1.5.0/src/bac_py/objects/schedule.py +99 -0
  90. bac_py-1.5.0/src/bac_py/objects/staging.py +72 -0
  91. bac_py-1.5.0/src/bac_py/objects/structured_view.py +62 -0
  92. bac_py-1.5.0/src/bac_py/objects/timer.py +140 -0
  93. bac_py-1.5.0/src/bac_py/objects/transportation.py +329 -0
  94. bac_py-1.5.0/src/bac_py/objects/trendlog.py +170 -0
  95. bac_py-1.5.0/src/bac_py/objects/trendlog_multiple.py +138 -0
  96. bac_py-1.5.0/src/bac_py/objects/value_types.py +546 -0
  97. bac_py-1.5.0/src/bac_py/py.typed +0 -0
  98. bac_py-1.5.0/src/bac_py/segmentation/__init__.py +31 -0
  99. bac_py-1.5.0/src/bac_py/segmentation/manager.py +411 -0
  100. bac_py-1.5.0/src/bac_py/serialization/__init__.py +77 -0
  101. bac_py-1.5.0/src/bac_py/serialization/json.py +68 -0
  102. bac_py-1.5.0/src/bac_py/services/__init__.py +9 -0
  103. bac_py-1.5.0/src/bac_py/services/alarm_summary.py +620 -0
  104. bac_py-1.5.0/src/bac_py/services/audit.py +352 -0
  105. bac_py-1.5.0/src/bac_py/services/base.py +102 -0
  106. bac_py-1.5.0/src/bac_py/services/common.py +119 -0
  107. bac_py-1.5.0/src/bac_py/services/cov.py +907 -0
  108. bac_py-1.5.0/src/bac_py/services/device_discovery.py +140 -0
  109. bac_py-1.5.0/src/bac_py/services/device_mgmt.py +218 -0
  110. bac_py-1.5.0/src/bac_py/services/errors.py +72 -0
  111. bac_py-1.5.0/src/bac_py/services/event_notification.py +401 -0
  112. bac_py-1.5.0/src/bac_py/services/fault_algorithms.py +206 -0
  113. bac_py-1.5.0/src/bac_py/services/file_access.py +422 -0
  114. bac_py-1.5.0/src/bac_py/services/list_element.py +124 -0
  115. bac_py-1.5.0/src/bac_py/services/object_mgmt.py +170 -0
  116. bac_py-1.5.0/src/bac_py/services/private_transfer.py +155 -0
  117. bac_py-1.5.0/src/bac_py/services/read_property.py +176 -0
  118. bac_py-1.5.0/src/bac_py/services/read_property_multiple.py +411 -0
  119. bac_py-1.5.0/src/bac_py/services/read_range.py +396 -0
  120. bac_py-1.5.0/src/bac_py/services/text_message.py +131 -0
  121. bac_py-1.5.0/src/bac_py/services/virtual_terminal.py +213 -0
  122. bac_py-1.5.0/src/bac_py/services/who_has.py +188 -0
  123. bac_py-1.5.0/src/bac_py/services/who_is.py +156 -0
  124. bac_py-1.5.0/src/bac_py/services/write_group.py +144 -0
  125. bac_py-1.5.0/src/bac_py/services/write_property.py +123 -0
  126. bac_py-1.5.0/src/bac_py/services/write_property_multiple.py +120 -0
  127. bac_py-1.5.0/src/bac_py/transport/__init__.py +3 -0
  128. bac_py-1.5.0/src/bac_py/transport/bbmd.py +698 -0
  129. bac_py-1.5.0/src/bac_py/transport/bbmd6.py +491 -0
  130. bac_py-1.5.0/src/bac_py/transport/bip.py +797 -0
  131. bac_py-1.5.0/src/bac_py/transport/bip6.py +686 -0
  132. bac_py-1.5.0/src/bac_py/transport/bvll.py +117 -0
  133. bac_py-1.5.0/src/bac_py/transport/bvll_ipv6.py +187 -0
  134. bac_py-1.5.0/src/bac_py/transport/ethernet.py +405 -0
  135. bac_py-1.5.0/src/bac_py/transport/foreign_device.py +213 -0
  136. bac_py-1.5.0/src/bac_py/transport/foreign_device6.py +213 -0
  137. bac_py-1.5.0/src/bac_py/transport/port.py +73 -0
  138. bac_py-1.5.0/src/bac_py/transport/sc/__init__.py +331 -0
  139. bac_py-1.5.0/src/bac_py/transport/sc/bvlc.py +525 -0
  140. bac_py-1.5.0/src/bac_py/transport/sc/connection.py +514 -0
  141. bac_py-1.5.0/src/bac_py/transport/sc/hub_connector.py +298 -0
  142. bac_py-1.5.0/src/bac_py/transport/sc/hub_function.py +292 -0
  143. bac_py-1.5.0/src/bac_py/transport/sc/node_switch.py +330 -0
  144. bac_py-1.5.0/src/bac_py/transport/sc/tls.py +175 -0
  145. bac_py-1.5.0/src/bac_py/transport/sc/types.py +71 -0
  146. bac_py-1.5.0/src/bac_py/transport/sc/vmac.py +125 -0
  147. bac_py-1.5.0/src/bac_py/transport/sc/websocket.py +378 -0
  148. bac_py-1.5.0/src/bac_py/types/__init__.py +3 -0
  149. bac_py-1.5.0/src/bac_py/types/audit_types.py +724 -0
  150. bac_py-1.5.0/src/bac_py/types/constructed.py +1618 -0
  151. bac_py-1.5.0/src/bac_py/types/enums.py +2121 -0
  152. bac_py-1.5.0/src/bac_py/types/fault_params.py +700 -0
  153. bac_py-1.5.0/src/bac_py/types/notification_params.py +1686 -0
  154. bac_py-1.5.0/src/bac_py/types/parsing.py +303 -0
  155. bac_py-1.5.0/src/bac_py/types/primitives.py +329 -0
  156. bac_py-1.5.0/tests/__init__.py +0 -0
  157. bac_py-1.5.0/tests/app/__init__.py +0 -0
  158. bac_py-1.5.0/tests/app/test_application.py +2836 -0
  159. bac_py-1.5.0/tests/app/test_audit.py +656 -0
  160. bac_py-1.5.0/tests/app/test_backup_restore.py +202 -0
  161. bac_py-1.5.0/tests/app/test_client.py +3900 -0
  162. bac_py-1.5.0/tests/app/test_cov.py +2275 -0
  163. bac_py-1.5.0/tests/app/test_discovery.py +606 -0
  164. bac_py-1.5.0/tests/app/test_event_algorithms.py +1010 -0
  165. bac_py-1.5.0/tests/app/test_event_engine.py +3832 -0
  166. bac_py-1.5.0/tests/app/test_event_state_machine.py +658 -0
  167. bac_py-1.5.0/tests/app/test_schedule_engine.py +883 -0
  168. bac_py-1.5.0/tests/app/test_server.py +5858 -0
  169. bac_py-1.5.0/tests/app/test_trendlog_engine.py +987 -0
  170. bac_py-1.5.0/tests/app/test_tsm.py +2538 -0
  171. bac_py-1.5.0/tests/conformance/__init__.py +0 -0
  172. bac_py-1.5.0/tests/conformance/test_bibb.py +153 -0
  173. bac_py-1.5.0/tests/conformance/test_pics.py +221 -0
  174. bac_py-1.5.0/tests/conftest.py +1 -0
  175. bac_py-1.5.0/tests/encoding/__init__.py +0 -0
  176. bac_py-1.5.0/tests/encoding/test_apdu.py +578 -0
  177. bac_py-1.5.0/tests/encoding/test_constructed_encoding.py +592 -0
  178. bac_py-1.5.0/tests/encoding/test_decode_values.py +210 -0
  179. bac_py-1.5.0/tests/encoding/test_encode_property_value.py +500 -0
  180. bac_py-1.5.0/tests/encoding/test_encoding_architecture.py +269 -0
  181. bac_py-1.5.0/tests/encoding/test_encoding_edge_cases.py +833 -0
  182. bac_py-1.5.0/tests/encoding/test_primitives.py +728 -0
  183. bac_py-1.5.0/tests/encoding/test_property_encoding_completeness.py +75 -0
  184. bac_py-1.5.0/tests/encoding/test_tags.py +412 -0
  185. bac_py-1.5.0/tests/encoding/test_time_series.py +371 -0
  186. bac_py-1.5.0/tests/helpers.py +23 -0
  187. bac_py-1.5.0/tests/integration/__init__.py +0 -0
  188. bac_py-1.5.0/tests/integration/test_router_bbmd.py +298 -0
  189. bac_py-1.5.0/tests/network/__init__.py +0 -0
  190. bac_py-1.5.0/tests/network/conftest.py +35 -0
  191. bac_py-1.5.0/tests/network/test_address.py +818 -0
  192. bac_py-1.5.0/tests/network/test_address_ipv6.py +172 -0
  193. bac_py-1.5.0/tests/network/test_layer.py +1400 -0
  194. bac_py-1.5.0/tests/network/test_messages.py +705 -0
  195. bac_py-1.5.0/tests/network/test_npdu.py +576 -0
  196. bac_py-1.5.0/tests/network/test_parse_address.py +134 -0
  197. bac_py-1.5.0/tests/network/test_router.py +2671 -0
  198. bac_py-1.5.0/tests/network/test_routing_table.py +588 -0
  199. bac_py-1.5.0/tests/objects/__init__.py +0 -0
  200. bac_py-1.5.0/tests/objects/test_access_control.py +80 -0
  201. bac_py-1.5.0/tests/objects/test_accumulator.py +109 -0
  202. bac_py-1.5.0/tests/objects/test_alert_enrollment.py +13 -0
  203. bac_py-1.5.0/tests/objects/test_analog.py +401 -0
  204. bac_py-1.5.0/tests/objects/test_audit_log.py +16 -0
  205. bac_py-1.5.0/tests/objects/test_audit_reporter.py +15 -0
  206. bac_py-1.5.0/tests/objects/test_averaging.py +26 -0
  207. bac_py-1.5.0/tests/objects/test_base.py +523 -0
  208. bac_py-1.5.0/tests/objects/test_behavior_validation.py +411 -0
  209. bac_py-1.5.0/tests/objects/test_binary.py +501 -0
  210. bac_py-1.5.0/tests/objects/test_calendar.py +91 -0
  211. bac_py-1.5.0/tests/objects/test_calendar_eval.py +309 -0
  212. bac_py-1.5.0/tests/objects/test_channel.py +38 -0
  213. bac_py-1.5.0/tests/objects/test_command_obj.py +23 -0
  214. bac_py-1.5.0/tests/objects/test_commandable.py +255 -0
  215. bac_py-1.5.0/tests/objects/test_date_time_values.py +100 -0
  216. bac_py-1.5.0/tests/objects/test_device.py +148 -0
  217. bac_py-1.5.0/tests/objects/test_event_enrollment.py +146 -0
  218. bac_py-1.5.0/tests/objects/test_event_log.py +17 -0
  219. bac_py-1.5.0/tests/objects/test_file.py +187 -0
  220. bac_py-1.5.0/tests/objects/test_hooks_and_reporting.py +377 -0
  221. bac_py-1.5.0/tests/objects/test_life_safety.py +89 -0
  222. bac_py-1.5.0/tests/objects/test_lighting.py +43 -0
  223. bac_py-1.5.0/tests/objects/test_load_control.py +16 -0
  224. bac_py-1.5.0/tests/objects/test_loop.py +155 -0
  225. bac_py-1.5.0/tests/objects/test_min_on_off_time.py +173 -0
  226. bac_py-1.5.0/tests/objects/test_multistate.py +334 -0
  227. bac_py-1.5.0/tests/objects/test_network_port.py +94 -0
  228. bac_py-1.5.0/tests/objects/test_notification.py +104 -0
  229. bac_py-1.5.0/tests/objects/test_notification_forwarder.py +15 -0
  230. bac_py-1.5.0/tests/objects/test_object_properties.py +1523 -0
  231. bac_py-1.5.0/tests/objects/test_program.py +115 -0
  232. bac_py-1.5.0/tests/objects/test_property_definitions.py +348 -0
  233. bac_py-1.5.0/tests/objects/test_pulse_converter.py +38 -0
  234. bac_py-1.5.0/tests/objects/test_registration.py +232 -0
  235. bac_py-1.5.0/tests/objects/test_schedule.py +122 -0
  236. bac_py-1.5.0/tests/objects/test_staging.py +15 -0
  237. bac_py-1.5.0/tests/objects/test_structured_view.py +16 -0
  238. bac_py-1.5.0/tests/objects/test_timer.py +19 -0
  239. bac_py-1.5.0/tests/objects/test_transportation.py +39 -0
  240. bac_py-1.5.0/tests/objects/test_trendlog.py +123 -0
  241. bac_py-1.5.0/tests/objects/test_trendlog_multiple.py +17 -0
  242. bac_py-1.5.0/tests/objects/test_value_types.py +461 -0
  243. bac_py-1.5.0/tests/segmentation/__init__.py +0 -0
  244. bac_py-1.5.0/tests/segmentation/test_integration.py +760 -0
  245. bac_py-1.5.0/tests/segmentation/test_manager.py +590 -0
  246. bac_py-1.5.0/tests/serialization/__init__.py +0 -0
  247. bac_py-1.5.0/tests/serialization/test_json.py +1175 -0
  248. bac_py-1.5.0/tests/services/__init__.py +0 -0
  249. bac_py-1.5.0/tests/services/test_alarm_summary.py +565 -0
  250. bac_py-1.5.0/tests/services/test_audit.py +537 -0
  251. bac_py-1.5.0/tests/services/test_base.py +82 -0
  252. bac_py-1.5.0/tests/services/test_cov.py +1175 -0
  253. bac_py-1.5.0/tests/services/test_cov_advanced.py +499 -0
  254. bac_py-1.5.0/tests/services/test_device_discovery.py +110 -0
  255. bac_py-1.5.0/tests/services/test_device_mgmt.py +204 -0
  256. bac_py-1.5.0/tests/services/test_errors.py +67 -0
  257. bac_py-1.5.0/tests/services/test_event_notification.py +531 -0
  258. bac_py-1.5.0/tests/services/test_fault_algorithms.py +399 -0
  259. bac_py-1.5.0/tests/services/test_file_access.py +250 -0
  260. bac_py-1.5.0/tests/services/test_list_element.py +76 -0
  261. bac_py-1.5.0/tests/services/test_object_mgmt.py +227 -0
  262. bac_py-1.5.0/tests/services/test_private_transfer.py +138 -0
  263. bac_py-1.5.0/tests/services/test_read_property.py +91 -0
  264. bac_py-1.5.0/tests/services/test_read_property_multiple.py +388 -0
  265. bac_py-1.5.0/tests/services/test_read_range.py +234 -0
  266. bac_py-1.5.0/tests/services/test_text_message.py +137 -0
  267. bac_py-1.5.0/tests/services/test_virtual_terminal.py +114 -0
  268. bac_py-1.5.0/tests/services/test_who_has.py +207 -0
  269. bac_py-1.5.0/tests/services/test_who_is.py +170 -0
  270. bac_py-1.5.0/tests/services/test_write_group.py +122 -0
  271. bac_py-1.5.0/tests/services/test_write_property.py +128 -0
  272. bac_py-1.5.0/tests/services/test_write_property_multiple.py +221 -0
  273. bac_py-1.5.0/tests/test_client.py +960 -0
  274. bac_py-1.5.0/tests/test_client_wrappers.py +663 -0
  275. bac_py-1.5.0/tests/test_examples.py +196 -0
  276. bac_py-1.5.0/tests/test_optimizations.py +149 -0
  277. bac_py-1.5.0/tests/test_scripts.py +588 -0
  278. bac_py-1.5.0/tests/test_security_hardening.py +456 -0
  279. bac_py-1.5.0/tests/test_smoke.py +7 -0
  280. bac_py-1.5.0/tests/transport/__init__.py +0 -0
  281. bac_py-1.5.0/tests/transport/conftest.py +76 -0
  282. bac_py-1.5.0/tests/transport/sc/__init__.py +0 -0
  283. bac_py-1.5.0/tests/transport/sc/test_bvlc.py +911 -0
  284. bac_py-1.5.0/tests/transport/sc/test_connection.py +560 -0
  285. bac_py-1.5.0/tests/transport/sc/test_hub_connector.py +258 -0
  286. bac_py-1.5.0/tests/transport/sc/test_hub_function.py +483 -0
  287. bac_py-1.5.0/tests/transport/sc/test_node_switch.py +377 -0
  288. bac_py-1.5.0/tests/transport/sc/test_sc_integration.py +306 -0
  289. bac_py-1.5.0/tests/transport/sc/test_sc_transport.py +364 -0
  290. bac_py-1.5.0/tests/transport/sc/test_tls.py +320 -0
  291. bac_py-1.5.0/tests/transport/sc/test_vmac.py +192 -0
  292. bac_py-1.5.0/tests/transport/sc/test_websocket.py +447 -0
  293. bac_py-1.5.0/tests/transport/test_bbmd.py +911 -0
  294. bac_py-1.5.0/tests/transport/test_bbmd6.py +689 -0
  295. bac_py-1.5.0/tests/transport/test_bbmd_advanced.py +1030 -0
  296. bac_py-1.5.0/tests/transport/test_bip.py +2124 -0
  297. bac_py-1.5.0/tests/transport/test_bip6.py +1207 -0
  298. bac_py-1.5.0/tests/transport/test_bip_bbmd.py +618 -0
  299. bac_py-1.5.0/tests/transport/test_bip_multicast.py +124 -0
  300. bac_py-1.5.0/tests/transport/test_bvll.py +168 -0
  301. bac_py-1.5.0/tests/transport/test_bvll_ipv6.py +322 -0
  302. bac_py-1.5.0/tests/transport/test_ethernet.py +1096 -0
  303. bac_py-1.5.0/tests/transport/test_foreign_device.py +324 -0
  304. bac_py-1.5.0/tests/transport/test_foreign_device6.py +321 -0
  305. bac_py-1.5.0/tests/types/__init__.py +0 -0
  306. bac_py-1.5.0/tests/types/test_audit_types.py +853 -0
  307. bac_py-1.5.0/tests/types/test_constructed.py +733 -0
  308. bac_py-1.5.0/tests/types/test_constructed_types.py +586 -0
  309. bac_py-1.5.0/tests/types/test_enums.py +1206 -0
  310. bac_py-1.5.0/tests/types/test_fault_params.py +758 -0
  311. bac_py-1.5.0/tests/types/test_notification_params.py +1492 -0
  312. bac_py-1.5.0/tests/types/test_parsing.py +365 -0
  313. bac_py-1.5.0/tests/types/test_primitives.py +651 -0
  314. bac_py-1.5.0/tests/types/test_timestamp.py +254 -0
  315. bac_py-1.5.0/tests/types/test_value_source.py +105 -0
@@ -0,0 +1,290 @@
1
+ # Personal Development Files
2
+ _ctx/
3
+ _data/
4
+ _dev/
5
+ _deprecated/
6
+ design_docs/
7
+ _refactors/
8
+ _dev_examples/
9
+ _dev_testing/
10
+ _future/
11
+ .claude/
12
+ CLAUDE.md
13
+
14
+
15
+ # Byte-compiled / optimized / DLL files
16
+ __pycache__/
17
+ *.py[cod]
18
+ *$py.class
19
+
20
+ # C extensions
21
+ *.so
22
+
23
+ # Distribution / packaging
24
+ .Python
25
+ build/
26
+ develop-eggs/
27
+ dist/
28
+ downloads/
29
+ eggs/
30
+ .eggs/
31
+ lib/
32
+ !docker/lib/
33
+ lib64/
34
+ parts/
35
+ sdist/
36
+ var/
37
+ wheels/
38
+ share/python-wheels/
39
+ *.egg-info/
40
+ .installed.cfg
41
+ *.egg
42
+ MANIFEST
43
+
44
+ # PyInstaller
45
+ # Usually these files are written by a python script from a template
46
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
47
+ *.manifest
48
+ *.spec
49
+
50
+ # Installer logs
51
+ pip-log.txt
52
+ pip-delete-this-directory.txt
53
+
54
+ # Unit test / coverage reports
55
+ htmlcov/
56
+ .tox/
57
+ .nox/
58
+ .coverage
59
+ .coverage.*
60
+ .cache
61
+ nosetests.xml
62
+ coverage.xml
63
+ *.cover
64
+ *.py,cover
65
+ .hypothesis/
66
+ .pytest_cache/
67
+ cover/
68
+
69
+ # Translations
70
+ *.mo
71
+ *.pot
72
+
73
+ # Django stuff:
74
+ *.log
75
+ local_settings.py
76
+ db.sqlite3
77
+ db.sqlite3-journal
78
+
79
+ # Flask stuff:
80
+ instance/
81
+ .webassets-cache
82
+
83
+ # Scrapy stuff:
84
+ .scrapy
85
+
86
+ # Sphinx documentation
87
+ docs/_build/
88
+
89
+ # PyBuilder
90
+ .pybuilder/
91
+ target/
92
+
93
+ # Jupyter Notebook
94
+ .ipynb_checkpoints
95
+
96
+ # IPython
97
+ profile_default/
98
+ ipython_config.py
99
+
100
+ # pyenv
101
+ # For a library or package, you might want to ignore these files since the code is
102
+ # intended to run in multiple environments; otherwise, check them in:
103
+ # .python-version
104
+
105
+ # pipenv
106
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
107
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
108
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
109
+ # install all needed dependencies.
110
+ #Pipfile.lock
111
+
112
+ # poetry
113
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
114
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
115
+ # commonly ignored for libraries.
116
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
117
+ #poetry.lock
118
+
119
+ # pdm
120
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
121
+ #pdm.lock
122
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
123
+ # in version control.
124
+ # https://pdm.fming.dev/#use-with-ide
125
+ .pdm.toml
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .venv
140
+ env/
141
+ venv/
142
+ ENV/
143
+ env.bak/
144
+ venv.bak/
145
+
146
+ # Spyder project settings
147
+ .spyderproject
148
+ .spyproject
149
+
150
+ # Rope project settings
151
+ .ropeproject
152
+
153
+ # mkdocs documentation
154
+ /site
155
+
156
+ # mypy
157
+ .mypy_cache/
158
+ .dmypy.json
159
+ dmypy.json
160
+
161
+ # Pyre type checker
162
+ .pyre/
163
+
164
+ # pytype static type analyzer
165
+ .pytype/
166
+
167
+ # Cython debug symbols
168
+ cython_debug/
169
+
170
+ # PyCharm
171
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
172
+ # be added to the global gitignore or merged into this project gitignore.
173
+ # For PyCharm Community Edition, use 'PyCharm CE' instead of 'PyCharm'.
174
+ .idea/
175
+
176
+ # Visual Studio Code
177
+ .vscode/
178
+ *.code-workspace
179
+
180
+ # Sublime Text
181
+ *.sublime-project
182
+ *.sublime-workspace
183
+
184
+ # Vim
185
+ *.swp
186
+ *.swo
187
+ *~
188
+
189
+ # Emacs
190
+ *~
191
+ \#*\#
192
+ /.emacs.desktop
193
+ /.emacs.desktop.lock
194
+ *.elc
195
+ auto-save-list
196
+ tramp
197
+ .\#*
198
+
199
+ # macOS
200
+ .DS_Store
201
+ .AppleDouble
202
+ .LSOverride
203
+ Icon
204
+ ._*
205
+ .DocumentRevisions-V100
206
+ .fseventsd
207
+ .Spotlight-V100
208
+ .TemporaryItems
209
+ .Trashes
210
+ .VolumeIcon.icns
211
+ .com.apple.timemachine.donotpresent
212
+ .AppleDB
213
+ .AppleDesktop
214
+ Network Trash Folder
215
+ Temporary Items
216
+ .apdisk
217
+
218
+ # Windows
219
+ Thumbs.db
220
+ Thumbs.db:encryptable
221
+ ehthumbs.db
222
+ ehthumbs_vista.db
223
+ *.tmp
224
+ *.temp
225
+ Desktop.ini
226
+ $RECYCLE.BIN/
227
+ *.cab
228
+ *.msi
229
+ *.msix
230
+ *.msm
231
+ *.msp
232
+ *.lnk
233
+
234
+ # Linux
235
+ *~
236
+ .fuse_hidden*
237
+ .directory
238
+ .Trash-*
239
+ .nfs*
240
+
241
+ # UV - Python package manager
242
+ .uv/
243
+ uv.lock.bak
244
+ *.uv-cache/
245
+
246
+ # Ruff - Python linter and formatter
247
+ .ruff_cache/
248
+ ruff.log
249
+ .ruff/
250
+
251
+ # MyPy - Static type checker (additional entries)
252
+ .mypy_cache/
253
+ .dmypy.json
254
+ dmypy.json
255
+ mypy-report/
256
+ *.mypy
257
+
258
+ # Pre-commit hooks
259
+ .pre-commit-config.yaml.bak
260
+
261
+ # Development and debugging
262
+ .vscode/settings.json
263
+ .vscode/launch.json
264
+ debug.log
265
+ *.debug
266
+
267
+ # Project-specific
268
+ # Add any project-specific files or directories you want to ignore
269
+ sc_test_certs/
270
+ config/local_config.json
271
+ logs/
272
+ temp/
273
+ *.local
274
+
275
+ # Database files
276
+ *.db
277
+ *.sqlite
278
+ *.sqlite3
279
+
280
+ # API keys and secrets
281
+ .env.local
282
+ .env.production
283
+ secrets.json
284
+ api_keys.json
285
+
286
+ # Backup files
287
+ *.bak
288
+ *.backup
289
+ *~
290
+ CLAUDE.md