INNER CODE UNIT · Python
resource_exists
kacperks/Fractal_Engine · Engine/Thirdparty/cmake/glad/glad/files/__init__.py:7
def resource_exists(*args, **kwargs):
return False
def resource_stream(*args, **kwargs):
return None
BASE_PATH = os.path.abspath(os.path.dirname(__file__))
logger = logging.getLogger('glad.files')
def open_local(name, *args, **kwargs):
# use pkg_resources when available, makes it work in zipped modules
# or other environments
if resource_exists(__name__, name):
logger.info('opening \'%s\' from packaged resource', name)
return resource_stream(__name__, name)