Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to call a function given a string name in mako?

share|improve this question

1 Answer

up vote 3 down vote accepted

You should be able to look it up in the dict returned by globals(). Eg.:

<$ func_name = 'my_function_name' %>
${globals()[func_name](...)}

Although, this does smell rather nasty to me. If you could expand upon your end game perhaps we can figure out something a bit saner.

share|improve this answer
thanks, this is related to stackoverflow.com/questions/3842458/python-lookup-function so i'm trying to figure out ways around it – Timmy Oct 1 '10 at 21:26
I like your interrobang. Also, +1 for a good answer and for getting clarification on why this is needed. – JoshD Oct 1 '10 at 21:27

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.