tdl-xoa-driver 1.4.0__tar.gz → 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 (239) hide show
  1. {tdl_xoa_driver-1.4.0/tdl_xoa_driver.egg-info → tdl_xoa_driver-1.5.0}/PKG-INFO +8 -8
  2. tdl_xoa_driver-1.5.0/README.md +22 -0
  3. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/setup.py +2 -2
  4. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0/tdl_xoa_driver.egg-info}/PKG-INFO +8 -8
  5. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/tdl_xoa_driver.egg-info/SOURCES.txt +14 -1
  6. tdl_xoa_driver-1.5.0/xoa_driver/__init__.py +2 -0
  7. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/enums.py +2 -0
  8. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/exceptions.py +2 -0
  9. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/anlt.py +2 -0
  10. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/anlt_ll_debug.py +2 -0
  11. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/__init__.py +21 -0
  12. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/_cli_manager.py +541 -0
  13. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/_config_block.py +334 -0
  14. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/_socket_driver.py +111 -0
  15. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/port_config.py +116 -0
  16. tdl_xoa_driver-1.5.0/xoa_driver/functions/cli/testbed_config.py +179 -0
  17. tdl_xoa_driver-1.5.0/xoa_driver/functions/cmis/__init__.py +8 -0
  18. tdl_xoa_driver-1.5.0/xoa_driver/functions/cmis/_constants.py +25 -0
  19. tdl_xoa_driver-1.5.0/xoa_driver/functions/cmis/_replies.py +600 -0
  20. tdl_xoa_driver-1.5.0/xoa_driver/functions/cmis/_utils.py +49 -0
  21. tdl_xoa_driver-1.5.0/xoa_driver/functions/cmis/cdb.py +1266 -0
  22. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/exceptions.py +2 -0
  23. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/headers.py +2 -0
  24. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/mgmt.py +42 -19
  25. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/tools.py +9 -3
  26. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/hlfuncs.py +6 -2
  27. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/c_commands.py +6 -10
  28. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/enums.py +25 -1
  29. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/p_commands.py +38 -2
  30. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pl1_commands.py +130 -73
  31. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pp_commands.py +44 -55
  32. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pr_commands.py +17 -16
  33. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/px_commands.py +54 -54
  34. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__state_on_user.py +1 -1
  35. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/exceptions/modules.py +4 -3
  36. tdl_xoa_driver-1.5.0/xoa_driver/internals/hli/modules/modules_l23/family_edun.py +82 -0
  37. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_g.py +1 -1
  38. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_l1.py +19 -0
  39. tdl_xoa_driver-1.5.0/xoa_driver/internals/hli/ports/port_l23/edun_l1.py +181 -0
  40. tdl_xoa_driver-1.5.0/xoa_driver/internals/hli/ports/port_l23/family_edun.py +82 -0
  41. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_l1.py +14 -8
  42. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/state_storage/modules_state.py +20 -0
  43. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/state_storage/testers_state.py +10 -0
  44. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/lli.py +1 -0
  45. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/misc.py +1 -0
  46. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/modules.py +22 -0
  47. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/ports.py +22 -0
  48. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/testers.py +2 -0
  49. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/utils.py +2 -0
  50. tdl_xoa_driver-1.4.0/README.md +0 -22
  51. tdl_xoa_driver-1.4.0/xoa_driver/__init__.py +0 -2
  52. tdl_xoa_driver-1.4.0/xoa_driver/functions/cli.py +0 -581
  53. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/LICENSE +0 -0
  54. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/pyproject.toml +0 -0
  55. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/setup.cfg +0 -0
  56. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/tdl_xoa_driver.egg-info/dependency_links.txt +0 -0
  57. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/tdl_xoa_driver.egg-info/top_level.txt +0 -0
  58. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/functions/__init__.py +0 -0
  59. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/__init__.py +0 -0
  60. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/__init__.py +0 -0
  61. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/m4_commands.py +0 -0
  62. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/m4e_commands.py +0 -0
  63. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/m_commands.py +0 -0
  64. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/p4_commands.py +0 -0
  65. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/p4e_commands.py +0 -0
  66. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/p4g_commands.py +0 -0
  67. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pc_commands.py +0 -0
  68. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pd_commands.py +0 -0
  69. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pe_commands.py +0 -0
  70. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pec_commands.py +0 -0
  71. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/ped_commands.py +0 -0
  72. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pef_commands.py +0 -0
  73. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pf_commands.py +0 -0
  74. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pl_commands.py +0 -0
  75. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pm_commands.py +0 -0
  76. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/ps_commands.py +0 -0
  77. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/pt_commands.py +0 -0
  78. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/commands/subtypes.py +0 -0
  79. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/__init__.py +0 -0
  80. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/builders.py +0 -0
  81. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/exceptions.py +0 -0
  82. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/funcs.py +0 -0
  83. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/funcs.pyi +0 -0
  84. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/interfaces.py +0 -0
  85. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/token.py +0 -0
  86. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/__init__.py +0 -0
  87. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/_processor.py +0 -0
  88. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/_publisher.py +0 -0
  89. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/_request_id_counter.py +0 -0
  90. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/_stream.py +0 -0
  91. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/_typings.py +0 -0
  92. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/exceptions.py +0 -0
  93. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/handler.py +0 -0
  94. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__init__.py +0 -0
  95. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__logger.py +0 -0
  96. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__state_off.py +0 -0
  97. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__state_on_default.py +0 -0
  98. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/logger/__state_on_loguru.py +0 -0
  99. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/__init__.py +0 -0
  100. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/_constants.py +0 -0
  101. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/_utils.py +0 -0
  102. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/exceptions.py +0 -0
  103. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/__init__.py +0 -0
  104. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/base_struct.py +0 -0
  105. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/descriptor.py +0 -0
  106. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/exceptions.py +0 -0
  107. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/field.py +0 -0
  108. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/types.py +0 -0
  109. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/payload/utils.py +0 -0
  110. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/struct_header.py +0 -0
  111. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/struct_request.py +0 -0
  112. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/protocol/struct_response.py +0 -0
  113. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/core/transporter/registry.py +0 -0
  114. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/exceptions/__init__.py +0 -0
  115. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/exceptions/testers.py +0 -0
  116. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/__init__.py +0 -0
  117. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/__init__.py +0 -0
  118. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/base_index.py +0 -0
  119. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/__init__.py +0 -0
  120. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/cg.py +0 -0
  121. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/histogram.py +0 -0
  122. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/l2.py +0 -0
  123. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/l3.py +0 -0
  124. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/raw.py +0 -0
  125. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/replay.py +0 -0
  126. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/tcp.py +0 -0
  127. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/tls.py +0 -0
  128. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/udp.py +0 -0
  129. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/connection_group/user_state.py +0 -0
  130. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/filter/__init__.py +0 -0
  131. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/filter/base_filter.py +0 -0
  132. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/filter/genuine_filter.py +0 -0
  133. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/length_term.py +0 -0
  134. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/macsecscs/__init__.py +0 -0
  135. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/macsecscs/base_macsecsc.py +0 -0
  136. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/macsecscs/genuine_macsecsc.py +0 -0
  137. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/match_term.py +0 -0
  138. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/port_dataset.py +0 -0
  139. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/streams/__init__.py +0 -0
  140. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/streams/base_stream.py +0 -0
  141. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/indices/streams/genuine_stream.py +0 -0
  142. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/__init__.py +0 -0
  143. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/__interfaces.py +0 -0
  144. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/base_module.py +0 -0
  145. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/module_chimera.py +0 -0
  146. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/module_l23ve.py +0 -0
  147. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/module_l47.py +0 -0
  148. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/module_l47ve.py +0 -0
  149. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/__init__.py +0 -0
  150. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_combi.py +0 -0
  151. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_d.py +0 -0
  152. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_e.py +0 -0
  153. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_f.py +0 -0
  154. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_h.py +0 -0
  155. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_i.py +0 -0
  156. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_j.py +0 -0
  157. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_k.py +0 -0
  158. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_l.py +0 -0
  159. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_m.py +0 -0
  160. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/family_n.py +0 -0
  161. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/modules/modules_l23/module_l23_base.py +0 -0
  162. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/__init__.py +0 -0
  163. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/base_port.py +0 -0
  164. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/__init__.py +0 -0
  165. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/__init__.py +0 -0
  166. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_capture.py +0 -0
  167. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_l23.py +0 -0
  168. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_l23_genuine.py +0 -0
  169. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_reception_statistics.py +0 -0
  170. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_transceiver.py +0 -0
  171. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/bases/port_transmission_statistics.py +0 -0
  172. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/__init__.py +0 -0
  173. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/filter_definition/__init__.py +0 -0
  174. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/filter_definition/_utils.py +0 -0
  175. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/filter_definition/general.py +0 -0
  176. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/filter_definition/shadow.py +0 -0
  177. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/filter_definition/working.py +0 -0
  178. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/pe_custom_distribution.py +0 -0
  179. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/pe_distribution.py +0 -0
  180. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/port_chimera.py +0 -0
  181. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/port_emulation.py +0 -0
  182. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/reception_statistics.py +0 -0
  183. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/chimera/transmission_statistics.py +0 -0
  184. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_combi.py +0 -0
  185. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_d.py +0 -0
  186. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_e.py +0 -0
  187. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_f.py +0 -0
  188. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_g.py +0 -0
  189. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_h.py +0 -0
  190. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_i.py +0 -0
  191. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_j.py +0 -0
  192. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_k.py +0 -0
  193. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_l.py +0 -0
  194. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/family_m.py +0 -0
  195. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/fault_jkl.py +0 -0
  196. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/freya_l1.py +0 -0
  197. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/pcs_pma_ghijkl.py +0 -0
  198. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/pcs_pma_ijkl_chimera.py +0 -0
  199. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/pcs_pma_l.py +0 -0
  200. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l23/port_l23ve.py +0 -0
  201. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l47/__init__.py +0 -0
  202. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l47/counters.py +0 -0
  203. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l47/main.py +0 -0
  204. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/ports/port_l47/packet_engine.py +0 -0
  205. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/revisions.py +0 -0
  206. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/__init__.py +0 -0
  207. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/_base_tester.py +0 -0
  208. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/__init__.py +0 -0
  209. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/l_23/__init__.py +0 -0
  210. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/l_23/health.py +0 -0
  211. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/l_23/rest_api.py +0 -0
  212. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/l_23/time_keeper.py +0 -0
  213. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/l_23/upload_file.py +0 -0
  214. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/genuine/management_interface.py +0 -0
  215. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/l23_tester.py +0 -0
  216. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/l23ve_tester.py +0 -0
  217. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/l47_tester.py +0 -0
  218. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/hli/testers/l47ve_tester.py +0 -0
  219. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/state_storage/__init__.py +0 -0
  220. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/state_storage/_speed_detector.py +0 -0
  221. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/state_storage/ports_state.py +0 -0
  222. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/__init__.py +0 -0
  223. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/attributes.py +0 -0
  224. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/cap_id.py +0 -0
  225. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/con_traffic_light.py +0 -0
  226. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/indices/__init__.py +0 -0
  227. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/indices/_interfaces.py +0 -0
  228. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/indices/header_modifier_manager.py +0 -0
  229. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/indices/index_manager.py +0 -0
  230. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/indices/observer.py +0 -0
  231. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/kind.py +0 -0
  232. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/managers/__init__.py +0 -0
  233. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/managers/abc.py +0 -0
  234. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/managers/exceptions.py +0 -0
  235. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/managers/modules_manager.py +0 -0
  236. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/managers/ports_manager.py +0 -0
  237. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/rev_tool.py +0 -0
  238. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/utils/session.py +0 -0
  239. {tdl_xoa_driver-1.4.0 → tdl_xoa_driver-1.5.0}/xoa_driver/internals/warn.py +0 -0
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tdl-xoa-driver
3
- Version: 1.4.0
4
- Summary: XOA Driver is a Python library providing user-friendly communication interfaces to Teledyne LeCroy Xena Ethernet traffic generation test equipment. It provides a rich collection of APIs that can be used to either write test scripts or develop applications.
3
+ Version: 1.5.0
4
+ Summary: TDL XOA Python API is a Python library providing user-friendly communication interfaces to Teledyne LeCroy Xena Ethernet traffic generation test equipment. It provides a rich collection of APIs that can be used to either write test scripts or develop applications.
5
5
  Home-page: https://github.com/xenanetworks/tdl-xoa-driver
