16 lines
551 B
Python
16 lines
551 B
Python
"""
|
|
Input/Output module for pyWebLayout.
|
|
|
|
This package provides functionality for reading and writing various file formats,
|
|
including HTML, EPUB, and other document formats.
|
|
|
|
The module uses a decomposed architecture with specialized readers for different
|
|
aspects of document parsing (metadata, content, resources), following the same
|
|
pattern as the abstract module.
|
|
"""
|
|
|
|
# Legacy readers (for backward compatibility)
|
|
# Legacy functions provided by new HTML reader for backward compatibility
|
|
|
|
from pyWebLayout.io.readers.epub_reader import EPUBReader
|