class documentation

The minimum, low-level interface required from a resource provider.

Method children Obtain an iterable of SimpleReader for available child containers (e.g. directories).
Method open_binary Obtain a File-like for a named resource.
Method resources Obtain available named resources for this virtual package.
Property name Undocumented
Property package The name of the package for which this reader loads resources.

Obtain an iterable of SimpleReader for available child containers (e.g. directories).

@abc.abstractmethod
def open_binary(self, resource: str) -> BinaryIO: (source)

Obtain a File-like for a named resource.

@abc.abstractmethod
def resources(self) -> List[str]: (source)

Obtain available named resources for this virtual package.

Undocumented

The name of the package for which this reader loads resources.