I apologize if my terminology is incorrect. I am trying to get the name of the function from an API return. For example, the following is what is returned from an API. How do I get the name, the_function
?
my_variable = <Function the_function(str,int,uint)>
The type
of the above is:
type(my_variable) = <class 'the_class.utils.datatypes.the_function'>
If I only have access to what I have shown, how to I the text string the_function
? Is there an easy way to do it besides turning it into a string and using regex or something similar?