| Server IP : 167.99.254.82 / Your IP : 216.73.216.188 Web Server : Apache System : Linux host.techisquad.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : pawluxera ( 1011) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /snap/lxd/current/share/openvswitch/python/ovs/flow/ |
Upload File : |
""" Global flow library entrypoint.
"""
for libname in ["netaddr", "pyparsing"]:
try:
lib = __import__(libname)
except ModuleNotFoundError as e:
raise ImportError(
f"OVS Flow library requires {libname} to be installed."
" To install all the dependencies needed for the Flow library, run"
" 'pip install -e ovs[flow]' (or 'pip install -e .[flow]' locally)"
) from e
else:
globals()[libname] = lib