6
6
  Author: Leonard Yu, Zoltan Hanisch
7
7
  Author-email: Leonard.Yu@teledyne.com, Zoltan.Hanisch@teledyne.com
8
8
  Maintainer: Teledyne LeCroy Xena
9
9
  Maintainer-email: xena-sales@teledyne.com
10
10
  License: Apache 2.0
11
- Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
14
  Classifier: License :: OSI Approved :: Apache Software License
@@ -33,15 +33,15 @@ Dynamic: requires-python
33
33
  Dynamic: summary
34
34
 
35
35
  ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/tdl-xoa-driver) [![PyPI](https://img.shields.io/pypi/v/tdl-xoa-driver)](https://pypi.python.org/pypi/tdl-xoa-driver) [![Documentation Status](https://readthedocs.com/projects/xena-networks-tdl-xoa-driver/badge/?version=latest)](https://docs.xenanetworks.com/projects/tdl-xoa-driver/en/latest/?badge=latest)
36
- # XOA Driver
37
- XOA Driver is a standalone Python library that provides a user-friendly and powerful interface for automating network testing tasks using Xena Networks test equipment. Xena test equipment is a high-performance network test device designed for testing and measuring the performance of network equipment and applications.
36
+ # TDL XOA Python API
37
+ TDL XOA Python API is a standalone Python library that provides a user-friendly and powerful interface for automating network testing tasks using Xena Networks test equipment. Xena test equipment is a high-performance network test device designed for testing and measuring the performance of network equipment and applications.
38
38
 
39
39
  ## Introduction
40
- The XOA Driver is designed to be easy to use and integrate with other automation tools and frameworks. It provides a comprehensive set of methods and classes for interacting with Xena test equipment, including the ability to create and run complex test scenarios, generate and analyze traffic at line rate, and perform detailed analysis of network performance and behavior.
40
+ The TDL XOA Python API is designed to be easy to use and integrate with other automation tools and frameworks. It provides a comprehensive set of methods and classes for interacting with Xena test equipment, including the ability to create and run complex test scenarios, generate and analyze traffic at line rate, and perform detailed analysis of network performance and behavior.
41
41
 
42
- The XOA Driver simplifies the process of automating network testing tasks using Xena test equipment. It provides a simple, yet powerful, interface for interacting with Xena test equipment using the Python programming language. With the XOA Driver, network engineers and testing professionals can easily create and execute test scenarios, generate and analyze traffic, and perform detailed analysis of network performance and behavior, all while leveraging the power and flexibility of the Python programming language.
42
+ The TDL XOA Python API simplifies the process of automating network testing tasks using Xena test equipment. It provides a simple, yet powerful, interface for interacting with Xena test equipment using the Python programming language. With the TDL XOA Python API, network engineers and testing professionals can easily create and execute test scenarios, generate and analyze traffic, and perform detailed analysis of network performance and behavior, all while leveraging the power and flexibility of the Python programming language.
43
43
 
44
- Overall, the XOA Driver is a valuable tool for anyone looking to automate their network testing tasks using Xena test equipment. With its simple, yet powerful, interface and support for the Python programming language, the XOA Driver provides a flexible and extensible framework for automating network testing tasks and improving the quality of network infrastructure.
44
+ Overall, the TDL XOA Python API is a valuable tool for anyone looking to automate their network testing tasks using Xena test equipment. With its simple, yet powerful, interface and support for the Python programming language, the TDL XOA Python API provides a flexible and extensible framework for automating network testing tasks and improving the quality of network infrastructure.
45
45
 
46
46
  ## Documentation
47
47
  The user documentation is hosted:
@@ -0,0 +1,22 @@
1
+ ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/tdl-xoa-driver) [![PyPI](https://img.shields.io/pypi/v/tdl-xoa-driver)](https://pypi.python.org/pypi/tdl-xoa-driver) [![Documentation Status](https://readthedocs.com/projects/xena-networks-tdl-xoa-driver/badge/?version=latest)](https://docs.xenanetworks.com/projects/tdl-xoa-driver/en/latest/?badge=latest)
2
+ # TDL XOA Python API
3
+ TDL XOA Python API is a standalone Python library that provides a user-friendly and powerful interface for automating network testing tasks using Xena Networks test equipment. Xena test equipment is a high-performance network test device designed for testing and measuring the performance of network equipment and applications.
4
+
5
+ ## Introduction
6
+ The TDL XOA Python API is designed to be easy to use and integrate with other automation tools and frameworks. It provides a comprehensive set of methods and classes for interacting with Xena test equipment, including the ability to create and run complex test scenarios, generate and analyze traffic at line rate, and perform detailed analysis of network performance and behavior.
7
+
8
+ The TDL XOA Python API simplifies the process of automating network testing tasks using Xena test equipment. It provides a simple, yet powerful, interface for interacting with Xena test equipment using the Python programming language. With the TDL XOA Python API, network engineers and testing professionals can easily create and execute test scenarios, generate and analyze traffic, and perform detailed analysis of network performance and behavior, all while leveraging the power and flexibility of the Python programming language.
9
+
10
+ Overall, the TDL XOA Python API is a valuable tool for anyone looking to automate their network testing tasks using Xena test equipment. With its simple, yet powerful, interface and support for the Python programming language, the TDL XOA Python API provides a flexible and extensible framework for automating network testing tasks and improving the quality of network infrastructure.
11
+
12
+ ## Documentation
13
+ The user documentation is hosted:
14
+ [XOA Driver Documentation](https://docs.xenanetworks.com/projects/tdl-xoa-driver)
15
+
16
+ ## Key Features
17
+ * Objected-oriented, high-level abstraction, to help users save time on parsing command responses.
18
+ * Supporting sending commands in batches to increase code execution efficiency.
19
+ * Automatically matching command requests and server response, providing clear information in case a command gets an error response.
20
+ * Supporting server-to-client push notification, and event subscription, to reduce user code complexity.
21
+ * Covering commands of Xena testers, including Xena Valkyrie, Vulcan, and Chimera.
22
+ * Supporting IDE auto-complete with built-in class/function/API use manual, to increase development efficiency.
@@ -8,7 +8,7 @@ def main():
8
8
  setuptools.setup(
9
9
  name="tdl-xoa-driver",
10
10
  description=(
11
- "XOA Driver is a Python library providing user-friendly communication"
11
+ "TDL XOA Python API is a Python library providing user-friendly communication"
12
12
  " interfaces to Teledyne LeCroy Xena Ethernet traffic generation test equipment."
13
13
  " It provides a rich collection of APIs that can be used to either write"
14
14
  " test scripts or develop applications."
@@ -23,7 +23,7 @@ def main():
23
23
  packages=setuptools.find_packages(),
24
24
  license='Apache 2.0',
25
25
  classifiers=[
26
- "Development Status :: 5 - Production/Stable",
26
+ "Development Status :: 4 - Beta",
27
27
  "Intended Audience :: Developers",
28
28
  "Topic :: Software Development :: Libraries :: Python Modules",
29
29
  "License :: OSI Approved :: Apache Software License",
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tdl-xoa-driver
3
- Version: 1.4.0
4
- Summary: XOA Driver is a Python library providing user-friendly communication interfaces to Teledyne LeCroy Xena Ethernet traffic generation test equipment. It provides a rich collection of APIs that can be used to either write test scripts or develop applications.
3
+ Version: 1.5.0
4
+ Summary: TDL XOA Python API is a Python library providing user-friendly communication interfaces to Teledyne LeCroy Xena Ethernet traffic generation test equipment. It provides a rich collection of APIs that can be used to either write test scripts or develop applications.
5
5
  Home-page: https://github.com/xenanetworks/tdl-xoa-driver
6
6
  Author: Leonard Yu, Zoltan Hanisch
7
7
  Author-email: Leonard.Yu@teledyne.com, Zoltan.Hanisch@teledyne.com
8
8
  Maintainer: Teledyne LeCroy Xena
9
9
  Maintainer-email: xena-sales@teledyne.com
10
10
  License: Apache 2.0
11
- Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
14
  Classifier: License :: OSI Approved :: Apache Software License
@@ -33,15 +33,15 @@ Dynamic: requires-python
33
33
  Dynamic: summary
34
34
 
35
35
  ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/tdl-xoa-driver) [![PyPI](https://img.shields.io/pypi/v/tdl-xoa-driver)](https://pypi.python.org/pypi/tdl-xoa-driver) [![Documentation Status](https://readthedocs.com/projects/xena-networks-tdl-xoa-driver/badge/?version=latest)](https://docs.xenanetworks.com/projects/tdl-xoa-driver/en/latest/?badge=latest)
36
- # XOA Driver
37
- XOA Driver is a standalone Python library that provides a user-friendly and powerful interface for automating network testing tasks using Xena Networks test equipment. Xena test equipment is a high-performance network test device designed for testing and measuring the performance of network equipment and applications.
36
+ # TDL XOA Python API
37
+ TDL XOA Python API is a standalone Python library that provides a user-friendly and powerful interface for automating network testing tasks using Xena Networks test equipment. Xena test equipment is a high-performance network test device designed for testing and measuring the performance of network equipment and applications.
38
38
 
39
39
  ## Introduction
40
- The XOA Driver is designed to be easy to use and integrate with other automation tools and frameworks. It provides a comprehensive set of methods and classes for interacting with Xena test equipment, including the ability to create and run complex test scenarios, generate and analyze traffic at line rate, and perform detailed analysis of network performance and behavior.
40
+ The TDL XOA Python API is designed to be easy to use and integrate with other automation tools and frameworks. It provides a comprehensive set of methods and classes for interacting with Xena test equipment, including the ability to create and run complex test scenarios, generate and analyze traffic at line rate, and perform detailed analysis of network performance and behavior.
41
41
 
42
- The XOA Driver simplifies the process of automating network testing tasks using Xena test equipment. It provides a simple, yet powerful, interface for interacting with Xena test equipment using the Python programming language. With the XOA Driver, network engineers and testing professionals can easily create and execute test scenarios, generate and analyze traffic, and perform detailed analysis of network performance and behavior, all while leveraging the power and flexibility of the Python programming language.
42
+ The TDL XOA Python API simplifies the process of automating network testing tasks using Xena test equipment. It provides a simple, yet powerful, interface for interacting with Xena test equipment using the Python programming language. With the TDL XOA Python API, network engineers and testing professionals can easily create and execute test scenarios, generate and analyze traffic, and perform detailed analysis of network performance and behavior, all while leveraging the power and flexibility of the Python programming language.
43
43
 
44
- Overall, the XOA Driver is a valuable tool for anyone looking to automate their network testing tasks using Xena test equipment. With its simple, yet powerful, interface and support for the Python programming language, the XOA Driver provides a flexible and extensible framework for automating network testing tasks and improving the quality of network infrastructure.
44
+ Overall, the TDL XOA Python API is a valuable tool for anyone looking to automate their network testing tasks using Xena test equipment. With its simple, yet powerful, interface and support for the Python programming language, the TDL XOA Python API provides a flexible and extensible framework for automating network testing tasks and improving the quality of network infrastructure.
45
45
 
46
46
  ## Documentation
47
47
  The user documentation is hosted:
@@ -20,11 +20,21 @@ xoa_driver/utils.py
20
20
  xoa_driver/functions/__init__.py
21
21
  xoa_driver/functions/anlt.py
22
22
  xoa_driver/functions/anlt_ll_debug.py
23
- xoa_driver/functions/cli.py
24
23
  xoa_driver/functions/exceptions.py
25
24
  xoa_driver/functions/headers.py
26
25
  xoa_driver/functions/mgmt.py
27
26
  xoa_driver/functions/tools.py
27
+ xoa_driver/functions/cli/__init__.py
28
+ xoa_driver/functions/cli/_cli_manager.py
29
+ xoa_driver/functions/cli/_config_block.py
30
+ xoa_driver/functions/cli/_socket_driver.py
31
+ xoa_driver/functions/cli/port_config.py
32
+ xoa_driver/functions/cli/testbed_config.py
33
+ xoa_driver/functions/cmis/__init__.py
34
+ xoa_driver/functions/cmis/_constants.py
35
+ xoa_driver/functions/cmis/_replies.py
36
+ xoa_driver/functions/cmis/_utils.py
37
+ xoa_driver/functions/cmis/cdb.py
28
38
  xoa_driver/internals/__init__.py
29
39
  xoa_driver/internals/warn.py
30
40
  xoa_driver/internals/commands/__init__.py
@@ -130,6 +140,7 @@ xoa_driver/internals/hli/modules/modules_l23/__init__.py
130
140
  xoa_driver/internals/hli/modules/modules_l23/family_combi.py
131
141
  xoa_driver/internals/hli/modules/modules_l23/family_d.py
132
142
  xoa_driver/internals/hli/modules/modules_l23/family_e.py
143
+ xoa_driver/internals/hli/modules/modules_l23/family_edun.py
133
144
  xoa_driver/internals/hli/modules/modules_l23/family_f.py
134
145
  xoa_driver/internals/hli/modules/modules_l23/family_g.py
135
146
  xoa_driver/internals/hli/modules/modules_l23/family_h.py
@@ -144,9 +155,11 @@ xoa_driver/internals/hli/modules/modules_l23/module_l23_base.py
144
155
  xoa_driver/internals/hli/ports/__init__.py
145
156
  xoa_driver/internals/hli/ports/base_port.py
146
157
  xoa_driver/internals/hli/ports/port_l23/__init__.py
158
+ xoa_driver/internals/hli/ports/port_l23/edun_l1.py
147
159
  xoa_driver/internals/hli/ports/port_l23/family_combi.py
148
160
  xoa_driver/internals/hli/ports/port_l23/family_d.py
149
161
  xoa_driver/internals/hli/ports/port_l23/family_e.py
162
+ xoa_driver/internals/hli/ports/port_l23/family_edun.py
150
163
  xoa_driver/internals/hli/ports/port_l23/family_f.py
151
164
  xoa_driver/internals/hli/ports/port_l23/family_g.py
152
165
  xoa_driver/internals/hli/ports/port_l23/family_h.py
@@ -0,0 +1,2 @@
1
+ __version__ = "1.5.0"
2
+ __short_version__ = "1.5"
@@ -1,5 +1,7 @@
1
1
  #: Available enums used by commands and server response status.
2
2
 
3
+ """Enums used in XOA Python API."""
4
+
3
5
  from .internals.commands.enums import (
4
6
  AlgorithmMethod,
5
7
  AlignLockStatus,
@@ -1,5 +1,7 @@
1
1
  #: All exception classes which can be propagated to the upper level.
2
2
 
3
+ """Exception types used in XOA Python API."""
4
+
3
5
  from .internals.exceptions import (
4
6
  WrongModuleError,
5
7
  WrongTesterError,
@@ -1,3 +1,5 @@
1
+ """The anlt high-level function module."""
2
+
1
3
  from __future__ import annotations
2
4
  from dataclasses import dataclass, field
3
5
  import typing as t
@@ -1,3 +1,5 @@
1
+ """The anlt debug high-level function module."""
2
+
1
3
  from __future__ import annotations
2
4
  import asyncio
3
5
  import typing as t
@@ -0,0 +1,21 @@
1
+ """The cli high-level function module."""
2
+
3
+ # importing commands subsets
4
+ from .port_config import (
5
+ save_port_config,
6
+ load_port_config,
7
+ port_config_from_file,
8
+ )
9
+ from .testbed_config import (
10
+ save_testbed_config,
11
+ load_testbed_config,
12
+ module_config_from_file,
13
+ )
14
+ __all__ = (
15
+ "save_port_config",
16
+ "load_port_config",
17
+ "port_config_from_file",
18
+ "save_testbed_config",
19
+ "load_testbed_config",
20
+ "module_config_from_file",
21
+ )