Hi, Carlos
Yes, you can instantiate app_manager.RyuApp with ryu/cmd/manager.py.
You can pass the argument list like the below.
In this, you should specify the application by name:
from ryu.cmd import manager
manager.main(args=['--verbose', 'ryu.app.simple_switch_13'])
Or, if you have a
Hello to all,
I have been dwelling through the Ryu code and I wonder, is it possible
for me to instantiate a Ryu Application without using the ryu-manager?
For example, can I instantiate a app_manager.RyuApp class from a
regular Python Application?
Thank you!
Carlos Ferreira
---