List all drivers in a blend file.

is this of any help?


for oObj in bpy.data.objects:
    if oObj.animation_data is not None:
        for oDrv in oObj.animation_data.drivers:
            print ('%s.%s is driven to %s' % (oObj.name, oDrv.data_path, oDrv.driver.expression) )