I want to be able to call a function in Python/Django by a string.
For example say I have two apps in my django project....
AppOne
AppTwo
Now say that AppOne has a function that follows this format...
def ShowMe(request):
pass
Now say that AppTwo has a function exactly like AppOne's function, but pretend that it does some inner operations slightly differently...
Now say that I'm in AppTwo, and I want to call AppOne's ShowMe function.... NOT AppTwo's ShowMe function
Is there anyway for me to (without actually importing the app using import) run a function from another App if multiple apps have the same function name by specifying an App Name when I get the function?
I'm using Django 1.8.4