1# -*- coding: utf-8 -*-
2# Distributed under the (new) BSD License. See LICENSE.txt for more info.
3
4""" This subpackage provides the core functionality of imageio
5(everything but the plugins).
6"""
7
8# flake8: noqa
9
10from .util import Image, Array, Dict, asarray, image_as_uint, urlopen
11from .util import BaseProgressIndicator, StdoutProgressIndicator, IS_PYPY
12from .util import get_platform, appdata_dir, resource_dirs, has_module
13from .findlib import load_lib
14from .fetching import get_remote_file, InternetNotAllowedError, NeedDownloadError
15from .request import Request, read_n_bytes, RETURN_BYTES
16from .format import Format, FormatManager