• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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]
37