# under the terms of the GNU General Public License as published by the
# Free Software Foundation, version 3.
-from sys import stderr
-
from typing import Any, Iterable
from bs4 import BeautifulSoup
num_chunks = ilen(chunkDOMs(html))
for i, r in enumerate(chunkDOMs(html)):
percent = 100.0 * i / num_chunks
- print(
- f'Processing chunk {i} of {num_chunks} ({percent:.1f}%)',
- end='\r',
- file=stderr)
+ spec.log(f'Processing chunk {i} of {num_chunks} ({percent:.1f}%)\r')
spec.domfilter(r)
chunk = makeChunk(r, spec.images)
spec.texout.write(spec.texfilter(spec.layout.renderChunk(chunk)))
+ spec.log('')
spec.texout.write(b'\\end{document}\n')