Hello,

I'm not a python professional. I cannot import my own class file in ryu
application.

In main ryu application class i have simply wrote:

from class1 import Class1

in class1 file:

class Class1():
    def __init__(self, value):
        some code...

    def increase(self):
       some code...

When i starded ryu with first class file i get the error:

ImportError: cannot import name Class1

I think its not related with python because i could run similar code
successfully with python interpreter.

Where am i wrong, is it a special think that i have to consider importing
class file in ryu application?

Thanks.
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to