Re: [Ryu-devel] Instatiating a Ryu App in a regular Python aplication

2017-10-12 Thread Fujimoto Satoshi
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

[Ryu-devel] Instatiating a Ryu App in a regular Python aplication

2017-10-12 Thread Carlos Ferreira
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 ---