From f4ccd03c23e3fc3fedd04640350345b67ca9e106 Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:40:58 +0530 Subject: [PATCH 1/7] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 484d24b..eec2825 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ IXL - IxLoad This package implements Python OO API for Ixia IxLoad traffic generator. Installation: -stable - pip instsll pyixload +stable - pip install pyixload Functionality The current version supports the following test flow: From 3f4ebb0d636e855062d817e8128cc376c99b943d Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:41:55 +0530 Subject: [PATCH 2/7] Update README.rst --- README.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index eec2825..bdcf875 100644 --- a/README.rst +++ b/README.rst @@ -11,12 +11,12 @@ Functionality The current version supports the following test flow: Load configuration -> Get/Set attributes -> Start/Stop traffic -> Get statistics. Supported operations: -- Basic operations - get/set attributes, get/create children. -- Load configuration - load configuration (rxf), select test, reserve ports and analyze the configuration -- Start/Stop - test -- Statistics - read views -- Save configuration -- Disconnect + - Basic operations - get/set attributes, get/create children. + - Load configuration - load configuration (rxf), select test, reserve ports and analyze the configuration + - Start/Stop - test + - Statistics - read views + - Save configuration + - Disconnect Known limitations: - When using remote IxLoad gateway, configurations with additional files (on top of the rxf itself) are not supported. From a5ba773148d0fb8bf58f8799657e8cf30ff0d85d Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:42:46 +0530 Subject: [PATCH 3/7] Update README.rst --- README.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index bdcf875..2af1f1f 100644 --- a/README.rst +++ b/README.rst @@ -5,11 +5,12 @@ IXL - IxLoad This package implements Python OO API for Ixia IxLoad traffic generator. Installation: -stable - pip install pyixload + stable - pip install pyixload Functionality The current version supports the following test flow: -Load configuration -> Get/Set attributes -> Start/Stop traffic -> Get statistics. + Load configuration -> Get/Set attributes -> Start/Stop traffic -> Get statistics. + Supported operations: - Basic operations - get/set attributes, get/create children. - Load configuration - load configuration (rxf), select test, reserve ports and analyze the configuration @@ -19,7 +20,7 @@ Supported operations: - Disconnect Known limitations: -- When using remote IxLoad gateway, configurations with additional files (on top of the rxf itself) are not supported. + - When using remote IxLoad gateway, configurations with additional files (on top of the rxf itself) are not supported. Contact: -Feel free to contact me with any question or feature request at yoram@ignissoft.com + Feel free to contact me with any question or feature request at yoram@ignissoft.com From a91e77bcaf192726d3d55473ac33153b35ebd4eb Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:43:44 +0530 Subject: [PATCH 4/7] Update README.rst --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 2af1f1f..6fdb239 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,6 @@ TGN - Traffic Generator + IXL - IxLoad This package implements Python OO API for Ixia IxLoad traffic generator. @@ -8,6 +9,7 @@ Installation: stable - pip install pyixload Functionality + The current version supports the following test flow: Load configuration -> Get/Set attributes -> Start/Stop traffic -> Get statistics. From d0a74ecf726be01fb077eae6b0f3f5ce92b5360b Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:44:12 +0530 Subject: [PATCH 5/7] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 6fdb239..9208d81 100644 --- a/README.rst +++ b/README.rst @@ -8,7 +8,7 @@ This package implements Python OO API for Ixia IxLoad traffic generator. Installation: stable - pip install pyixload -Functionality +Functionality: The current version supports the following test flow: Load configuration -> Get/Set attributes -> Start/Stop traffic -> Get statistics. From 896084f81a430fdbf22ca856f148a3ac603c22a1 Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Thu, 13 Oct 2022 15:17:21 +0530 Subject: [PATCH 6/7] Update ixl_app.py --- ixload/ixl_app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ixload/ixl_app.py b/ixload/ixl_app.py index 467f294..d334a4c 100644 --- a/ixload/ixl_app.py +++ b/ixload/ixl_app.py @@ -1,7 +1,8 @@ """ Classes and utilities to manage IxLoad application. """ -from __future__ import annotations +#as per https://github.com/shmir/PyIxLoad/issues/2 +#from __future__ import annotations import logging from pathlib import Path from typing import Optional From 06539f469d06948826b92677162c41a4d94e3233 Mon Sep 17 00:00:00 2001 From: Karthikdasari0423 <92445174+Karthikdasari0423@users.noreply.github.com> Date: Thu, 13 Oct 2022 15:42:53 +0530 Subject: [PATCH 7/7] Update ixl_object.py --- ixload/ixl_object.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ixload/ixl_object.py b/ixload/ixl_object.py index 33835c1..2e00fe1 100644 --- a/ixload/ixl_object.py +++ b/ixload/ixl_object.py @@ -1,7 +1,8 @@ """ Base classes and utilities to manage IxLoad (IXL). """ -from __future__ import annotations +#as per https://github.com/shmir/PyIxLoad/issues/2 +#from __future__ import annotations from collections import OrderedDict from typing import List, Type, Optional, Dict