23 lines
536 B
Python
23 lines
536 B
Python
"""
|
|
PyWebLayout - A Python library for HTML-like layout and rendering.
|
|
|
|
This library provides classes for rendering HTML-like content to images
|
|
using a box-based layout system. It includes support for text, tables,
|
|
and containers, as well as parsers for HTML and EPUB content. It also
|
|
supports pagination for ebook-like content with the ability to pause,
|
|
save state, and resume rendering.
|
|
"""
|
|
|
|
__version__ = '0.1.1'
|
|
|
|
# Core abstractions
|
|
|
|
# Style components
|
|
|
|
|
|
# Abstract document model
|
|
|
|
# Concrete implementations
|
|
|
|
# Abstract components
|