INNER CODE UNIT · Python

resource_stream

kacperks/Fractal_Engine · Engine/Thirdparty/cmake/glad/glad/files/__init__.py:10

    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)

    # fallback to filesystem
    logger.info('opening \'%s\' from packaged path', name)

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…