Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/imageio-2.35.1-py3.8.egg/imageio/core/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

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