Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/importlib_resources/__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

4 statements  

1"""Read resources contained within a package.""" 

2 

3from ._common import ( 

4 as_file, 

5 files, 

6 Package, 

7 Anchor, 

8) 

9 

10from ._functional import ( 

11 contents, 

12 is_resource, 

13 open_binary, 

14 open_text, 

15 path, 

16 read_binary, 

17 read_text, 

18) 

19 

20from .abc import ResourceReader 

21 

22 

23__all__ = [ 

24 'Package', 

25 'Anchor', 

26 'ResourceReader', 

27 'as_file', 

28 'files', 

29 'contents', 

30 'is_resource', 

31 'open_binary', 

32 'open_text', 

33 'path', 

34 'read_binary', 

35 'read_text', 

36]