/snap/lxd/40526/share/openvswitch/python/ovs/flow
NameSizeModeActions
decoders.py143820644editdlrm
filter.py75020644editdlrm
flow.py37720644editdlrm
kv.py105050644editdlrm
list.py38190644editdlrm
odp.py269000644editdlrm
ofp.py133960644editdlrm
ofp_act.py87860644editdlrm
ofp_fields.py73480644editdlrm
__init__.py4760644editdlrm
Edit: /snap/lxd/40526/share/openvswitch/python/ovs/flow/__init__.py (476B)
""" 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