Python check if function exists without running it

Question:

In python how do you check if a function exists without actually running the function (i.e. using try)? I would be testing if it exists in a module.

Asked By: Josh Wood

||

Answers:

You can use dir to check if a name is in a module:

>>> import os
>>> "walk" in dir(os)
True
>>>

In the sample code above, we test for the os.walk function.

Answered By: user2555451

You suggested try except. You could indeed use that:

try:
    variable
except NameError:
    print("Not in scope!")
else:
    print("In scope!")

This checks if variable is in scope (it doesn’t call the function).

Answered By: rlms
Solution1:
import inspect
if (hasattr(m, 'f') and inspect.isfunction(m.f))

Solution2:
import inspect
if ('f' in dir(m) and inspect.isfunction(m.f))

where:
m = module name
f = function defined in m

Answered By: Paula Cogeanu

If you are checking if function exists in a package:

import pkg

print("method" in dir(pkg))

If you are checking if function exists in your script / namespace:

def hello():
    print("hello")

print("hello" in dir())
Answered By: openwonk

If you are looking for the function in class, you can use a “__dict__” option. E.g to check if the function “some_function” in “some_class” do:

if "some_function" in list(some_class.__dict__.keys()):
    print('Function {} found'.format ("some_function"))
Answered By: kenisam

if you are looking for a function in your code, use global()

if "function" in globals():
  ...
Answered By: Zvi

Just wanted to add my solution here. It’s 8 years late, and similar variant been suggested, but here is more capable version.
Just for those, who find this as i did.

def check(fn):
    def c():pass
    for item in globals().keys():
        if type(globals()[item]) == type(c) and fn == item:
            return print(item, "is Function!")
        elif fn == item:
            return print(fn, "is", type(globals()[item]))
    return print("Can't find", fn)
Answered By: Dmitriy Solar