Skip to main content

Python Bindings to Interact with BESS GRPC Daemon

Project description

pyBESS

pybess is a Python library which lets you interact with BESS using gRPC.

Installation

You can install the library directly using pip/pip3:

pip3 install "git+https://github.com/rvichery/bess.git@pybess-python
-package#egg=pybess&subdirectory=pybess"

Usage

As mentioned above pybess can be used to communicate with BESS over gRPC.

An example of usage of this library is to list all BESS ports remotely:

import sys

from google.protobuf.json_format import MessageToDict
from pybess.bess import BESS

bess = BESS()
try:
    bess.connect(grpc_url="%s:10514" % sys.argv[1])
    ports = bess.list_ports()
    print(MessageToDict(ports)["ports"])
finally:
    bess.disconnect()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybess_grpc-0.0.4.tar.gz (51.2 kB view hashes)

Uploaded Source

Built Distribution

pybess_grpc-0.0.4-py3-none-any.whl (119.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page