Coverage for pyWebLayout/__init__.py: 100%

1 statements  

« prev     ^ index     » next       coverage.py v7.11.2, created at 2025-11-12 12:02 +0000

1""" 

2PyWebLayout - A Python library for HTML-like layout and rendering. 

3 

4This library provides classes for rendering HTML-like content to images 

5using a box-based layout system. It includes support for text, tables, 

6and containers, as well as parsers for HTML and EPUB content. It also 

7supports pagination for ebook-like content with the ability to pause, 

8save state, and resume rendering. 

9""" 

10 

11__version__ = '0.1.1' 

12 

13# Core abstractions 

14 

15# Style components 

16 

17 

18# Abstract document model 

19 

20# Concrete implementations 

21 

22# Abstract components