On Feb 6, 7:01 am, Saurav <prio...@gmail.com> wrote: > Hi, > > I want to know if its possible to convert a string object into class > object. > Basically Im trying to make some generic methods for changing the data > in the models > > For your convinience, Im providing you the link to the code where Im > facing the problem > > http://dpaste.com/117323/ > > at line no 40, if you notice, I m trying to add "Form" to the > model_name for creating an instance of the class CompanyForm, here is > my problem, as a result of the addition it becomes string object and > hence im getting the error 'str' object is not callable' > > How can I overcome this problem ?? > > -Saurav
You can't 'convert' a string to an instance of a class. What you can do is use the string as the key into a dictionary of the relevant classes: form_dict = { 'Company' : CompanyForm, 'AnotherModel', : AnotherModelForm } form_class = form_dict[model_name] f = form_class() Or you could do something similar by using the built-in locals() dictionary. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---