diff --git a/README.rst b/README.rst index 484d24b..9208d81 100644 --- a/README.rst +++ b/README.rst @@ -1,25 +1,28 @@ TGN - Traffic Generator + IXL - IxLoad This package implements Python OO API for Ixia IxLoad traffic generator. Installation: -stable - pip instsll pyixload + stable - pip install pyixload + +Functionality: -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 -- 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. + - 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 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 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