Re: [Ryu-devel] How to Call RyuApp directly in Python Application

2018-11-18 Thread Moh'd Reza Abbasi
I found the following script on the net. I use it to run and debug my ryu apps. You can modify the script according to your need. You need to change the "main_app" to your application name. You should also place this script in the same path as your ryu app (or you might as well specify its path

Re: [Ryu-devel] How to Call RyuApp directly in Python Application

2018-11-18 Thread Soe Ye Htet
Hi, Please let me share what I have known. In python, there is library which is called os package. That package is used to call linux command in python application. Import os In the place that you want to call ryu application, you can write os.system("ryu-manager x"). If you want to run ryu