Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

models.py

def operation(argument):
            #Operation
    return variable

    class X(models.Model)
        a = models ...
        b = models ...


I am trying to import operation in my views.py .. When I try using

from project.models import operation

But then I get the following error

ImportError: cannot import name operation

share|improve this question
I noticed my mistake but my actual problem is that operation is a global function def operation: '''Operations''' return variable class X(models.Model): # # – melsk Jun 22 '11 at 16:20
This is not a Django question but a Python question – e-satis Jun 22 '11 at 16:51
1  
your code doesn't make any sense... – user780363 Jun 22 '11 at 17:51

2 Answers

up vote 0 down vote accepted

/* */ aren't valid comment characters in python, which is causes a parse error, so the import fails. Use # instead.

Also, you'll want to get an instance of X then call the operation method on that. Like:

from myproj.models import X
x = X.objects.get(id=1)
val = x.operation()
share|improve this answer

You would have to import the class to get access to the instance method you've defined on the class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.